Searched refs:other (Results 401 - 425 of 632) sorted by relevance

<<11121314151617181920>>

/haiku/headers/os/interface/
H A DPrintJob.h72 BPrintJob(const BPrintJob& other);
73 BPrintJob& operator=(const BPrintJob& other);
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.h27 const VariablesViewNodeInfo& other);
31 const VariablesViewNodeInfo& other);
H A DVariablesViewStateHistory.cpp34 bool operator==(const Key& other) const
36 return threadID == other.threadID && *functionID == *other.functionID;
/haiku/src/servers/app/
H A DMultiLocker.h71 MultiLocker(const MultiLocker& other);
72 MultiLocker& operator=(const MultiLocker& other);
/haiku/src/kits/debugger/util/
H A DWorker.cpp32 SimpleJobKey::SimpleJobKey(const SimpleJobKey& other) argument
34 object(other.object),
35 type(other.type)
48 SimpleJobKey::operator==(const JobKey& other) const
50 const SimpleJobKey* otherKey = dynamic_cast<const SimpleJobKey*>(&other);
57 SimpleJobKey::operator=(const SimpleJobKey& other) argument
59 object = other.object;
60 type = other.type;
/haiku/src/kits/network/libnetapi/
H A DSocket.cpp32 BSocket::BSocket(const BSocket& other) argument
34 BAbstractSocket(other)
H A DNetworkRoute.cpp32 BNetworkRoute::SetTo(const BNetworkRoute& other) argument
34 return SetTo(other.RouteEntry());
61 BNetworkRoute::Adopt(BNetworkRoute& other) argument
63 memcpy(&fRouteEntry, &other.fRouteEntry, sizeof(route_entry));
64 memset(&other.fRouteEntry, 0, sizeof(route_entry));
/haiku/src/apps/glteapot/
H A Dutil.h321 inline void add_new(LispList other) argument
323 for (LispNode<contents>* n = other.first; n; n = n->cdr)
328 inline void add_new_once(LispList other) argument
330 for (LispNode<contents>* n = other.first; n; n = n->cdr)
337 inline void rem_del(LispList other) argument
339 for (LispNode<contents>* n = other.first; n; n = n->cdr)
/haiku/src/kits/interface/layouter/
H A DCollapsingLayouter.cpp103 void SetTo(const ElementInfo& other) argument
105 weight = other.weight;
106 position = other.position;
107 valid = other.valid;
108 for (int32 i = other.constraints.CountItems() - 1; i >= 0; i--)
109 constraints.AddItem(new Constraint(*other.constraints.ItemAt(i)));
/haiku/headers/private/shared/
H A DRangeArray.h43 inline RangeArray(const RangeArray<Value>& other);
75 inline RangeArray<Value>& operator=(const RangeArray<Value>& other);
95 RangeArray<Value>::RangeArray(const RangeArray<Value>& other) argument
97 fRanges(other.fRanges)
290 RangeArray<Value>::operator=(const RangeArray<Value>& other) argument
292 fRanges = other.fRanges;
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dgpt_known_guids.h26 inline bool operator==(const guid& other) const;
32 static_guid::operator==(const guid_t& other) const
34 return B_HOST_TO_LENDIAN_INT32(data1) == other.data1
35 && B_HOST_TO_LENDIAN_INT16(data2) == other.data2
36 && B_HOST_TO_LENDIAN_INT16(data3) == other.data3
37 && B_HOST_TO_BENDIAN_INT64(*(uint64*)&data4) == *(uint64*)other.data4;
/haiku/src/apps/haikudepot/textview/
H A DTextDocument.cpp33 TextDocument::TextDocument(const TextDocument& other) argument
35 fParagraphs(other.fParagraphs),
36 fEmptyLastParagraph(other.fEmptyLastParagraph),
37 fDefaultCharacterStyle(other.fDefaultCharacterStyle)
43 TextDocument::operator=(const TextDocument& other) argument
45 fParagraphs = other.fParagraphs;
46 fEmptyLastParagraph = other.fEmptyLastParagraph;
47 fDefaultCharacterStyle = other.fDefaultCharacterStyle;
54 TextDocument::operator==(const TextDocument& other) const
56 if (this == &other)
[all...]
/haiku/src/kits/interface/
H A DShape.cpp139 BShape::BShape(const BShape& other) argument
142 AddShape(&other);
242 BShape::operator=(const BShape& other) argument
244 if (this != &other) {
246 AddShape(&other);
254 BShape::operator==(const BShape& other) const
256 if (this == &other)
260 shape_data* otherData = (shape_data*)other.fPrivateData;
276 BShape::operator!=(const BShape& other) const
278 return !(*this == other);
[all...]
/haiku/src/kits/shared/
H A DKeymap.cpp488 BKeymap::operator==(const BKeymap& other) const
490 return fCharsSize == other.fCharsSize
491 && !memcmp(&fKeys, &other.fKeys, sizeof(fKeys))
492 && !memcmp(fChars, other.fChars, fCharsSize);
497 BKeymap::operator!=(const BKeymap& other) const
499 return !(*this == other);
504 BKeymap::operator=(const BKeymap& other) argument
508 fCharsSize = other.fCharsSize;
510 memcpy(fChars, other.fChars, fCharsSize);
511 memcpy(&fKeys, &other
[all...]
/haiku/src/apps/activitymonitor/
H A DDataSource.h25 DataSource(const DataSource& other);
213 CPUUsageDataSource(const CPUUsageDataSource& other);
246 const CPUCombinedUsageDataSource& other);
271 CPUFrequencyDataSource(const CPUFrequencyDataSource& other);
302 const PageFaultsDataSource& other);
327 const NetworkUsageDataSource& other);
354 const ClipboardSizeDataSource& other);
/haiku/src/preferences/locale/
H A DLanguageListView.cpp46 LanguageListItem::LanguageListItem(const LanguageListItem& other) argument
48 BStringItem(other.Text()),
49 fID(other.fID),
50 fCode(other.fCode)
122 const LanguageListItemWithFlag& other)
124 LanguageListItem(other),
125 fCountryCode(other.fCountryCode),
126 fIcon(other.fIcon != NULL ? new BBitmap(*other.fIcon) : NULL)
121 LanguageListItemWithFlag( const LanguageListItemWithFlag& other) argument
/haiku/src/kits/support/
H A DStringList.cpp43 BStringList::BStringList(const BStringList& other) argument
45 fStrings(other.fStrings)
318 BStringList::operator=(const BStringList& other) argument
320 if (this != &other) {
322 fStrings = other.fStrings;
331 BStringList::operator==(const BStringList& other) const
333 if (this == &other)
337 if (count != other.fStrings.CountItems())
341 if (StringAt(i) != other.StringAt(i))
/haiku/headers/private/fs_shell/
H A DSinglyLinkedList.h109 Iterator(const Iterator& other) argument
111 *this = other;
127 Iterator& operator=(const Iterator& other) argument
129 fList = other.fList;
130 fNext = other.fNext;
/haiku/headers/private/kernel/util/
H A DSinglyLinkedList.h106 Iterator(const Iterator& other) argument
108 *this = other;
124 Iterator& operator=(const Iterator& other) argument
126 fList = other.fList;
127 fNext = other.fNext;
/haiku/src/apps/debuganalyzer/gui/table/
H A DTreeTable.h27 TreeTablePath(const TreeTablePath& other);
28 TreeTablePath(const TreeTablePath& other,
39 TreeTablePath& operator=(const TreeTablePath& other);
40 bool operator==(const TreeTablePath& other) const;
41 bool operator!=(const TreeTablePath& other) const;
/haiku/src/kits/package/hpkg/
H A DPackageFileHeapAccessorBase.cpp145 const OffsetArray& other)
147 if (other.fOffsets == NULL)
150 size_t elementCount = other.fOffsets[0] == 0
152 : 2 * totalChunkCount - other.fOffsets[0];
158 memcpy(fOffsets, other.fOffsets, elementCount * sizeof(fOffsets[0]));
299 // otherwise read into the other buffer and decompress
144 Init(size_t totalChunkCount, const OffsetArray& other) argument
/haiku/src/kits/debugger/model/
H A DStackFrameValueInfos.cpp33 bool operator==(const Key& other) const
35 return *variable == *other.variable && *path == *other.path;
/haiku/src/servers/app/drawing/
H A DAlphaMask.h35 AlphaMask* other);
123 VectorAlphaMask* other);
167 ShapeAlphaMask* other);
/haiku/src/kits/debugger/debug_info/
H A DDwarfStackFrameDebugInfo.cpp54 virtual bool operator==(const ObjectID& other) const
57 = dynamic_cast<const DwarfFunctionParameterID*>(&other);
96 virtual bool operator==(const ObjectID& other) const
99 = dynamic_cast<const DwarfLocalVariableID*>(&other);
142 virtual bool operator==(const ObjectID& other) const
145 = dynamic_cast<const DwarfReturnValueID*>(&other);
/haiku/headers/private/userlandfs/shared/
H A DDriverSettings.h19 const DriverParameterIterator& other);
26 const DriverParameterIterator& other);

Completed in 215 milliseconds

<<11121314151617181920>>