Searched refs:other (Results 151 - 175 of 632) sorted by relevance

1234567891011>>

/haiku/headers/private/shared/
H A DScopeExit.h30 ScopeExit(ScopeExit&& other) : fFn(std::move(other.fFn)) argument
H A DRegExp.h27 RegExp(const RegExp& other);
40 RegExp& operator=(const RegExp& other);
54 MatchResult(const MatchResult& other);
66 MatchResult& operator=(const MatchResult& other);
/haiku/src/kits/network/libnetservices2/
H A DErrorsExt.cpp133 BRuntimeError::BRuntimeError(const BRuntimeError& other) = default; member in class:BRuntimeError
136 BRuntimeError::BRuntimeError(BRuntimeError&& other) noexcept = default;
139 BRuntimeError& BRuntimeError::operator=(const BRuntimeError& other) = default; member in class:BRuntimeError
142 BRuntimeError& BRuntimeError::operator=(BRuntimeError&& other) noexcept = default;
169 BSystemError::BSystemError(const BSystemError& other) = default; member in class:BSystemError
172 BSystemError::BSystemError(BSystemError&& other) noexcept = default;
175 BSystemError& BSystemError::operator=(const BSystemError& other) = default; member in class:BSystemError
178 BSystemError& BSystemError::operator=(BSystemError&& other) noexcept = default;
/haiku/src/preferences/filetypes/
H A DAttributeListView.cpp182 AttributeItem::AttributeItem(const AttributeItem& other) argument
184 BStringItem(other.PublicName())
186 *this = other;
244 AttributeItem::operator=(const AttributeItem& other) argument
246 SetText(other.PublicName());
247 fName = other.Name();
248 fType = other.Type();
249 fDisplayAs = other.DisplayAs();
250 fAlignment = other.Alignment();
251 fWidth = other
[all...]
H A DAttributeListView.h20 AttributeItem(const AttributeItem& other);
36 AttributeItem& operator=(const AttributeItem& other);
38 bool operator==(const AttributeItem& other) const;
39 bool operator!=(const AttributeItem& other) const;
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DVersion.cpp102 Version::Compare(const Version& other) const
104 int cmp = compare_version_part(fMajor, other.fMajor);
108 cmp = compare_version_part(fMinor, other.fMinor);
112 cmp = compare_version_part(fMicro, other.fMicro);
120 if (!other.fPreRelease.IsEmpty())
122 } else if (other.fPreRelease.IsEmpty()) {
126 cmp = BPrivate::NaturalCompare(fPreRelease, other.fPreRelease);
131 return fRevision == other.fRevision
132 ? 0 : (fRevision < other.fRevision ? -1 : 1);
138 const Version& other) cons
[all...]
/haiku/src/kits/app/
H A DCursor.cpp74 BCursor::BCursor(const BCursor& other) argument
79 *this = other;
157 BCursor::operator=(const BCursor& other) argument
159 if (&other != this && other != *this) {
162 fServerToken = other.fServerToken;
163 fNeedToFree = other.fNeedToFree;
178 BCursor::operator==(const BCursor& other) const
180 return fServerToken == other.fServerToken;
185 BCursor::operator!=(const BCursor& other) cons
[all...]
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.h24 Property(const Property& other);
38 virtual bool SetValue(const Property* other) = 0;
42 virtual bool InterpolateTo(const Property* other,
64 IntProperty(const IntProperty& other);
78 virtual bool SetValue(const Property* other);
81 virtual bool InterpolateTo(const Property* other,
107 FloatProperty(const FloatProperty& other);
121 virtual bool SetValue(const Property* other);
124 virtual bool InterpolateTo(const Property* other,
148 UInt8Property(const UInt8Property& other);
[all...]
/haiku/src/kits/debugger/types/
H A DValueLocation.cpp72 ValueLocation::ValueLocation(const ValueLocation& other) argument
74 fPieces(other.fPieces),
75 fBigEndian(other.fBigEndian)
81 ValueLocation::SetToByteOffset(const ValueLocation& other, uint64 byteOffset, argument
86 fBigEndian = other.fBigEndian;
87 ValuePieceLocation piece = other.PieceAt(0);
96 ValueLocation::SetTo(const ValueLocation& other, uint64 bitOffset, argument
101 fBigEndian = other.fBigEndian;
104 int32 count = other.CountPieces();
107 const ValuePieceLocation &piece = other
270 operator =(const ValueLocation& other) argument
[all...]
H A DArrayIndexPath.cpp22 ArrayIndexPath::ArrayIndexPath(const ArrayIndexPath& other) argument
24 fIndices(other.fIndices)
96 ArrayIndexPath::operator=(const ArrayIndexPath& other) argument
98 fIndices = other.fIndices;
H A DTargetAddressRangeList.cpp23 const TargetAddressRangeList& other)
25 fRanges(other.fRanges)
100 TargetAddressRangeList::operator=(const TargetAddressRangeList& other) argument
102 fRanges = other.fRanges;
22 TargetAddressRangeList( const TargetAddressRangeList& other) argument
/haiku/headers/tools/cppunit/cppunit/
H A DException.h26 bool operator ==( const Type &other ) const
28 return m_type == other.m_type;
44 Exception (const Exception& other);
48 Exception& operator= (const Exception& other);
/haiku/src/add-ons/translators/ico/
H A DICO.h80 operator==(const rgba32_color& other) const
82 return red == other.red && green == other.green && blue == other.blue;
/haiku/src/add-ons/translators/pcx/
H A DPCX.h46 operator==(const rgba32_color& other) const
48 return red == other.red && green == other.green && blue == other.blue;
/haiku/src/servers/app/
H A DRegionPool.h24 BRegion* GetRegion(const BRegion& other);
/haiku/src/apps/webpositive/
H A DCredentialsStorage.h26 const Credentials& other);
32 Credentials& operator=(const Credentials& other);
34 bool operator==(const Credentials& other) const;
35 bool operator!=(const Credentials& other) const;
/haiku/src/apps/haikudepot/textview/
H A DParagraphStyleData.h28 const ParagraphStyleData& other);
31 const ParagraphStyleData& other) const;
33 const ParagraphStyleData& other) const;
67 ParagraphStyleData& operator=(const ParagraphStyleData& other);
H A DCharacterStyle.h14 CharacterStyle(const CharacterStyle& other);
16 CharacterStyle& operator=(const CharacterStyle& other);
17 bool operator==(const CharacterStyle& other) const;
18 bool operator!=(const CharacterStyle& other) const;
/haiku/headers/os/interface/
H A DRect.h23 BRect(const BRect& other);
30 BRect& operator=(const BRect& other);
69 bool operator==(BRect other) const;
70 bool operator!=(BRect other) const;
73 BRect operator&(BRect other) const;
74 BRect operator|(BRect other) const;
142 BRect::BRect(const BRect& other) argument
144 left(other.left),
145 top(other.top),
146 right(other
186 operator =(const BRect& other) argument
[all...]
/haiku/headers/os/support/
H A DList.h15 BList(const BList& other);
18 BList& operator=(const BList& other);
19 bool operator==(const BList& other) const;
20 bool operator!=(const BList& other) const;
/haiku/src/kits/locale/
H A DFormat.cpp31 BFormat::BFormat(const BFormat &other) argument
33 fConventions(other.fConventions),
34 fLanguage(other.fLanguage),
35 fInitStatus(other.fInitStatus)
/haiku/headers/private/debugger/value/values/
H A DBoolValue.h23 virtual bool operator==(const Value& other) const;
H A DFloatValue.h23 virtual bool operator==(const Value& other) const;
H A DStringValue.h23 virtual bool operator==(const Value& other) const;
/haiku/headers/os/app/
H A DCursor.h50 BCursor(const BCursor& other);
63 BCursor& operator=(const BCursor& other);
64 bool operator==(const BCursor& other) const;
65 bool operator!=(const BCursor& other) const;

Completed in 88 milliseconds

1234567891011>>