Searched refs:other (Results 476 - 500 of 632) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/media/
H A DMediaFormats.cpp183 const _media_format_description& other)
185 memcpy(this, &other, sizeof(*this));
190 _media_format_description::operator=(const _media_format_description& other) argument
192 memcpy(this, &other, sizeof(*this));
313 meta_format::meta_format(const meta_format& other) argument
315 description(other.description),
316 format(other.format)
487 meta_format other(description);
488 const meta_format* metaFormat = sFormats.BinarySearch(other,
182 _media_format_description( const _media_format_description& other) argument
/haiku/src/bin/
H A Dxres.cpp118 ResourceID(const ResourceID &other) argument
120 *this = other;
123 bool Matches(const ResourceID &other) const
125 return ((type == other.type || type == B_ANY_TYPE)
126 && (wildcardID || id == other.id));
129 ResourceID &operator=(const ResourceID &other) argument
131 type = other.type;
132 id = other.id;
133 wildcardID = other.wildcardID;
889 // don't allow "-l" together with other comand
[all...]
/haiku/src/apps/sudoku/
H A DSudokuField.cpp84 SudokuField::SudokuField(const SudokuField& other) argument
85 : BArchivable(other)
87 fSize = other.fSize;
88 fBlockSize = other.fBlockSize;
89 fMaxMask = other.fMaxMask;
93 memcpy(fFields, other.fFields, sizeof(field) * fSize * fSize);
/haiku/src/kits/interface/
H A DTwoDimensionalLayout.cpp40 // views with each other, causes the need for the three inner *Layouter classes.
41 // For each set of layouts aligned with each other with respect to one
73 void AbsorbCompoundLayouter(CompoundLayouter* other);
167 void AlignWith(LocalLayouter* other,
336 BTwoDimensionalLayout::AlignLayoutWith(BTwoDimensionalLayout* other, argument
339 if (!other || other == this)
342 fLocalLayouter->AlignWith(other->fLocalLayouter, orientation);
671 // at other indices are aligned to this one.
690 CompoundLayouter* other)
689 AbsorbCompoundLayouter( CompoundLayouter* other) argument
1149 AlignWith(LocalLayouter* other, orientation orientation) argument
[all...]
/haiku/src/kits/network/libnetservices/
H A DHttpRequest.cpp125 BHttpRequest::BHttpRequest(const BHttpRequest& other) argument
127 BNetworkRequest(other.Url(), other.Output(), other.fListener,
128 other.fContext, "BUrlProtocol.HTTP", other.fSSL ? "HTTPS" : "HTTP"),
129 fSSL(other.fSSL),
130 fRequestMethod(other.fRequestMethod),
131 fHttpVersion(other.fHttpVersion),
132 fResult(other
[all...]
/haiku/src/build/libbe/app/
H A DMessage.cpp104 BMessage::BMessage(BMessage *other) argument
108 *this = *other;
120 BMessage::BMessage(const BMessage &other) argument
124 *this = other;
136 BMessage::operator=(const BMessage &other) argument
140 if (this == &other)
149 memcpy(fHeader, other.fHeader, sizeof(message_header));
165 memcpy(fFields, other.fFields, fieldsSize);
175 memcpy(fData, other.fData, fHeader->data_size);
178 fHeader->what = what = other
215 HasSameData(const BMessage &other, bool ignoreFieldOrder, bool deep) const argument
1341 field_header *other = fFields; local
[all...]
/haiku/headers/os/media/
H A DMediaFormats.h182 const _media_format_description& other);
184 const _media_format_description& other);
H A DMediaDefs.h180 const media_destination& other);
183 media_destination& operator=(const media_destination& other);
198 media_source(const media_source& other);
201 media_source& operator=(const media_source& other);
600 bool Matches(const media_format* other) const;
601 void SpecializeTo(const media_format* other);
611 media_format(const media_format& other);
614 media_format& operator=(const media_format& other);
836 int32 used_data_size; // data size used by other tracks
/haiku/headers/private/kernel/util/
H A DAVLTreeMap.h125 inline Iterator(const Iterator& other) argument
126 : ConstIterator(other)
162 inline ConstIterator(const ConstIterator& other) argument
163 : fParent(other.fParent),
164 fTreeIterator(other.fTreeIterator)
227 inline ConstIterator& operator=(const ConstIterator& other) argument
229 fParent = other.fParent;
230 fTreeIterator = other.fTreeIterator;
/haiku/src/kits/debug/
H A DSymbolLookup.h36 Exception(const Exception &other) argument
37 : fError(other.fError)
/haiku/headers/os/translation/
H A DTranslatorRoster.h114 const BTranslatorRoster& other);
115 BTranslatorRoster& operator=(const BTranslatorRoster& other);
/haiku/src/kits/debugger/debug_managers/
H A DTeamMemoryBlockManager.cpp31 bool operator==(const Key& other) const
33 return address == other.address;
/haiku/src/kits/debugger/files/
H A DFileManager.cpp52 EntryPath(const EntryPath& other) argument
54 directory(other.directory),
55 name(other.name)
65 bool operator==(const EntryPath& other) const
67 if (directory != other.directory
68 && (directory == NULL || other.directory == NULL
69 || strcmp(directory, other.directory) != 0)) {
73 return strcmp(name, other.name) == 0;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.h203 Transaction(const Transaction& other);
204 Transaction& operator=(const Transaction& other);
H A DCachedBlock.h54 CachedBlock(const CachedBlock& other);
55 CachedBlock& operator=(const CachedBlock& other);
/haiku/headers/os/game/
H A DPushGameSound.h54 BPushGameSound(const BPushGameSound& other);
55 BPushGameSound& operator=(const BPushGameSound& other);
H A DDirectWindow.h119 BDirectWindow(BDirectWindow& other);
121 BDirectWindow& operator=(BDirectWindow& other);
H A DFileGameSound.h58 BFileGameSound(const BFileGameSound& other);
60 BFileGameSound& operator=(const BFileGameSound& other);
/haiku/headers/os/interface/
H A DShelf.h104 BShelf(const BShelf& other);
105 BShelf& operator=(const BShelf& other);
/haiku/src/kits/locale/
H A DLanguage.cpp50 BLanguage::BLanguage(const BLanguage& other) argument
54 *this = other;
H A DDateTimeFormat.cpp41 BDateTimeFormat::BDateTimeFormat(const BDateTimeFormat &other) argument
42 : BFormat(other)
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DResponse.h87 StringArgument(const StringArgument& other);
199 ResponseParser(const ResponseParser& other);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DStackTraceView.cpp172 for (int32 i = 0; StackFrame* other = fStackTrace->FrameAt(i); i++) {
173 if (stackFrame == other) {
/haiku/src/kits/network/libnetservices2/
H A DHttpResult.cpp156 BHttpResult::BHttpResult(BHttpResult&& other) noexcept = default;
166 BHttpResult& BHttpResult::operator=(BHttpResult&& other) noexcept = default;
/haiku/src/add-ons/kernel/file_systems/userlandfs/shared/
H A DDriverSettings.cpp50 const DriverParameterIterator& other)
53 _SetTo(other.fDelegate, true);
86 DriverParameterIterator::operator=(const DriverParameterIterator& other) argument
88 _SetTo(other.fDelegate, true);
49 DriverParameterIterator( const DriverParameterIterator& other) argument

Completed in 120 milliseconds

<<11121314151617181920>>