Searched refs:other (Results 126 - 150 of 605) sorted by relevance

1234567891011>>

/haiku-fatelf/headers/os/locale/
H A DTimeFormat.h15 BTimeFormat(const BTimeFormat &other);
/haiku-fatelf/headers/tools/cppunit/cppunit/
H A DException.h26 bool operator ==( const Type &other ) const
28 return m_type == other.m_type;
44 Exception (const Exception& other);
48 Exception& operator= (const Exception& other);
/haiku-fatelf/src/add-ons/translators/ico/
H A DICO.h80 operator==(const rgba32_color& other) const
82 return red == other.red && green == other.green && blue == other.blue;
/haiku-fatelf/src/add-ons/translators/pcx/
H A DPCX.h46 operator==(const rgba32_color& other) const
48 return red == other.red && green == other.green && blue == other.blue;
/haiku-fatelf/src/apps/debugger/types/
H A DArrayIndexPath.cpp22 ArrayIndexPath::ArrayIndexPath(const ArrayIndexPath& other) argument
24 fIndices(other.fIndices)
96 ArrayIndexPath::operator=(const ArrayIndexPath& other) argument
98 fIndices = other.fIndices;
H A DTargetAddressRangeList.cpp23 const TargetAddressRangeList& other)
25 fRanges(other.fRanges)
100 TargetAddressRangeList::operator=(const TargetAddressRangeList& other) argument
102 fRanges = other.fRanges;
22 TargetAddressRangeList( const TargetAddressRangeList& other) argument
/haiku-fatelf/src/apps/debugger/value/values/
H A DBoolValue.h23 virtual bool operator==(const Value& other) const;
H A DFloatValue.h23 virtual bool operator==(const Value& other) const;
H A DStringValue.h23 virtual bool operator==(const Value& other) const;
/haiku-fatelf/src/apps/webpositive/
H A DCredentialsStorage.h13 * documentation and/or other materials provided with the distribution.
47 const Credentials& other);
53 Credentials& operator=(const Credentials& other);
55 bool operator==(const Credentials& other) const;
56 bool operator!=(const Credentials& other) const;
/haiku-fatelf/src/preferences/filetypes/
H A DAttributeListView.h20 AttributeItem(const AttributeItem& other);
36 AttributeItem& operator=(const AttributeItem& other);
38 bool operator==(const AttributeItem& other) const;
39 bool operator!=(const AttributeItem& other) const;
/haiku-fatelf/src/servers/app/
H A DRegionPool.h24 BRegion* GetRegion(const BRegion& other);
/haiku-fatelf/src/system/kernel/fs/
H A DKPath.cpp44 KPath::KPath(const KPath& other) argument
51 *this = other;
91 KPath::Adopt(KPath& other) argument
95 fBuffer = other.fBuffer;
96 fBufferSize = other.fBufferSize;
98 other.fBuffer = NULL;
312 KPath::operator=(const KPath& other) argument
314 SetTo(other.fBuffer, false, other.fBufferSize);
328 KPath::operator==(const KPath& other) cons
[all...]
/haiku-fatelf/src/tests/system/kernel/device_manager/playground/
H A DKPath.cpp43 KPath::KPath(const KPath& other) argument
50 *this = other;
89 KPath::Adopt(KPath& other) argument
93 fBuffer = other.fBuffer;
94 fBufferSize = other.fBufferSize;
96 other.fBuffer = NULL;
271 KPath::operator=(const KPath& other) argument
273 SetTo(other.fBuffer, other.fBufferSize);
287 KPath::operator==(const KPath& other) cons
[all...]
/haiku-fatelf/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.cpp26 VariablesViewNodeInfo::VariablesViewNodeInfo(const VariablesViewNodeInfo& other) argument
28 fNodeExpanded(other.fNodeExpanded)
34 VariablesViewNodeInfo::operator=(const VariablesViewNodeInfo& other) argument
36 fNodeExpanded = other.fNodeExpanded;
67 bool operator==(const Key& other) const
69 return *variable == *other.variable && *path == *other.path;
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkCookie.cpp47 BNetworkCookie::BNetworkCookie(const BNetworkCookie& other) argument
56 *this = other;
656 BNetworkCookie::operator=(const BNetworkCookie& other) argument
659 fRawCookie = other.fRawCookie;
660 fRawCookieValid = other.fRawCookieValid;
661 fRawFullCookie = other.fRawFullCookie;
662 fRawFullCookieValid = other.fRawFullCookieValid;
663 fExpirationString = other.fExpirationString;
664 fExpirationStringValid = other.fExpirationStringValid;
666 fComment = other
694 operator ==(const BNetworkCookie& other) argument
702 operator !=(const BNetworkCookie& other) argument
[all...]
H A DNetworkCookieJar.cpp373 BNetworkCookieJar::Iterator::Iterator(const Iterator& other) argument
375 fCookieJar(other.fCookieJar),
376 fIterator(other.fIterator),
377 fLastList(other.fLastList),
378 fList(other.fList),
379 fElement(other.fElement),
380 fLastElement(other.fLastElement),
381 fIndex(other.fIndex)
476 BNetworkCookieJar::Iterator::operator=(const BNetworkCookieJar::Iterator& other) argument
478 fCookieJar = other
515 UrlIterator(const UrlIterator& other) argument
602 operator =( const BNetworkCookieJar::UrlIterator& other) argument
[all...]
/haiku-fatelf/src/kits/shared/
H A DVariant.cpp137 BVariant::operator==(const BVariant& other) const
140 return other.fType == 0;
141 if (other.fType == 0)
150 return fBool == other.ToBool();
155 if (!other.IsNumber())
157 return ToInt64() == other.ToInt64();
162 if (!other.IsNumber())
164 return ToUInt64() == other.ToUInt64();
167 if (!other.IsNumber())
169 return ToDouble() == other
339 _SetTo(const BVariant& other) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DVersion.cpp110 Version::Compare(const Version& other) const
112 int cmp = compare_version_part(fMajor, other.fMajor);
116 cmp = compare_version_part(fMinor, other.fMinor);
120 cmp = compare_version_part(fMicro, other.fMicro);
128 if (other.fPreRelease != NULL)
130 } else if (other.fPreRelease == NULL) {
134 cmp = BPrivate::NaturalCompare(fPreRelease, other.fPreRelease);
139 return (int)fRelease - other.fRelease;
145 const Version& other) const
147 int cmp = Compare(other);
[all...]
/haiku-fatelf/headers/private/userlandfs/shared/
H A DHashMap.h77 Iterator(const Iterator& other) argument
79 fMap(other.fMap),
80 fIterator(other.fIterator),
81 fElement(other.fElement)
113 Iterator& operator=(const Iterator& other) argument
115 fMap = other.fMap;
116 fIterator = other.fIterator;
117 fElement = other.fElement;
254 HashKey32<Value> operator=(const HashKey32<Value>& other) argument
256 value = other
286 operator =(const HashKey64<Value>& other) argument
[all...]
/haiku-fatelf/src/kits/locale/
H A DCountry.cpp37 BCountry::BCountry(const BCountry& other) argument
39 fICULocale(new icu::Locale(*other.fICULocale))
45 BCountry::operator=(const BCountry& other) argument
47 if (this == &other)
50 *fICULocale = *other.fICULocale;
/haiku-fatelf/src/kits/media/
H A DMediaDefs.cpp505 const media_raw_audio_format* other)
508 format->frame_rate = other->frame_rate;
510 format->channel_count = other->channel_count;
512 format->format = other->format;
514 format->byte_order = other->byte_order;
516 format->buffer_size = other->buffer_size;
518 format->frame_rate = other->frame_rate;
524 const media_multi_audio_info* other)
527 format->channel_mask = other->channel_mask;
529 format->valid_bits = other
504 raw_audio_format_specialize(media_raw_audio_format* format, const media_raw_audio_format* other) argument
523 multi_audio_info_specialize(media_multi_audio_info* format, const media_multi_audio_info* other) argument
536 multi_audio_format_specialize(media_multi_audio_format* format, const media_multi_audio_format* other) argument
545 raw_video_format_specialize(media_raw_video_format* format, const media_raw_video_format* other) argument
580 multistream_format_specialize(media_multistream_format* format, const media_multistream_format* other) argument
646 encoded_audio_format_specialize(media_encoded_audio_format* format, const media_encoded_audio_format* other) argument
661 encoded_video_format_specialize(media_encoded_video_format* format, const media_encoded_video_format* other) argument
827 media_format(const media_format& other) argument
[all...]
/haiku-fatelf/src/libs/icon/transformable/
H A DTransformable.cpp21 Transformable::Transformable(const Transformable& other) argument
22 : agg::trans_affine(other)
55 Transformable::SetTransform(const Transformable& other) argument
57 if (*this != other) {
58 *this = other;
65 Transformable::operator=(const Transformable& other) argument
67 if (other != *this) {
69 multiply(other);
77 Transformable::Multiply(const Transformable& other) argument
79 if (!other
[all...]
/haiku-fatelf/src/servers/app/drawing/Painter/
H A DTransformable.cpp37 Transformable::Transformable(const Transformable& other) argument
38 : agg::trans_affine(other)
107 Transformable::SetTransformable(const Transformable& other) argument
109 if (*this != other) {
110 *this = other;
117 Transformable::operator=(const Transformable& other) argument
119 if (other != *this) {
121 multiply(other);
129 Transformable::Multiply(const Transformable& other) argument
131 if (!other
[all...]
/haiku-fatelf/src/kits/interface/
H A DGradient.cpp41 BGradient::ColorStop::ColorStop(const ColorStop& other) argument
43 color.red = other.color.red;
44 color.green = other.color.green;
45 color.blue = other.color.blue;
46 color.alpha = other.color.alpha;
47 offset = other.offset;
64 BGradient::ColorStop::operator!=(const ColorStop& other) const
66 return color.red != other.color.red ||
67 color.green != other.color.green ||
68 color.blue != other
247 operator =(const BGradient& other) argument
296 SetColorStops(const BGradient& other) argument
[all...]

Completed in 295 milliseconds

1234567891011>>