Searched refs:other (Results 251 - 275 of 632) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/support/
H A DList.cpp46 BList::BList(const BList& other) argument
51 fBlockSize(other.fBlockSize)
53 *this = other;
64 BList::operator=(const BList& other) argument
66 if (&other != this) {
67 fBlockSize = other.fBlockSize;
68 if (_ResizeArray(other.fItemCount)) {
69 fItemCount = other.fItemCount;
70 memcpy(fObjectList, other.fObjectList, fItemCount * sizeof(void*));
79 BList::operator==(const BList& other) cons
[all...]
/haiku/src/kits/interface/
H A DAffineTransform.cpp57 BAffineTransform::BAffineTransform(const BAffineTransform& other) argument
59 sx(other.sx),
60 shy(other.shy),
61 shx(other.shx),
62 sy(other.sy),
63 tx(other.tx),
64 ty(other.ty)
477 BAffineTransform::PreMultiply(const BAffineTransform& other) argument
479 double t0 = sx * other.sx + shy * other
527 IsEqual(const BAffineTransform& other, double epsilon) const argument
[all...]
H A DRegion.cpp36 BRegion::BRegion(const BRegion& other) argument
43 *this = other;
81 BRegion::operator=(const BRegion& other) argument
83 if (&other == this)
86 // handle reallocation if we're too small to contain the other's data
87 if (_SetSize(other.fDataSize)) {
88 memcpy(fData, other.fData, other.fCount * sizeof(clipping_rect));
90 fBounds = other.fBounds;
91 fCount = other
[all...]
/haiku/headers/os/storage/
H A DNode.h21 node_ref(const node_ref& other);
23 bool operator==(const node_ref& other) const;
24 bool operator!=(const node_ref& other) const;
25 bool operator<(const node_ref& other) const;
26 node_ref& operator=(const node_ref& other);
/haiku/headers/os/interface/
H A DShape.h52 BShape(const BShape& other);
60 BShape& operator=(const BShape& other);
62 bool operator==(const BShape& other) const;
63 bool operator!=(const BShape& other) const;
69 status_t AddShape(const BShape* other);
/haiku/src/kits/debugger/model/
H A DStackFrameValues.cpp31 bool operator==(const Key& other) const
33 return *variable == *other.variable && *path == *other.path;
91 StackFrameValues::StackFrameValues(const StackFrameValues& other) argument
101 for (ValueTable::Iterator it = other.fValues->GetIterator();
/haiku/src/kits/locale/
H A DTimeUnitFormat.cpp96 BTimeUnitFormat::BTimeUnitFormat(const BTimeUnitFormat& other) argument
98 Inherited(other),
99 fFormatter(other.fFormatter != NULL
100 ? new TimeUnitFormat(*other.fFormatter) : NULL)
102 if (fFormatter == NULL && other.fFormatter != NULL)
/haiku/src/kits/media/
H A DMediaDefs.cpp528 const media_raw_audio_format* other)
531 format->frame_rate = other->frame_rate;
533 format->channel_count = other->channel_count;
535 format->format = other->format;
537 format->byte_order = other->byte_order;
539 format->buffer_size = other->buffer_size;
541 format->frame_rate = other->frame_rate;
547 const media_multi_audio_info* other)
550 format->channel_mask = other->channel_mask;
552 format->valid_bits = other
527 raw_audio_format_specialize(media_raw_audio_format* format, const media_raw_audio_format* other) argument
546 multi_audio_info_specialize(media_multi_audio_info* format, const media_multi_audio_info* other) argument
559 multi_audio_format_specialize(media_multi_audio_format* format, const media_multi_audio_format* other) argument
568 raw_video_format_specialize(media_raw_video_format* format, const media_raw_video_format* other) argument
603 multistream_format_specialize(media_multistream_format* format, const media_multistream_format* other) argument
669 encoded_audio_format_specialize(media_encoded_audio_format* format, const media_encoded_audio_format* other) argument
684 encoded_video_format_specialize(media_encoded_video_format* format, const media_encoded_video_format* other) argument
868 media_format(const media_format& other) argument
[all...]
/haiku/src/system/kernel/scheduler/
H A Dpower_saving.cpp142 CoreEntry* other = gCoreLoadHeap.PeekMaximum(); local
143 if (other == NULL)
144 other = gCoreHighLoadHeap.PeekMinimum();
146 ASSERT(other != NULL);
149 int32 otherNewLoad = other->GetLoad() + threadLoad;
150 return coreNewLoad - otherNewLoad >= kLoadDifference / 2 ? other : core;
223 CoreEntry* other = gCoreLoadHeap.PeekMinimum(); local
225 if (other == NULL)
227 int32 newCPU = other->CPUHeap()->PeekRoot()->ID();
230 if (other
[all...]
/haiku/src/libs/icon/style/
H A DStyle.cpp89 Style::Style(const Style& other) argument
91 : IconObject(other),
97 fColor(other.fColor),
101 fImage(other.fImage != NULL ? new (nothrow) BBitmap(other.fImage) : NULL),
108 SetGradient(other.fGradient);
192 Style::operator==(const Style& other) const
195 if (other.fGradient)
196 return *fGradient == *other.fGradient;
200 if (!other
[all...]
H A DGradientTransformable.cpp95 Gradient::Gradient(const Gradient& other) argument
97 : BArchivable(other),
100 Transformable(other),
102 : Transformable(other),
106 fType(other.fType),
107 fInterpolation(other.fInterpolation),
108 fInheritTransformation(other.fInheritTransformation)
110 for (int32 i = 0; BGradient::ColorStop* step = other.ColorAt(i); i++) {
168 Gradient::operator=(const Gradient& other) argument
174 SetTransform(other);
225 SetColors(const Gradient& other) argument
[all...]
/haiku/headers/private/kernel/util/
H A DDoublyLinkedQueue.h43 Iterator(const Iterator &other) argument
45 *this = other;
71 Iterator &operator=(const Iterator &other) argument
73 fQueue = other.fQueue;
74 fCurrent = other.fCurrent;
75 fNext = other.fNext;
100 ConstIterator(const ConstIterator &other) argument
102 *this = other;
118 ConstIterator &operator=(const ConstIterator &other) argument
120 fQueue = other
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DServerInfo.cpp85 ServerInfo::ServerInfo(const ServerInfo& other) argument
91 (*this) = other;
197 ServerInfo::operator=(const ServerInfo& other) argument
199 fServerName = other.fServerName;
200 fConnectionMethod = other.fConnectionMethod;
202 int32 count = other.fShareInfos.Count();
204 fShareInfos.PushBack(other.fShareInfos.ElementAt(i));
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.cpp36 ColorProperty::ColorProperty(const ColorProperty& other) argument
37 : Property(other),
38 fValue(other.fValue)
130 ColorProperty::SetValue(const Property* other) argument
132 const ColorProperty* c = dynamic_cast<const ColorProperty*>(other);
150 ColorProperty::InterpolateTo(const Property* other, float scale) argument
152 const ColorProperty* c = dynamic_cast<const ColorProperty*>(other);
H A DOptionProperty.cpp29 OptionProperty::OptionProperty(const OptionProperty& other) argument
30 : Property(other),
32 fCurrentOptionID(other.fCurrentOptionID)
35 int32 count = other.fOptions.CountItems();
37 option* o = (option*)(other.fOptions.ItemAtFast(i));
142 OptionProperty::SetValue(const Property* other) argument
144 const OptionProperty* optOther = dynamic_cast<const OptionProperty*>(other);
/haiku/headers/private/media/
H A DTMap.h25 Map(const Map<key, value> &other) argument
27 *this = other;
30 Map<key, value> &operator=(const Map<key, value> &other) argument
34 item_max = other.item_max;
35 item_count = other.item_count;
40 items[i]->k = other.items[i]->k;
41 items[i]->v = other.items[i]->v;
/haiku/headers/os/net/
H A DNetworkAddress.h40 BNetworkAddress(const BNetworkAddress& other);
63 void SetTo(const BNetworkAddress& other);
121 bool Equals(const BNetworkAddress& other,
133 BNetworkAddress& operator=(const BNetworkAddress& other);
135 bool operator==(const BNetworkAddress& other) const;
136 bool operator!=(const BNetworkAddress& other) const;
137 bool operator<(const BNetworkAddress& other) const;
/haiku/src/servers/app/
H A DDrawState.cpp71 DrawState::DrawState(const DrawState& other) argument
73 fOrigin(other.fOrigin),
74 fCombinedOrigin(other.fCombinedOrigin),
75 fScale(other.fScale),
76 fCombinedScale(other.fCombinedScale),
77 fTransform(other.fTransform),
78 fCombinedTransform(other.fCombinedTransform),
82 fHighColor(other.fHighColor),
83 fLowColor(other.fLowColor),
84 fWhichHighColor(other
[all...]
/haiku/headers/private/shared/
H A DVariant.h49 inline BVariant(const BVariant& other);
52 inline void SetTo(const BVariant& other);
76 inline BVariant& operator=(const BVariant& other);
78 bool operator==(const BVariant& other) const;
79 inline bool operator!=(const BVariant& other) const;
122 void _SetTo(const BVariant& other);
277 BVariant::BVariant(const BVariant& other) argument
279 _SetTo(other);
284 BVariant::operator=(const BVariant& other) argument
287 _SetTo(other);
300 SetTo(const BVariant& other) argument
[all...]
/haiku/src/apps/aboutsystem/
H A DUtilities.cpp109 StringVector::StringVector(const StringVector& other) argument
114 if (other.fCount == 0)
117 fStrings = new BString[other.fCount];
118 fCount = other.fCount;
121 fStrings[i] = other.fStrings[i];
247 PackageCredit::PackageCredit(const PackageCredit& other) argument
249 fPackageName(other.fPackageName),
250 fCopyrights(other.fCopyrights),
251 fLicenses(other.fLicenses),
252 fSources(other
[all...]
/haiku/src/build/libbe/storage/
H A DNode.cpp41 node_ref::node_ref(const node_ref& other) argument
46 *this = other;
51 node_ref::operator==(const node_ref& other) const
53 return (device == other.device && node == other.node);
58 node_ref::operator!=(const node_ref& other) const
60 return !(*this == other);
65 node_ref::operator<(const node_ref& other) const
67 if (this->device != other.device)
68 return this->device < other
75 operator =(const node_ref& other) argument
[all...]
/haiku/src/apps/haikudepot/textview/
H A DParagraph.cpp29 Paragraph::Paragraph(const Paragraph& other) argument
31 fStyle(other.fStyle),
32 fTextSpans(other.fTextSpans),
33 fCachedLength(other.fCachedLength)
39 Paragraph::operator=(const Paragraph& other) argument
41 fStyle = other.fStyle;
42 fTextSpans = other.fTextSpans;
43 fCachedLength = other.fCachedLength;
50 Paragraph::operator==(const Paragraph& other) const
52 if (this == &other)
[all...]
/haiku/src/kits/network/libnetservices/
H A DHttpHeaders.cpp132 BHttpHeader::operator=(const BHttpHeader& other) argument
134 fName = other.fName;
135 fValue = other.fValue;
152 BHttpHeaders::BHttpHeaders(const BHttpHeaders& other) argument
156 *this = other;
299 BHttpHeaders::operator=(const BHttpHeaders& other) argument
301 if (&other == this)
306 for (int32 i = 0; i < other.CountHeaders(); i++)
307 AddHeader(other.HeaderAt(i).Name(), other
[all...]
/haiku/src/servers/app/drawing/
H A DAlphaMask.cpp57 AlphaMask::AlphaMask(AlphaMask* previousMask, AlphaMask* other) argument
60 fBounds(other->fBounds),
61 fClippedToCanvas(other->fClippedToCanvas),
62 fCanvasOrigin(other->fCanvasOrigin),
63 fCanvasBounds(other->fCanvasBounds),
64 fInverse(other->fInverse),
65 fBackgroundOpacity(other->fBackgroundOpacity),
69 fBits(other->fBits),
70 fBuffer(other->fBuffer),
71 fMask(other
360 VectorAlphaMask(AlphaMask* previousMask, VectorAlphaMask* other) argument
522 ShapeAlphaMask(AlphaMask* previousMask, ShapeAlphaMask* other) argument
[all...]
/haiku/src/libs/icon/flat_icon/
H A DLittleEndianBuffer.cpp144 LittleEndianBuffer::Write(const LittleEndianBuffer& other) argument
146 return Write(other.Buffer(), other.SizeUsed());
244 LittleEndianBuffer::Read(LittleEndianBuffer& other, size_t bytes) argument
249 if (other.Write(fHandle, bytes)) {
250 // reset other handle to beginning of pasted data
251 other.fHandle -= bytes;

Completed in 108 milliseconds

<<11121314151617181920>>