Searched refs:other (Results 76 - 100 of 632) sorted by relevance

1234567891011>>

/haiku/src/tools/cppunit/cppunit/
H A DException.cpp21 Exception::Exception( const Exception &other ) :
22 exception( other )
24 m_message = other.m_message;
25 m_sourceLine = other.m_sourceLine;
30 * \deprecated Use other constructor instead.
42 * \deprecated Use other constructor instead.
62 Exception::operator =( const Exception& other )
67 // SuperClass::operator =(other);
69 if ( &other != this )
71 m_message = other
[all...]
/haiku/src/apps/webpositive/
H A DBrowsingHistory.h21 const BrowsingHistoryItem& other);
27 BrowsingHistoryItem& operator=(const BrowsingHistoryItem& other);
30 const BrowsingHistoryItem& other) const;
32 const BrowsingHistoryItem& other) const;
34 const BrowsingHistoryItem& other) const;
36 const BrowsingHistoryItem& other) const;
38 const BrowsingHistoryItem& other) const;
40 const BrowsingHistoryItem& other) const;
H A DBrowsingHistory.cpp31 BrowsingHistoryItem::BrowsingHistoryItem(const BrowsingHistoryItem& other) argument
33 *this = other;
72 BrowsingHistoryItem::operator=(const BrowsingHistoryItem& other) argument
74 if (this == &other)
77 fURL = other.fURL;
78 fDateTime = other.fDateTime;
79 fInvokationCount = other.fInvokationCount;
86 BrowsingHistoryItem::operator==(const BrowsingHistoryItem& other) const
88 if (this == &other)
91 return fURL == other
[all...]
/haiku/src/system/kernel/scheduler/
H A Dlow_latency.cpp85 CoreEntry* other = gCoreLoadHeap.PeekMinimum(); local
86 if (other == NULL)
87 other = gCoreHighLoadHeap.PeekMinimum();
89 ASSERT(other != NULL);
94 int32 otherLoad = other->GetLoad();
95 if (other == core || otherLoad + kLoadDifference >= coreLoad)
104 return difference >= threadLoad ? other : core;
136 CoreEntry* other = gCoreLoadHeap.PeekMinimum(); local
137 if (other == NULL)
138 other
[all...]
/haiku/src/apps/haikudepot/model/
H A DRatingStability.h21 const RatingStability& other);
24 operator=(const RatingStability& other);
25 bool operator==(const RatingStability& other)
27 bool operator!=(const RatingStability& other)
37 int Compare(const RatingStability& other)
H A DAccessToken.cpp47 AccessToken::operator=(const AccessToken& other) argument
49 fToken = other.fToken;
50 fExpiryTimestamp = other.fExpiryTimestamp;
56 AccessToken::operator==(const AccessToken& other) const
58 return fToken == other.fToken;
63 AccessToken::operator!=(const AccessToken& other) const
65 return !(*this == other);
H A DAccessToken.h15 return a JWT access token which can then be later used with other APIs. This
28 AccessToken& operator=(const AccessToken& other);
29 bool operator==(const AccessToken& other) const;
30 bool operator!=(const AccessToken& other) const;
H A DPackageInfoListener.h41 PackageInfoEvent(const PackageInfoEvent& other);
44 bool operator==(const PackageInfoEvent& other);
45 bool operator!=(const PackageInfoEvent& other);
46 PackageInfoEvent& operator=(const PackageInfoEvent& other);
H A DUserCredentials.h24 UserCredentials(const UserCredentials& other);
28 UserCredentials& operator=(const UserCredentials& other);
29 bool operator==(const UserCredentials& other) const;
30 bool operator!=(const UserCredentials& other) const;
/haiku/src/apps/icon-o-matic/
H A DUtil.cpp45 AddPathsCommand** command, VectorPath* other)
47 if (other)
48 *path = new (nothrow) VectorPath(*other);
55 int32 insertIndex = other ? container->IndexOf(other) + 1
44 new_path(Container<VectorPath>* container, VectorPath** path, AddPathsCommand** command, VectorPath* other) argument
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixAddress.h35 UnixAddress(const UnixAddress& other) argument
37 *this = other;
113 UnixAddress& operator=(const UnixAddress& other) argument
115 fInternalID = other.fInternalID;
116 fVolumeID = other.fVolumeID;
117 fNodeID = other.fNodeID;
118 fVnode = other.fVnode;
122 bool operator==(const UnixAddress& other) const
125 ? fInternalID == other.fInternalID
126 : fVolumeID == other
[all...]
/haiku/src/kits/debugger/model/
H A DUserBreakpoint.cpp34 const UserBreakpointLocation& other)
36 fFunctionID(other.fFunctionID),
37 fSourceFile(other.fSourceFile),
38 fSourceLocation(other.fSourceLocation),
39 fRelativeAddress(other.fRelativeAddress)
57 const UserBreakpointLocation& other)
59 other.fFunctionID->AcquireReference();
60 if (other.fSourceFile != NULL)
61 other.fSourceFile->AcquireReference();
67 fFunctionID = other
33 UserBreakpointLocation( const UserBreakpointLocation& other) argument
56 operator =( const UserBreakpointLocation& other) argument
[all...]
H A DTypeComponentPath.cpp20 TypeComponent::HasPrefix(const TypeComponent& other) const
22 if (*this == other)
26 && other.componentKind == TYPE_COMPONENT_ARRAY_ELEMENT
27 && name.Compare(other.name, other.name.Length()) == 0;
98 TypeComponent::operator==(const TypeComponent& other) const
100 return componentKind == other.componentKind
101 && typeKind == other.typeKind
102 && index == other.index
103 && name == other
117 TypeComponentPath(const TypeComponentPath& other) argument
217 operator =(const TypeComponentPath& other) argument
[all...]
H A DTeamInfo.cpp18 TeamInfo::TeamInfo(const TeamInfo &other) argument
20 fTeam = other.fTeam;
21 fArguments = other.fArguments;
/haiku/headers/private/interface/
H A DShapePrivate.h55 shape_data(const shape_data& other) argument
57 opList = new(std::nothrow) uint32[other.opCount];
58 ptList = new(std::nothrow) BPoint[other.ptCount];
60 opCount = other.opCount;
61 opSize = other.opSize;
62 ptCount = other.ptCount;
63 ptSize = other.ptSize;
64 memcpy((void*)opList, other.opList, opSize);
65 memcpy((void*)ptList, other.ptList, ptSize);
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DInt64Property.h18 Int64Property(const Int64Property& other);
28 virtual bool SetValue(const Property* other);
31 virtual bool InterpolateTo(const Property* other,
/haiku/src/apps/haikudepot/textview/
H A DParagraphStyle.cpp16 ParagraphStyle::ParagraphStyle(const ParagraphStyle& other) argument
18 fStyleData(other.fStyleData)
24 ParagraphStyle::operator=(const ParagraphStyle& other) argument
26 if (this == &other)
29 fStyleData = other.fStyleData;
35 ParagraphStyle::operator==(const ParagraphStyle& other) const
37 if (this == &other)
40 if (fStyleData == other.fStyleData)
43 if (fStyleData.IsSet() && other.fStyleData.IsSet())
44 return *fStyleData == *other
[all...]
/haiku/src/apps/icon-o-matic/transformable/
H A DChannelTransform.cpp28 ChannelTransform::ChannelTransform(const ChannelTransform& other) argument
30 Transformable(other),
31 fPivot(other.fPivot),
32 fTranslation(other.fTranslation),
33 fRotation(other.fRotation),
34 fXScale(other.fXScale),
35 fYScale(other.fYScale)
48 ChannelTransform::SetTransformation(const Transformable& other) argument
55 other.translation(&tx, &ty);
58 double rotation = agg::rad2deg(other
230 operator =(const ChannelTransform& other) argument
[all...]
/haiku/src/kits/debugger/settings/
H A DBreakpointSetting.cpp31 BreakpointSetting::BreakpointSetting(const BreakpointSetting& other) argument
33 fFunctionID(other.fFunctionID),
34 fSourceFile(other.fSourceFile),
35 fSourceLocation(other.fSourceLocation),
36 fRelativeAddress(other.fRelativeAddress),
37 fEnabled(other.fEnabled),
38 fHidden(other.fHidden),
39 fConditionExpression(other.fConditionExpression)
142 BreakpointSetting::operator=(const BreakpointSetting& other) argument
144 if (this == &other)
[all...]
/haiku/src/kits/network/libnetservices2/
H A DHttpFields.cpp132 BHttpFields::FieldName::FieldName(const FieldName& other) noexcept = default;
138 Moving leaves the other object in the empty state. It is implemented to satisfy the internal
142 BHttpFields::FieldName::FieldName(FieldName&& other) noexcept
144 fName(std::move(other.fName))
146 other.fName = std::string_view();
154 const BHttpFields::FieldName& other) noexcept = default;
160 Moving leaves the other object in the empty state. It is implemented to satisfy the internal
165 BHttpFields::FieldName::operator=(BHttpFields::FieldName&& other) noexcept
167 fName = std::move(other.fName);
168 other
[all...]
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A DKPath.cpp53 KPath::KPath(const KPath& other) argument
63 *this = other;
103 KPath::Adopt(KPath& other) argument
107 fBuffer = other.fBuffer;
108 fBufferSize = other.fBufferSize;
109 fPathLength = other.fPathLength;
110 fLazy = other.fLazy;
111 fFailed = other.fFailed;
112 fIsNull = other.fIsNull;
114 other
357 operator =(const KPath& other) argument
[all...]
/haiku/headers/private/fs_shell/
H A DKPath.h20 KPath(const KPath& other);
41 KPath& operator=(const KPath& other);
44 bool operator==(const KPath& other) const;
46 bool operator!=(const KPath& other) const;
/haiku/src/apps/haikudepot/packagemodel/
H A DScreenshotInfo.h19 ScreenshotInfo(const ScreenshotInfo& other);
21 ScreenshotInfo& operator=(const ScreenshotInfo& other);
22 bool operator==(const ScreenshotInfo& other) const;
23 bool operator!=(const ScreenshotInfo& other) const;
H A DUserRating.h24 UserRating(const UserRating& other);
26 UserRating& operator=(const UserRating& other);
27 bool operator==(const UserRating& other) const;
28 bool operator!=(const UserRating& other) const;
/haiku/headers/private/debugger/types/
H A DValueLocation.h53 ValuePieceLocation(const ValuePieceLocation& other) argument
55 if (!Copy(other))
65 ValuePieceLocation& operator=(const ValuePieceLocation& other) argument
67 if (!Copy(other))
73 bool Copy(const ValuePieceLocation& other) argument
75 memcpy((void*)this, (void*)&other, sizeof(ValuePieceLocation));
83 memcpy(tempValue, value, other.size);
152 ValueLocation(const ValueLocation& other);
154 bool SetToByteOffset(const ValueLocation& other,
157 bool SetTo(const ValueLocation& other,
[all...]

Completed in 102 milliseconds

1234567891011>>