Searched refs:other (Results 26 - 50 of 632) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A DIORequestInfo.h31 IORequestInfo(const IORequestInfo& other) argument
33 offset(other.offset),
34 length(other.length),
35 id(other.id),
36 isWrite(other.isWrite),
37 isVIP(other.isVIP)
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DStringKey.h38 bool operator==(const ::String& other) const
40 if (fHash != other.Hash())
42 return fString == other.Data() || strcmp(fString, other.Data()) == 0;
45 bool operator!=(const ::String& other) const
47 return !(*this == other);
H A DString.cpp24 String::operator=(const String& other) argument
26 if (this == &other)
30 fData = other.fData;
H A DString.h15 String(const String& other);
28 String& operator=(const String& other);
30 bool operator==(const String& other) const;
31 bool operator!=(const String& other) const;
49 String::String(const String& other) argument
51 fData(other.fData)
100 String::operator==(const String& other) const
102 return fData == other.fData;
107 String::operator!=(const String& other) const
109 return !(*this == other);
[all...]
/haiku/headers/os/interface/
H A DPoint.h24 BPoint& operator=(const BPoint& other);
31 BPoint operator+(const BPoint& other) const;
32 BPoint operator-(const BPoint& other) const;
33 BPoint& operator+=(const BPoint& other);
34 BPoint& operator-=(const BPoint& other);
36 bool operator!=(const BPoint& other) const;
37 bool operator==(const BPoint& other) const;
64 BPoint::BPoint(const BPoint& other) argument
66 x(other.x),
67 y(other
73 operator =(const BPoint& other) argument
[all...]
H A DSize.h23 inline BSize(const BSize& other);
39 inline bool operator==(const BSize& other) const;
40 inline bool operator!=(const BSize& other) const;
42 inline BSize& operator=(const BSize& other);
55 BSize::BSize(const BSize& other) argument
56 : width(other.width),
57 height(other.height)
135 BSize::operator==(const BSize& other) const
137 return (width == other.width && height == other
149 operator =(const BSize& other) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeRef.h22 NodeRef(const NodeRef& other) argument
23 : node_ref(other)
33 NodeRef& operator=(const node_ref& other) argument
35 node_ref::operator=(other);
39 bool operator==(const node_ref& other) const
41 return node_ref::operator==(other);
44 bool operator!=(const NodeRef& other) const
46 return !(*this == other);
/haiku/src/kits/package/solver/
H A DSolverPackageSpecifier.cpp44 const BSolverPackageSpecifier& other)
46 fType(other.fType),
47 fPackage(other.fPackage),
48 fSelectString(other.fSelectString)
80 BSolverPackageSpecifier::operator=(const BSolverPackageSpecifier& other) argument
82 fType = other.fType;
83 fPackage = other.fPackage;
84 fSelectString = other.fSelectString;
43 BSolverPackageSpecifier( const BSolverPackageSpecifier& other) argument
/haiku/src/apps/haikudepot/textview/
H A DBullet.h15 Bullet(const Bullet& other);
17 Bullet& operator=(const Bullet& other);
18 bool operator==(const Bullet& other) const;
19 bool operator!=(const Bullet& other) const;
H A DBullet.cpp26 Bullet::Bullet(const Bullet& other) argument
28 fBulletData(other.fBulletData)
34 Bullet::operator=(const Bullet& other) argument
36 if (this == &other)
39 fBulletData = other.fBulletData;
45 Bullet::operator==(const Bullet& other) const
47 if (this == &other)
50 if (fBulletData == other.fBulletData)
53 if (fBulletData.IsSet() && other.fBulletData.IsSet())
54 return *fBulletData == *other
[all...]
H A DTextSpan.cpp31 TextSpan::TextSpan(const TextSpan& other) argument
33 fText(other.fText),
34 fCharCount(other.fCharCount),
35 fStyle(other.fStyle),
36 fCursor(other.fCursor),
37 fClickMessage(other.fClickMessage)
43 TextSpan::operator=(const TextSpan& other) argument
45 fText = other.fText;
46 fCharCount = other.fCharCount;
47 fStyle = other
[all...]
H A DParagraphLayout.h43 GlyphInfo(const GlyphInfo& other) argument
45 charCode(other.charCode),
46 x(other.x),
47 width(other.width),
48 lineIndex(other.lineIndex)
52 GlyphInfo& operator=(const GlyphInfo& other) argument
54 charCode = other.charCode;
55 x = other.x;
56 width = other.width;
57 lineIndex = other
113 LineInfo(const LineInfo& other) argument
126 operator =(const LineInfo& other) argument
[all...]
H A DBulletData.cpp27 BulletData::BulletData(const BulletData& other) argument
29 fString(other.fString),
30 fSpacing(other.fSpacing)
36 BulletData::operator==(const BulletData& other) const
38 if (this == &other)
41 return fString == other.fString
42 && fSpacing == other.fSpacing;
47 BulletData::operator!=(const BulletData& other) const
49 return !(*this == other);
87 BulletData::operator=(const BulletData& other) argument
[all...]
/haiku/headers/private/shared/
H A DWeakReferenceable.h78 BWeakReference(const BWeakReference<Type>& other) argument
82 SetTo(other);
85 BWeakReference(const BReference<Type>& other) argument
89 SetTo(other);
93 BWeakReference(const BReference<OtherType>& other) argument
97 SetTo(other.Get());
101 BWeakReference(const BWeakReference<OtherType>& other) argument
105 SetTo(other);
121 void SetTo(const BWeakReference<Type>& other) argument
125 if (other
132 SetTo(const BWeakReference<OtherType>& other) argument
147 SetTo(const BReference<Type>& other) argument
180 operator =(const BWeakReference<Type>& other) argument
189 operator =(Type* other) argument
195 operator =(const BReference<Type>& other) argument
202 operator =(const BReference<OtherType>& other) argument
209 operator =(const BWeakReference<OtherType>& other) argument
[all...]
/haiku/headers/private/debugger/value/
H A DValue.h21 virtual bool operator==(const Value& other) const = 0;
22 inline bool operator!=(const Value& other) const
23 { return !(*this == other); }
/haiku/src/apps/haikudepot/model/
H A DDeskbarLink.cpp39 DeskbarLink::DeskbarLink(const DeskbarLink& other) argument
41 fPath(other.fPath),
42 fLink(other.fLink)
96 DeskbarLink::operator=(const DeskbarLink& other) argument
98 if (this == &other)
100 fPath = other.Path();
101 fLink = other.Link();
107 DeskbarLink::operator==(const DeskbarLink& other) argument
109 return fPath == other.fPath && fLink == other
114 operator !=(const DeskbarLink& other) argument
[all...]
H A DUserCredentials.cpp35 UserCredentials::UserCredentials(const UserCredentials& other) argument
37 fNickname(other.Nickname()),
38 fPasswordClear(other.PasswordClear()),
59 UserCredentials::operator=(const UserCredentials& other) argument
61 fNickname = other.fNickname;
62 fPasswordClear = other.fPasswordClear;
63 fIsSuccessful = other.fIsSuccessful;
69 UserCredentials::operator==(const UserCredentials& other) const
71 return fNickname == other.fNickname && fPasswordClear == other
[all...]
/haiku/src/tools/cppunit/cppunit/
H A DSourceLine.cpp50 SourceLine::operator ==( const SourceLine &other ) const
52 return m_fileName == other.m_fileName &&
53 m_lineNumber == other.m_lineNumber;
58 SourceLine::operator !=( const SourceLine &other ) const
60 return !( *this == other );
H A DNotEqualException.cpp25 * \deprecated Use other constructor instead.
41 NotEqualException::NotEqualException( const NotEqualException &other ) :
42 Exception( other ),
43 m_expected( other.m_expected ),
44 m_actual( other.m_actual ),
45 m_additionalMessage( other.m_additionalMessage )
56 NotEqualException::operator =( const NotEqualException &other )
58 Exception::operator =( other );
60 if ( &other != this )
62 m_expected = other
[all...]
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageCategory.h19 PackageCategory(const PackageCategory& other);
21 PackageCategory& operator=(const PackageCategory& other);
22 bool operator==(const PackageCategory& other) const;
23 bool operator!=(const PackageCategory& other) const;
30 int Compare(const PackageCategory& other) const;
H A DPackageInfo.cpp131 PackageInfo::PackageInfo(const PackageInfo& other) argument
133 fName(other.fName),
134 fTitle(other.fTitle),
135 fVersion(other.fVersion),
136 fPublisher(other.fPublisher),
137 fShortDescription(other.fShortDescription),
138 fFullDescription(other.fFullDescription),
139 fHasChangelog(other.fHasChangelog),
140 fChangelog(other.fChangelog),
141 fCategories(other
165 operator =(const PackageInfo& other) argument
[all...]
/haiku/src/kits/network/libnetservices/
H A DHttpResult.cpp27 BHttpResult::BHttpResult(const BHttpResult& other) argument
29 fUrl(other.fUrl),
30 fHeaders(other.fHeaders),
31 fStatusCode(other.fStatusCode),
32 fStatusString(other.fStatusString)
78 * to be duplicates of each other, but this is currently not supported.
134 BHttpResult::operator=(const BHttpResult& other) argument
136 if (this == &other)
139 fUrl = other.fUrl;
140 fHeaders = other
[all...]
/haiku/src/kits/debugger/dwarf/
H A DCfaRuleSet.cpp44 CfaRuleSet* other = new(std::nothrow) CfaRuleSet; local
45 if (other == NULL)
48 if (other->Init(fRegisterCount) != B_OK) {
49 delete other;
53 other->fCfaCfaRule = fCfaCfaRule;
54 memcpy(other->fRegisterRules, fRegisterRules,
57 return other;
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DInt64Property.cpp25 Int64Property::Int64Property(const Int64Property& other) argument
26 : Property(other),
27 fValue(other.fValue)
53 Int64Property::SetValue(const Property* other) argument
55 const Int64Property* intOther = dynamic_cast<const Int64Property*>(other);
71 Int64Property::InterpolateTo(const Property* other, float scale) argument
73 const Int64Property* intOther = dynamic_cast<const Int64Property*>(other);
/haiku/headers/private/debugger/model/
H A DTypeComponentPath.h39 TypeComponent(const TypeComponent& other) argument
41 index(other.index),
42 name(other.name),
43 componentKind(other.componentKind),
44 typeKind(other.typeKind)
88 bool HasPrefix(const TypeComponent& other) const;
94 TypeComponent& operator=(const TypeComponent& other) argument
97 index = other.index;
98 name = other.name;
99 componentKind = other
[all...]

Completed in 97 milliseconds

1234567891011>>