Searched refs:other (Results 451 - 475 of 632) sorted by relevance

<<11121314151617181920>>

/haiku/headers/os/interface/
H A DPicture.h22 BPicture(const BPicture& other);
/haiku/src/tests/system/kernel/util/
H A DVectorSetTest.cpp84 inline TestIterator(const Iterator &other) argument
85 : fSet(other.fSet),
86 fMyIterator(other.fMyIterator),
87 fReferenceIterator(other.fReferenceIterator)
89 CHK(fMyIterator == other.fMyIterator);
134 inline Iterator &operator=(const Iterator &other) argument
136 fSet = other.fSet;
137 fMyIterator = other.fMyIterator;
138 fReferenceIterator = other.fReferenceIterator;
139 CHK(fMyIterator == other
[all...]
H A DVectorTest.cpp89 inline TestIterator(const Iterator &other) argument
90 : fVector(other.fVector),
91 fMyIterator(other.fMyIterator),
92 fReferenceIterator(other.fReferenceIterator)
94 CHK(fMyIterator == other.fMyIterator);
139 inline Iterator &operator=(const Iterator &other) argument
141 fVector = other.fVector;
142 fMyIterator = other.fMyIterator;
143 fReferenceIterator = other.fReferenceIterator;
144 CHK(fMyIterator == other
[all...]
/haiku/headers/os/locale/
H A DTimeFormat.h24 BTimeFormat(const BTimeFormat &other);
H A DTimeZone.h26 BTimeZone(const BTimeZone& other);
H A DCollator.h44 BCollator(const BCollator& other);
H A DNumberFormat.h45 BNumberFormat(const BNumberFormat &other);
/haiku/headers/os/net/
H A DAbstractSocket.h18 BAbstractSocket(const BAbstractSocket& other);
H A DSecureSocket.h20 BSecureSocket(const BSecureSocket& other);
/haiku/headers/private/debugger/model/
H A DAreaInfo.h17 AreaInfo(const AreaInfo& other);
H A DExpressionInfo.h64 ExpressionInfo(const ExpressionInfo& other);
H A DImageInfo.h17 ImageInfo(const ImageInfo& other);
H A DStackFrameValueInfos.h53 StackFrameValueInfos& operator=(const StackFrameValueInfos& other);
/haiku/src/kits/game/
H A DSimpleGameSound.cpp70 BSimpleGameSound::BSimpleGameSound(const BSimpleGameSound &other) argument
72 BGameSound(other)
77 status_t error = other.Device()->Buffer(other.ID(), &format, data);
H A DGameSound.cpp38 BGameSound::BGameSound(const BGameSound &other) argument
42 memcpy(&fFormat, &other.fFormat, sizeof(gs_audio_format));
43 // TODO: device from other is ignored!
265 BGameSound::operator=(const BGameSound &other)
270 fSound = other.fSound;
271 fInitError = other.fInitError;
/haiku/src/bin/bfs_tools/lib/
H A DBPlusTree.cpp731 bplustree_node *other = fCache.Get(otherOffset = fHeader->maximum_size); //Node(otherOffset = fHeader->maximum_size/*,false*/); local
732 if (other == NULL)
738 uint8 *outKeys = other->Keys();
780 //printf("put %ld keys in the other node (%ld, %ld, %ld) (in = %ld)\n",out,bytesBefore,bytes,bytesAfter,in);
782 other->left_link = node->left_link;
783 other->right_link = nodeOffset;
784 other->all_key_length = bytes + bytesBefore + bytesAfter;
785 other->all_key_count = out;
786 //printf("-> used = %ld (bplustree_node = %ld bytes)\n",other->Used(),sizeof(bplustree_node));
788 uint16 *outKeyLengths = other
[all...]
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DVolume.h64 inline bool operator==(const NodeListenerValue &other) argument
65 { return listener == other.listener; }
82 inline bool operator==(const EntryListenerValue &other) argument
83 { return listener == other.listener; }
/haiku/src/servers/app/
H A DServerPicture.h39 ServerPicture(const ServerPicture& other);
/haiku/src/apps/terminal/
H A DTermWindow.h19 * disclaimer in the documentation and/or other materials provided with
127 bool operator==(const SessionID& other) const
128 { return fID == other.fID; }
129 bool operator!=(const SessionID& other) const
130 { return !(*this == other); }
H A DTerminalRoster.cpp78 TerminalRoster::Info::operator==(const Info& other) const
80 return id == other.id && team == other.team
81 && workspaces == other.workspaces && minimized == other.minimized;
276 All other running terminals will be notified, if the status changed.
/haiku/src/libs/icon/
H A DIcon.h54 Icon(const Icon& other);
/haiku/src/libs/icon/shape/
H A DPathSourceShape.h35 PathSourceShape(const PathSourceShape& other);
/haiku/src/kits/shared/
H A DExpressionParser.cpp60 Token(const Token& other) argument
61 : string(other.string),
62 type(other.type),
63 value(other.value),
64 position(other.position)
76 Token& operator=(const Token& other) argument
78 string = other.string;
79 type = other.type;
80 value = other.value;
81 position = other
[all...]
/haiku/src/system/kernel/scheduler/
H A DRunQueue.h67 inline ConstIterator& operator=(const ConstIterator& other);
172 RUN_QUEUE_CLASS_NAME::ConstIterator::operator=(const ConstIterator& other) argument
174 fList = other.fList;
175 fPriority = other.fPriority;
176 fNext = other.fNext;
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentLayout.cpp74 TextDocumentLayout::TextDocumentLayout(const TextDocumentLayout& other) argument
76 fWidth(other.fWidth),
77 fLayoutValid(other.fLayoutValid),
79 fDocument(other.fDocument),
81 fParagraphLayouts(other.fParagraphLayouts)

Completed in 150 milliseconds

<<11121314151617181920>>