Searched refs:other (Results 1 - 25 of 605) sorted by relevance

1234567891011>>

/haiku-fatelf/src/build/libroot/
H A DNodeRef.h28 NodeRef(const NodeRef &other) argument
30 device = other.device;
31 node = other.node;
34 NodeRef &operator=(const NodeRef &other) argument
36 device = other.device;
37 node = other.node;
41 bool operator==(const NodeRef &other) const
43 return (device == other.device && node == other.node);
46 bool operator!=(const NodeRef &other) cons
[all...]
/haiku-fatelf/src/apps/debugger/types/
H A DTargetAddressRange.h29 TargetAddressRange(const TargetAddressRange& other) argument
31 fStart(other.fStart),
32 fSize(other.fSize)
36 TargetAddressRange& operator=(const TargetAddressRange& other) argument
38 fStart = other.fStart;
39 fSize = other.fSize;
43 bool operator==(const TargetAddressRange& other) const
45 return fStart == other.fStart && fSize == other.fSize;
48 bool operator!=(const TargetAddressRange& other) cons
83 operator |=(const TargetAddressRange& other) argument
[all...]
H A DSourceLocation.h20 SourceLocation(const SourceLocation& other) argument
22 fLine(other.fLine),
23 fColumn(other.fColumn)
27 SourceLocation& operator=(const SourceLocation& other) argument
29 fLine = other.fLine;
30 fColumn = other.fColumn;
34 bool operator==(const SourceLocation& other) const
36 return fLine == other.fLine && fColumn == other.fColumn;
39 bool operator!=(const SourceLocation& other) cons
[all...]
/haiku-fatelf/src/apps/terminal/
H A DTermPos.h18 inline TermPos(const TermPos& other) : x(other.x), y(other.y) { } argument
26 inline bool operator==(const TermPos& other) const
28 return x == other.x && y == other.y;
31 inline bool operator!=(const TermPos& other) const
33 return x != other.x || y != other.y;
36 inline bool operator<=(const TermPos& other) cons
56 operator =(const TermPos& other) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/gpt/
H A Dguid.h18 inline bool operator==(const guid &other) const;
19 inline bool operator!=(const guid &other) const;
24 guid_t::operator==(const guid_t &other) const
26 return data1 == other.data1
27 && data2 == other.data2
28 && data3 == other.data3
29 && *(uint64 *)data4 == *(uint64 *)other.data4;
34 guid_t::operator!=(const guid_t &other) const
36 return data1 != other.data1
37 || data2 != other
[all...]
/haiku-fatelf/src/kits/locale/
H A DNumberFormat.cpp5 BNumberFormat::BNumberFormat(const BNumberFormat &other) argument
6 : BFormat(other)
17 BNumberFormat::operator=(const BNumberFormat &other) argument
19 BFormat::operator=(other);
H A DFloatFormat.cpp5 BFloatFormat::BFloatFormat(const BFloatFormat &other) argument
6 : BNumberFormat(other),
7 BFloatFormatParameters(other)
34 BFloatFormat::operator=(const BFloatFormat &other) argument
36 BNumberFormat::operator=(other);
37 BFloatFormatParameters::operator=(other);
H A DIntegerFormat.cpp5 BIntegerFormat::BIntegerFormat(const BIntegerFormat &other) argument
6 : BNumberFormat(other),
7 BIntegerFormatParameters(other)
34 BIntegerFormat::operator=(const BIntegerFormat &other) argument
36 BNumberFormat::operator=(other);
37 BIntegerFormatParameters::operator=(other);
H A DIntegerFormatParameters.cpp13 const BIntegerFormatParameters &other)
14 : BNumberFormatParameters(other),
15 fParent(other.fParent)
42 BIntegerFormatParameters::operator=(const BIntegerFormatParameters &other) argument
44 BNumberFormatParameters::operator=(other);
45 fParent = other.fParent;
12 BIntegerFormatParameters( const BIntegerFormatParameters &other) argument
H A DTimeFormat.cpp13 BTimeFormat::BTimeFormat(const BTimeFormat &other) argument
14 : BDateTimeFormat(other)
/haiku-fatelf/headers/os/interface/
H A DAlignment.h16 inline BAlignment(const BAlignment& other);
32 inline bool operator==(const BAlignment& other) const;
33 inline bool operator!=(const BAlignment& other) const;
35 inline BAlignment& operator=(const BAlignment& other);
49 BAlignment::BAlignment(const BAlignment& other) argument
50 : horizontal(other.horizontal),
51 vertical(other.vertical)
107 BAlignment::operator==(const BAlignment& other) const
109 return (horizontal == other.horizontal && vertical == other
121 operator =(const BAlignment& other) argument
[all...]
H A DPoint.h24 BPoint& operator=(const BPoint& other);
31 BPoint operator+(const BPoint& other) const;
32 BPoint operator-(const BPoint& other) const;
33 BPoint& operator+=(const BPoint& other);
34 BPoint& operator-=(const BPoint& other);
36 bool operator!=(const BPoint& other) const;
37 bool operator==(const BPoint& other) const;
64 BPoint::BPoint(const BPoint& other) argument
66 x(other.x),
67 y(other
73 operator =(const BPoint& other) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DServerNodeID.h24 NodeID(const NodeID& other) argument
25 : volumeID(other.volumeID),
26 nodeID(other.nodeID)
36 NodeID& operator=(const NodeID& other) argument
38 volumeID = other.volumeID;
39 nodeID = other.nodeID;
43 bool operator==(const NodeID& other) const
45 return (volumeID == other.volumeID && nodeID == other.nodeID);
48 bool operator!=(const NodeID& other) cons
71 operator =(const NodeID& other) argument
[all...]
/haiku-fatelf/src/apps/debuganalyzer/gui/chart/
H A DChartDataRange.h30 ChartDataRange(const ChartDataRange& other) argument
32 min(other.min),
33 max(other.max)
48 ChartDataRange& Extend(const ChartDataRange& other) argument
50 min = std::min(min, other.min);
51 max = std::max(max, other.max);
69 ChartDataRange& operator=(const ChartDataRange& other) argument
71 min = other.min;
72 max = other.max;
76 bool operator==(const ChartDataRange& other) cons
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DServerNodeID.h24 NodeID(const NodeID& other) argument
25 : volumeID(other.volumeID),
26 nodeID(other.nodeID)
36 NodeID& operator=(const NodeID& other) argument
38 volumeID = other.volumeID;
39 nodeID = other.nodeID;
43 bool operator==(const NodeID& other) const
45 return (volumeID == other.volumeID && nodeID == other.nodeID);
48 bool operator!=(const NodeID& other) cons
71 operator =(const NodeID& other) argument
[all...]
/haiku-fatelf/headers/private/shared/
H A DReferenceable.h56 BReference(const BReference<Type>& other) argument
60 SetTo(other.fObject);
65 BReference(const BReference<OtherType>& other) argument
69 SetTo(other.Get());
122 BReference& operator=(const BReference<Type>& other) argument
124 SetTo(other.fObject);
128 BReference& operator=(Type* other) argument
130 SetTo(other);
135 BReference& operator=(const BReference<OtherType>& other) argument
137 SetTo(other
[all...]
/haiku-fatelf/src/apps/webpositive/support/
H A DHashKeys.h27 HashKey32<Value> operator=(const HashKey32<Value>& other)
29 value = other.value;
33 bool operator==(const HashKey32<Value>& other) const
35 return (value == other.value);
38 bool operator!=(const HashKey32<Value>& other) const
40 return (value != other.value);
59 HashKey64<Value> operator=(const HashKey64<Value>& other)
61 value = other.value;
65 bool operator==(const HashKey64<Value>& other) const
67 return (value == other
101 operator =(const HashKeyString& other) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/
H A DIORequestInfo.h31 IORequestInfo(const IORequestInfo& other) argument
33 offset(other.offset),
34 length(other.length),
35 id(other.id),
36 isWrite(other.isWrite),
37 isVIP(other.isVIP)
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeRef.h22 NodeRef(const NodeRef& other) argument
23 : node_ref(other)
33 NodeRef& operator=(const node_ref& other) argument
35 node_ref::operator=(other);
39 bool operator==(const node_ref& other) const
41 return node_ref::operator==(other);
44 bool operator!=(const NodeRef& other) const
46 return !(*this == other);
/haiku-fatelf/src/apps/debugger/arch/
H A DRegister.cpp44 Register::Register(const Register& other) argument
46 fIndex(other.fIndex),
47 fName(other.fName),
48 fBitSize(other.fBitSize),
49 fValueType(other.fValueType),
50 fFormat(other.fFormat),
51 fType(other.fType),
52 fCalleePreserved(other.fCalleePreserved)
/haiku-fatelf/src/bin/coreutils/man/
H A Dod.x2 od \- dump files in octal and other formats
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DNodeRef.h22 NodeRef(const NodeRef& other) argument
23 : node_ref(other)
33 NodeRef& operator=(const node_ref& other) argument
35 node_ref::operator=(other);
39 bool operator==(const node_ref& other) const
41 return node_ref::operator==(other);
44 bool operator!=(const NodeRef& other) const
46 return !(*this == other);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfKeyCode.cpp15 // in the documentation and/or other materials provided with the
66 KeyCode::KeyCode (const KeyCode &other) argument
68 _filmMfcCode = other._filmMfcCode;
69 _filmType = other._filmType;
70 _prefix = other._prefix;
71 _count = other._count;
72 _perfOffset = other._perfOffset;
73 _perfsPerFrame = other._perfsPerFrame;
74 _perfsPerCount = other._perfsPerCount;
79 KeyCode::operator = (const KeyCode &other) argument
[all...]
H A DImfPreviewImage.cpp15 // in the documentation and/or other materials provided with the
69 PreviewImage::PreviewImage (const PreviewImage &other): argument
70 _width (other._width),
71 _height (other._height),
72 _pixels (new PreviewRgba [other._width * other._height])
75 _pixels[i] = other._pixels[i];
86 PreviewImage::operator = (const PreviewImage &other) argument
90 _width = other._width;
91 _height = other
[all...]
/haiku-fatelf/src/apps/debugger/value/
H A DValue.h21 virtual bool operator==(const Value& other) const = 0;
22 inline bool operator!=(const Value& other) const
23 { return !(*this == other); }

Completed in 229 milliseconds

1234567891011>>