Searched refs:other (Results 176 - 200 of 632) sorted by relevance

1234567891011>>

/haiku/src/apps/haikudepot/textview/
H A DParagraph.h19 Paragraph(const Paragraph& other);
21 Paragraph& operator=(const Paragraph& other);
22 bool operator==(const Paragraph& other) const;
23 bool operator!=(const Paragraph& other) const;
H A DTextSpan.h20 TextSpan(const TextSpan& other);
22 TextSpan& operator=(const TextSpan& other);
23 bool operator==(const TextSpan& other) const;
24 bool operator!=(const TextSpan& other) const;
/haiku/src/apps/terminal/
H A DTerminalLine.h174 operator==(const Attributes& other) const
176 return state == other.state
177 && foreground == other.foreground
178 && background == other.background
179 && underline == other.underline
180 && underlineStyle == other.underlineStyle;
184 operator!=(const Attributes& other) const
186 return state != other.state
187 || foreground != other.foreground
188 || background != other
[all...]
/haiku/src/apps/haikudepot/model/
H A DScreenshotCoordinate.cpp73 ScreenshotCoordinate::operator==(const ScreenshotCoordinate& other) const
75 return fCode == other.fCode && fHeight == other.fHeight && fWidth == other.fWidth;
H A DUserDetail.cpp85 const UserUsageConditionsAgreement& other)
87 fCode = other.fCode;
88 fTimestampAgreed = other.fTimestampAgreed;
89 fIsLatest = other.fIsLatest;
162 UserDetail::operator=(const UserDetail& other) argument
164 fNickname = other.fNickname;
165 fAgreement = other.fAgreement;
84 operator =( const UserUsageConditionsAgreement& other) argument
/haiku/src/kits/shared/
H A DVariant.cpp137 BVariant::operator==(const BVariant& other) const
140 return other.fType == 0;
141 if (other.fType == 0)
150 return fBool == other.ToBool();
155 if (!other.IsNumber())
157 return ToInt64() == other.ToInt64();
162 if (!other.IsNumber())
164 return ToUInt64() == other.ToUInt64();
167 if (!other.IsNumber())
169 return ToDouble() == other
339 _SetTo(const BVariant& other) argument
[all...]
/haiku/src/kits/locale/
H A DDurationFormat.cpp73 BDurationFormat::BDurationFormat(const BDurationFormat& other) argument
75 Inherited(other),
76 fSeparator(other.fSeparator),
77 fTimeUnitFormat(other.fTimeUnitFormat),
78 fCalendar(other.fCalendar != NULL
79 ? new GregorianCalendar(*other.fCalendar) : NULL)
81 if (fCalendar == NULL && other.fCalendar != NULL)
H A DTimeZone.cpp54 BTimeZone::BTimeZone(const BTimeZone& other) argument
56 fICUTimeZone(other.fICUTimeZone == NULL
58 : other.fICUTimeZone->clone()),
59 fICULocale(other.fICULocale == NULL
61 : other.fICULocale->clone()),
62 fInitStatus(other.fInitStatus),
63 fInitializedFields(other.fInitializedFields),
64 fZoneID(other.fZoneID),
65 fName(other.fName),
66 fDaylightSavingName(other
[all...]
/haiku/src/kits/network/libnetservices/
H A DHttpAuthentication.cpp58 BHttpAuthentication::BHttpAuthentication(const BHttpAuthentication& other) argument
60 fAuthenticationMethod(other.fAuthenticationMethod),
61 fUserName(other.fUserName),
62 fPassword(other.fPassword),
63 fToken(other.fToken),
64 fRealm(other.fRealm),
65 fDigestNonce(other.fDigestNonce),
66 fDigestCnonce(other.fDigestCnonce),
67 fDigestNc(other.fDigestNc),
68 fDigestOpaque(other
77 operator =( const BHttpAuthentication& other) argument
[all...]
H A DHttpForm.cpp81 BHttpFormData::BHttpFormData(const BHttpFormData& other) argument
88 *this = other;
220 BHttpFormData::operator=(const BHttpFormData& other) argument
222 fDataType = other.fDataType;
224 fFileMark = other.fFileMark;
225 fName = other.fName;
226 fStringValue = other.fStringValue;
227 fPathValue = other.fPathValue;
228 fBufferValue = other.fBufferValue;
229 fBufferSize = other
250 BHttpForm(const BHttpForm& other) argument
727 Iterator(const Iterator& other) argument
765 operator =(const Iterator& other) argument
[all...]
/haiku/headers/private/netservices2/
H A DHttpFields.h40 BHttpFields(const BHttpFields& other);
41 BHttpFields(BHttpFields&& other);
90 bool operator==(const BString& other) const noexcept;
91 bool operator==(const std::string_view& other) const noexcept;
92 bool operator==(const FieldName& other) const noexcept;
102 FieldName(const FieldName& other) noexcept;
104 FieldName& operator=(const FieldName& other) noexcept;
118 Field(const Field& other);
122 Field& operator=(const Field& other);
123 Field& operator=(Field&& other) noexcep
[all...]
H A DHttpRequest.h44 BHttpMethod(const BHttpMethod& other);
45 BHttpMethod(BHttpMethod&& other) noexcept;
49 BHttpMethod& operator=(const BHttpMethod& other);
50 BHttpMethod& operator=(BHttpMethod&& other) noexcept;
53 bool operator==(const Verb& other) const noexcept;
54 bool operator!=(const Verb& other) const noexcept;
91 BHttpRequest(const BHttpRequest& other) = delete; member in class:BPrivate::Network::BHttpRequest
92 BHttpRequest(BHttpRequest&& other) noexcept;
96 BHttpRequest& operator=(const BHttpRequest& other) = delete; member in class:BPrivate::Network::BHttpRequest
/haiku/headers/os/app/
H A DKey.h41 BKey(BKey& other);
74 BKey& operator=(const BKey& other);
76 bool operator==(const BKey& other) const;
77 bool operator!=(const BKey& other) const;
99 BPasswordKey(BPasswordKey& other);
/haiku/headers/private/media/
H A DPluginManager.h77 plugin_info& operator=(const plugin_info& other) argument
79 strcpy(name, other.name);
80 usecount = other.usecount;
81 plugin = other.plugin;
82 image = other.image;
/haiku/src/libs/icon/transformable/
H A DTransformable.cpp25 Transformable::Transformable(const Transformable& other) argument
26 : agg::trans_affine(other)
106 Transformable::SetTransform(const Transformable& other) argument
108 if (*this != other) {
109 *this = other;
116 Transformable::operator=(const Transformable& other) argument
118 if (other != *this) {
120 multiply(other);
128 Transformable::Multiply(const Transformable& other) argument
130 if (!other
[all...]
/haiku/headers/private/shared/
H A DHashMap.h81 Iterator(const Iterator& other) argument
83 fMap(other.fMap),
84 fIterator(other.fIterator),
85 fElement(other.fElement)
103 Iterator& operator=(const Iterator& other) argument
105 fMap = other.fMap;
106 fIterator = other.fIterator;
107 fElement = other.fElement;
254 HashKey32<Value> operator=(const HashKey32<Value>& other) argument
256 value = other
286 operator =(const HashKey64<Value>& other) argument
324 operator =(const HashKeyPointer<Value>& other) argument
[all...]
/haiku/src/kits/interface/
H A DPolygon.cpp35 BPolygon::BPolygon(const BPolygon& other) argument
41 *this = other;
45 BPolygon::BPolygon(const BPolygon* other) argument
51 *this = *other;
71 BPolygon::operator=(const BPolygon& other) argument
74 if (this == &other)
82 if (_AddPoints(other.fPoints, other.fCount, false))
83 fBounds = other.fBounds;
H A DGradient.cpp50 BGradient::ColorStop::ColorStop(const ColorStop& other) argument
52 color.red = other.color.red;
53 color.green = other.color.green;
54 color.blue = other.color.blue;
55 color.alpha = other.color.alpha;
56 offset = other.offset;
73 BGradient::ColorStop::operator!=(const ColorStop& other) const
75 return color.red != other.color.red ||
76 color.green != other.color.green ||
77 color.blue != other
103 BGradient(const BGradient& other) argument
259 operator =(const BGradient& other) argument
330 SetColorStops(const BGradient& other) argument
[all...]
H A DRect.cpp220 BRect::operator==(BRect other) const
222 return left == other.left && right == other.right &&
223 top == other.top && bottom == other.bottom;
228 BRect::operator!=(BRect other) const
230 return !(*this == other);
235 BRect::operator&(BRect other) const
237 return BRect(std::max(left, other.left), std::max(top, other
[all...]
/haiku/src/libs/icon/
H A DIcon.cpp45 Icon::Icon(const Icon& other) argument
57 int32 styleCount = other.fStyles.CountItems();
59 Style* style = other.fStyles.ItemAtFast(i);
67 int32 pathCount = other.fPaths.CountItems();
69 VectorPath* path = other.fPaths.ItemAtFast(i);
77 int32 shapeCount = other.fShapes.CountItems();
79 Shape* shape = other.fShapes.ItemAtFast(i);
91 // the "other" icon, replace them with "local" styles
94 int32 styleIndex = other.fStyles.IndexOf(pathSourceShape->Style());
101 int32 index = other
[all...]
/haiku/src/servers/app/drawing/Painter/
H A DTransformable.cpp37 Transformable::Transformable(const Transformable& other) argument
38 : agg::trans_affine(other)
107 Transformable::SetTransformable(const Transformable& other) argument
109 if (*this != other) {
110 *this = other;
117 Transformable::operator=(const Transformable& other) argument
119 if (other != *this) {
120 agg::trans_affine::operator=(other);
128 Transformable::operator=(const agg::trans_affine& other) argument
130 if (other !
139 Multiply(const Transformable& other) argument
[all...]
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp82 bool operator<(const uint128& other) const
84 return high < other.high || (high == other.high && low < other.low);
87 bool operator<=(const uint128& other) const
89 return !(other < *this);
120 uint128 operator+(const uint128& other) const
122 uint64 resultLow = low + other.low;
124 high + other.high + (resultLow < low ? 1 : 0));
127 uint128 operator-(const uint128& other) cons
[all...]
/haiku/headers/os/support/
H A DStringList.h18 BStringList(const BStringList& other);
64 BStringList& operator=(const BStringList& other);
65 bool operator==(const BStringList& other) const;
66 bool operator!=(const BStringList& other) const;
97 BStringList::operator!=(const BStringList& other) const
99 return !(*this == other);
/haiku/src/kits/support/
H A DUuid.cpp48 BUuid::BUuid(const BUuid& other) argument
50 memcpy(fValue, other.fValue, sizeof(fValue));
103 BUuid::Compare(const BUuid& other) const
105 return memcmp(fValue, other.fValue, sizeof(fValue));
110 BUuid::operator=(const BUuid& other) argument
112 memcpy(fValue, other.fValue, sizeof(fValue));
/haiku/src/servers/app/drawing/
H A DPatternHandler.cpp87 \param other PatternHandler to copy.
91 PatternHandler::PatternHandler(const PatternHandler& other) argument
92 : fPattern(other.fPattern),
93 fHighColor(other.fHighColor),
94 fLowColor(other.fLowColor),
95 fXOffset(other.fXOffset),
96 fYOffset(other.fYOffset)

Completed in 133 milliseconds

1234567891011>>