Searched refs:other (Results 1 - 25 of 633) sorted by relevance

1234567891011>>

/haiku/src/apps/haikudepot/packagemodel/
H A DRatingSummary.cpp22 RatingSummary::RatingSummary(const RatingSummary& other) argument
24 *this = other;
29 RatingSummary::operator=(const RatingSummary& other) argument
31 averageRating = other.averageRating;
32 ratingCount = other.ratingCount;
35 ratingCountByStar[i] = other.ratingCountByStar[i];
42 RatingSummary::operator==(const RatingSummary& other) const
44 if (averageRating != other.averageRating
45 || ratingCount != other.ratingCount) {
50 if (ratingCountByStar[i] != other
[all...]
H A DScreenshotInfo.cpp33 ScreenshotInfo::ScreenshotInfo(const ScreenshotInfo& other) argument
35 fCode(other.fCode),
36 fWidth(other.fWidth),
37 fHeight(other.fHeight),
38 fDataSize(other.fDataSize)
44 ScreenshotInfo::operator=(const ScreenshotInfo& other) argument
46 fCode = other.fCode;
47 fWidth = other.fWidth;
48 fHeight = other.fHeight;
49 fDataSize = other
[all...]
H A DUserInfo.cpp26 UserInfo::UserInfo(const UserInfo& other) argument
28 fNickName(other.fNickName)
34 UserInfo::operator=(const UserInfo& other) argument
36 fNickName = other.fNickName;
42 UserInfo::operator==(const UserInfo& other) const
44 return fNickName == other.fNickName;
49 UserInfo::operator!=(const UserInfo& other) const
51 return !(*this == other);
H A DUserRating.cpp38 UserRating::UserRating(const UserRating& other) argument
40 fUserInfo(other.fUserInfo),
41 fRating(other.fRating),
42 fComment(other.fComment),
43 fLanguageId(other.fLanguageId),
44 fPackageVersion(other.fPackageVersion),
45 fCreateTimestamp(other.fCreateTimestamp)
51 UserRating::operator=(const UserRating& other) argument
53 fUserInfo = other.fUserInfo;
54 fRating = other
[all...]
H A DPublisherInfo.cpp31 PublisherInfo::PublisherInfo(const PublisherInfo& other) argument
33 fName(other.fName),
34 fEmail(other.fEmail),
35 fWebsite(other.fWebsite)
41 PublisherInfo::operator=(const PublisherInfo& other) argument
43 fName = other.fName;
44 fEmail = other.fEmail;
45 fWebsite = other.fWebsite;
51 PublisherInfo::operator==(const PublisherInfo& other) const
53 return fName == other
[all...]
H A DRatingSummary.h13 RatingSummary(const RatingSummary& other);
15 RatingSummary& operator=(const RatingSummary& other);
16 bool operator==(const RatingSummary& other) const;
17 bool operator!=(const RatingSummary& other) const;
H A DUserInfo.h17 UserInfo(const UserInfo& other);
19 UserInfo& operator=(const UserInfo& other);
20 bool operator==(const UserInfo& other) const;
21 bool operator!=(const UserInfo& other) const;
H A DPackageCategory.cpp35 PackageCategory::PackageCategory(const PackageCategory& other) argument
38 fCode(other.fCode),
39 fName(other.fName)
45 PackageCategory::operator=(const PackageCategory& other) argument
47 fCode = other.fCode;
48 fName = other.fName;
54 PackageCategory::operator==(const PackageCategory& other) const
56 return fCode == other.fCode && fName == other.fName;
61 PackageCategory::operator!=(const PackageCategory& other) cons
[all...]
/haiku/src/apps/terminal/
H A DTermPos.h25 inline bool operator==(const TermPos& other) const
27 return x == other.x && y == other.y;
30 inline bool operator!=(const TermPos& other) const
32 return x != other.x || y != other.y;
35 inline bool operator<=(const TermPos& other) const
37 return y < other.y || (y == other.y && x <= other
[all...]
/haiku/src/build/libroot/
H A DNodeRef.h28 NodeRef(const NodeRef &other) argument
30 device = other.device;
31 node = other.node;
34 NodeRef &operator=(const NodeRef &other) argument
36 device = other.device;
37 node = other.node;
41 bool operator==(const NodeRef &other) const
43 return (device == other.device && node == other.node);
46 bool operator!=(const NodeRef &other) cons
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DNodeRef.h31 node_ref::node_ref(const node_ref& other) argument
33 device(other.device),
34 node(other.node)
40 node_ref::operator==(const node_ref& other) const
42 return device == other.device && node == other.node;
47 node_ref::operator!=(const node_ref& other) const
49 return !(*this == other);
54 node_ref::operator<(const node_ref& other) const
56 if (device != other
63 operator =(const node_ref& other) argument
[all...]
/haiku/headers/private/support/
H A DUuid.h18 BUuid(const BUuid& other);
27 int Compare(const BUuid& other) const;
29 inline bool operator==(const BUuid& other) const;
30 inline bool operator!=(const BUuid& other) const;
32 inline bool operator<(const BUuid& other) const;
33 inline bool operator>(const BUuid& other) const;
34 inline bool operator<=(const BUuid& other) const;
35 inline bool operator>=(const BUuid& other) const;
37 BUuid& operator=(const BUuid& other);
49 BUuid::operator==(const BUuid& other) cons
[all...]
/haiku/src/apps/haikudepot/textview/
H A DTextSelection.cpp25 TextSelection::TextSelection(const TextSelection& other) argument
27 fAnchor(other.fAnchor),
28 fCaret(other.fCaret)
34 TextSelection::operator=(const TextSelection& other) argument
36 if (this == &other)
39 fAnchor = other.fAnchor;
40 fCaret = other.fCaret;
46 TextSelection::operator==(const TextSelection& other) const
48 return (this == &other)
49 || (fAnchor == other
[all...]
/haiku/headers/private/debugger/types/
H A DSourceLocation.h20 bool operator==(const SourceLocation& other) const
22 return fLine == other.fLine && fColumn == other.fColumn;
25 bool operator!=(const SourceLocation& other) const
27 return !(*this == other);
30 bool operator<(const SourceLocation& other) const
32 return fLine < other.fLine
33 || (fLine == other.fLine && fColumn < other.fColumn);
36 bool operator<=(const SourceLocation& other) cons
[all...]
H A DTargetAddressRange.h29 bool operator==(const TargetAddressRange& other) const
31 return fStart == other.fStart && fSize == other.fSize;
34 bool operator!=(const TargetAddressRange& other) const
36 return !(*this == other);
59 bool Contains(const TargetAddressRange& other) const
61 return Start() <= other.Start() && End() >= other.End();
64 bool IntersectsWith(const TargetAddressRange& other) const
66 return Contains(other
69 operator |=(const TargetAddressRange& other) argument
[all...]
/haiku/src/apps/haikudepot/model/
H A DPackageInfoListener.cpp32 PackageInfoEvent::PackageInfoEvent(const PackageInfoEvent& other) argument
34 fPackage(other.fPackage),
35 fChanges(other.fChanges)
46 PackageInfoEvent::operator==(const PackageInfoEvent& other) argument
48 if (this == &other)
51 return fPackage == other.fPackage
52 && fChanges == other.fChanges;
57 PackageInfoEvent::operator!=(const PackageInfoEvent& other) argument
59 return !(*this == other);
64 PackageInfoEvent::operator=(const PackageInfoEvent& other) argument
[all...]
H A DRatingStability.cpp43 RatingStability::RatingStability(const RatingStability& other) argument
45 fCode(other.fCode),
46 fName(other.fName),
47 fOrdering(other.fOrdering)
53 RatingStability::operator=(const RatingStability& other) argument
55 fCode = other.fCode;
56 fName = other.fName;
57 fOrdering = other.fOrdering;
63 RatingStability::operator==(const RatingStability& other) const
65 return fCode == other
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dguid.h18 inline bool operator==(const guid &other) const;
19 inline bool operator!=(const guid &other) const;
24 guid_t::operator==(const guid_t &other) const
26 return data1 == other.data1
27 && data2 == other.data2
28 && data3 == other.data3
29 && *(uint64 *)data4 == *(uint64 *)other.data4;
34 guid_t::operator!=(const guid_t &other) const
36 return data1 != other.data1
37 || data2 != other
[all...]
/haiku/src/kits/interface/
H A DPoint.cpp47 BPoint::operator+(const BPoint& other) const
49 return BPoint(x + other.x, y + other.y);
54 BPoint::operator-(const BPoint& other) const
56 return BPoint(x - other.x, y - other.y);
61 BPoint::operator+=(const BPoint& other) argument
63 x += other.x;
64 y += other.y;
71 BPoint::operator-=(const BPoint& other) argument
[all...]
/haiku/headers/os/interface/
H A DAlignment.h16 inline BAlignment(const BAlignment& other);
32 inline bool operator==(const BAlignment& other) const;
33 inline bool operator!=(const BAlignment& other) const;
35 inline BAlignment& operator=(const BAlignment& other);
49 BAlignment::BAlignment(const BAlignment& other) argument
50 : horizontal(other.horizontal),
51 vertical(other.vertical)
107 BAlignment::operator==(const BAlignment& other) const
109 return (horizontal == other.horizontal && vertical == other
121 operator =(const BAlignment& other) argument
[all...]
/haiku/headers/os/package/
H A DPackageVersion.h50 int Compare(const BPackageVersion& other) const;
54 inline bool operator==(const BPackageVersion& other) const;
55 inline bool operator!=(const BPackageVersion& other) const;
56 inline bool operator<(const BPackageVersion& other) const;
57 inline bool operator>(const BPackageVersion& other) const;
58 inline bool operator<=(const BPackageVersion& other) const;
59 inline bool operator>=(const BPackageVersion& other) const;
71 BPackageVersion::operator==(const BPackageVersion& other) const
73 return Compare(other) == 0;
78 BPackageVersion::operator!=(const BPackageVersion& other) cons
[all...]
/haiku/headers/os/support/
H A DReferenceable.h56 BReference(const BReference<Type>& other) argument
60 SetTo(other.Get());
64 BReference(const BReference<OtherType>& other) argument
68 SetTo(other.Get());
126 BReference& operator=(const BReference<Type>& other) argument
128 SetTo(other.fObject);
132 BReference& operator=(Type* other) argument
134 SetTo(other);
139 BReference& operator=(const BReference<OtherType>& other) argument
141 SetTo(other
182 BReference(const BReference<const Type>& other) argument
189 BReference(const BReference<OtherType>& other) argument
235 operator =(const BReference<const Type>& other) argument
241 operator =(Type* other) argument
248 operator =(const BReference<OtherType>& other) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DServerNodeID.h24 NodeID(const NodeID& other) argument
25 : volumeID(other.volumeID),
26 nodeID(other.nodeID)
36 NodeID& operator=(const NodeID& other) argument
38 volumeID = other.volumeID;
39 nodeID = other.nodeID;
43 bool operator==(const NodeID& other) const
45 return (volumeID == other.volumeID && nodeID == other.nodeID);
48 bool operator!=(const NodeID& other) cons
71 operator =(const NodeID& other) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChartDataRange.h30 ChartDataRange(const ChartDataRange& other) argument
32 min(other.min),
33 max(other.max)
48 ChartDataRange& Extend(const ChartDataRange& other) argument
50 min = std::min(min, other.min);
51 max = std::max(max, other.max);
69 ChartDataRange& operator=(const ChartDataRange& other) argument
71 min = other.min;
72 max = other.max;
76 bool operator==(const ChartDataRange& other) cons
[all...]
/haiku/src/apps/webpositive/support/
H A DHashKeys.h27 HashKey32<Value> operator=(const HashKey32<Value>& other)
29 value = other.value;
33 bool operator==(const HashKey32<Value>& other) const
35 return (value == other.value);
38 bool operator!=(const HashKey32<Value>& other) const
40 return (value != other.value);
59 HashKey64<Value> operator=(const HashKey64<Value>& other)
61 value = other.value;
65 bool operator==(const HashKey64<Value>& other) const
67 return (value == other
101 operator =(const HashKeyString& other) argument
[all...]

Completed in 186 milliseconds

1234567891011>>