Searched refs:other (Results 101 - 125 of 632) sorted by relevance

1234567891011>>

/haiku/headers/os/media/
H A DTimeCode.h63 BTimeCode(const BTimeCode& other);
75 BTimeCode& operator=(const BTimeCode& other);
76 bool operator==(const BTimeCode& other) const;
77 bool operator<(const BTimeCode& other) const;
79 BTimeCode& operator+=(const BTimeCode& other);
80 BTimeCode& operator-=(const BTimeCode& other);
82 BTimeCode operator+(const BTimeCode& other) const;
83 BTimeCode operator-(const BTimeCode& other) const;
/haiku/headers/tools/cppunit/cppunit/
H A DSourceLine.h47 bool operator ==( const SourceLine &other ) const;
48 bool operator !=( const SourceLine &other ) const;
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DBlocker.cpp48 Blocker::Blocker(const Blocker& other) argument
51 *this = other;
118 Blocker::operator=(const Blocker& other) argument
121 fData = other.fData;
129 Blocker::operator==(const Blocker& other) const
131 return (fData == other.fData);
136 Blocker::operator!=(const Blocker& other) const
138 return (fData != other.fData);
/haiku/src/kits/package/solver/
H A DSolverPackageSpecifierList.cpp29 Vector(const std::vector<BSolverPackageSpecifier>& other) argument
31 std::vector<BSolverPackageSpecifier>(other)
45 const BSolverPackageSpecifierList& other)
49 *this = other;
142 BSolverPackageSpecifierList::operator=(const BSolverPackageSpecifierList& other) argument
144 if (this == &other)
150 if (other.fSpecifiers == NULL)
154 fSpecifiers = new(std::nothrow) Vector(*other.fSpecifiers);
44 BSolverPackageSpecifierList( const BSolverPackageSpecifierList& other) argument
H A DSolverResult.cpp27 BSolverResultElement::BSolverResultElement(const BSolverResultElement& other) argument
29 fType(other.fType),
30 fPackage(other.fPackage)
55 BSolverResultElement::operator=(const BSolverResultElement& other) argument
57 fType = other.fType;
58 fPackage = other.fPackage;
/haiku/headers/os/package/solver/
H A DSolverPackage.h22 BSolverPackage(const BSolverPackage& other);
32 BSolverPackage& operator=(const BSolverPackage& other);
/haiku/src/kits/locale/
H A DLocale.cpp30 BLocale::BLocale(const BLocale& other) argument
32 fConventions(other.fConventions),
33 fLanguage(other.fLanguage)
46 BLocale::operator=(const BLocale& other) argument
48 if (this == &other)
52 BAutolock otherLock(other.fLock);
56 fConventions = other.fConventions;
57 fLanguage = other.fLanguage;
H A DFormattingConventions.cpp201 const BFormattingConventions& other)
203 fCachedNumericFormat(other.fCachedNumericFormat),
204 fCachedMonetaryFormat(other.fCachedMonetaryFormat),
205 fCachedUse24HourClock(other.fCachedUse24HourClock),
206 fExplicitNumericFormat(other.fExplicitNumericFormat),
207 fExplicitMonetaryFormat(other.fExplicitMonetaryFormat),
208 fExplicitUse24HourClock(other.fExplicitUse24HourClock),
209 fUseStringsFromPreferredLanguage(other.fUseStringsFromPreferredLanguage),
210 fICULocale(new icu::Locale(*other.fICULocale))
213 fCachedDateFormats[s] = other
200 BFormattingConventions( const BFormattingConventions& other) argument
266 operator =(const BFormattingConventions& other) argument
[all...]
/haiku/src/kits/debugger/value/values/
H A DBoolValue.cpp43 BoolValue::operator==(const Value& other) const
45 const BoolValue* otherBool = dynamic_cast<const BoolValue*>(&other);
H A DStringValue.cpp41 StringValue::operator==(const Value& other) const
43 const StringValue* otherString = dynamic_cast<const StringValue*>(&other);
/haiku/headers/private/netservices2/
H A DErrorsExt.h58 BRuntimeError(const BRuntimeError& other);
59 BRuntimeError(BRuntimeError&& other) noexcept;
61 BRuntimeError& operator=(const BRuntimeError& other);
62 BRuntimeError& operator=(BRuntimeError&& other) noexcept;
77 BSystemError(const BSystemError& other);
78 BSystemError& operator=(const BSystemError& other);
80 BSystemError(BSystemError&& other) noexcept;
81 BSystemError& operator=(BSystemError&& other) noexcept;
/haiku/src/libs/icon/generic/
H A DVertexSource.h38 VertexSource(const VertexSource& other) NOT_ALLOWED;
39 VertexSource& operator=(const VertexSource& other) NOT_ALLOWED;
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantBuffer.cpp31 AccelerantBuffer::AccelerantBuffer(const AccelerantBuffer& other, argument
33 : fDisplayMode(other.fDisplayMode),
34 fFrameBufferConfig(other.fFrameBufferConfig),
35 fDisplayModeSet(other.fDisplayModeSet),
36 fFrameBufferConfigSet(other.fFrameBufferConfigSet),
37 fIsOffscreenBuffer(other.fIsOffscreenBuffer || offscreenBuffer)
/haiku/headers/private/storage/
H A DNotOwningEntryRef.h42 NotOwningEntryRef(const entry_ref& other) argument
44 *this = other;
77 NotOwningEntryRef& operator=(const entry_ref& other) argument
79 return SetTo(other.device, other.directory, other.name);
/haiku/src/libs/icon/transformable/
H A DTransformable.h35 Transformable(const Transformable& other);
53 // set to or combine with other matrix
54 void SetTransform(const Transformable& other);
55 Transformable& operator=(const Transformable& other);
56 Transformable& Multiply(const Transformable& other);
64 bool operator==(const Transformable& other) const;
65 bool operator!=(const Transformable& other) const;
/haiku/src/apps/mediaplayer/settings/
H A DSettings.cpp19 mpSettings::operator!=(const mpSettings& other) const
21 return autostart != other.autostart
22 || closeWhenDonePlayingMovie != other.closeWhenDonePlayingMovie
23 || closeWhenDonePlayingSound != other.closeWhenDonePlayingSound
24 || loopMovie != other.loopMovie
25 || loopSound != other.loopSound
26 || useOverlays != other.useOverlays
27 || scaleBilinear != other.scaleBilinear
28 || scaleFullscreenControls != other.scaleFullscreenControls
29 || resume != other
[all...]
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.cpp30 Property::Property(const Property& other) argument
31 : fIdentifier(other.fIdentifier),
32 fEditable(other.fEditable)
78 Property::InterpolateTo(const Property* other, float scale) argument
104 IntProperty::IntProperty(const IntProperty& other) argument
105 : Property(other),
106 fValue(other.fValue),
107 fMin(other.fMin),
108 fMax(other.fMax)
181 IntProperty::SetValue(const Property* other) argument
199 InterpolateTo(const Property* other, float scale) argument
239 FloatProperty(const FloatProperty& other) argument
316 SetValue(const Property* other) argument
334 InterpolateTo(const Property* other, float scale) argument
370 UInt8Property(const UInt8Property& other) argument
435 SetValue(const Property* other) argument
453 InterpolateTo(const Property* other, float scale) argument
484 BoolProperty(const BoolProperty& other) argument
557 SetValue(const Property* other) argument
578 InterpolateTo(const Property* other, float scale) argument
609 StringProperty(const StringProperty& other) argument
679 SetValue(const Property* other) argument
[all...]
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.cpp38 Token::Token(const Token& other) argument
40 string(other.string),
41 type(other.type),
42 value(other.value),
43 position(other.position)
59 Token::operator=(const Token& other) argument
61 string = other.string;
62 type = other.type;
63 value = other.value;
64 position = other
[all...]
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlock.cpp16 Block::TransferFrom(Block& other) argument
20 fVolume = other.fVolume;
21 fData = other.fData;
22 fIndex = other.fIndex;
23 fTransaction = other.fTransaction;
25 other.fVolume = NULL;
26 other.fData = NULL;
/haiku/src/apps/terminal/
H A DUTF8Char.h99 bool operator==(const UTF8Char& other) const
102 bool equals = bytes[0] == other.bytes[0];
104 equals = bytes[1] == other.bytes[1];
106 equals = bytes[2] == other.bytes[2];
108 equals = bytes[3] == other.bytes[3];
114 bool operator!=(const UTF8Char& other) const
116 return !(*this == other);
/haiku/src/apps/debugger/user_interface/gui/settings/
H A DGuiTeamUiSettings.cpp24 GuiTeamUiSettings::GuiTeamUiSettings(const GuiTeamUiSettings& other) argument
26 if (_SetTo(other) != B_OK)
123 GuiTeamUiSettings::operator=(const GuiTeamUiSettings& other) argument
125 if (_SetTo(other) != B_OK)
133 GuiTeamUiSettings::_SetTo(const GuiTeamUiSettings& other) argument
137 fID = other.fID;
139 fValues = other.fValues;
/haiku/src/kits/app/
H A DKey.cpp46 BKey::BKey(BKey& other) argument
48 *this = other;
215 BKey::operator=(const BKey& other) argument
217 SetPurpose(other.Purpose());
218 SetData((const uint8*)other.Data(), other.DataLength());
220 fIdentifier = other.fIdentifier;
221 fSecondaryIdentifier = other.fSecondaryIdentifier;
222 fOwner = other.fOwner;
223 fCreationTime = other
303 BPasswordKey(BPasswordKey& other) argument
[all...]
/haiku/src/system/kernel/fs/
H A DKPath.cpp59 KPath::KPath(const KPath& other) argument
69 *this = other;
108 KPath::Adopt(KPath& other) argument
112 fBuffer = other.fBuffer;
113 fBufferSize = other.fBufferSize;
114 fPathLength = other.fPathLength;
115 fLazy = other.fLazy;
116 fFailed = other.fFailed;
117 fIsNull = other.fIsNull;
119 other
370 operator =(const KPath& other) argument
[all...]
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.cpp33 VariablesViewNodeInfo::VariablesViewNodeInfo(const VariablesViewNodeInfo& other) argument
35 fNodeExpanded(other.fNodeExpanded),
36 fCastedType(other.fCastedType),
37 fTypeHandler(other.fTypeHandler),
38 fRendererSettings(other.fRendererSettings)
56 VariablesViewNodeInfo::operator=(const VariablesViewNodeInfo& other) argument
58 fNodeExpanded = other.fNodeExpanded;
59 SetCastedType(other.fCastedType);
60 SetTypeHandler(other.fTypeHandler);
61 fRendererSettings = other
[all...]
/haiku/headers/os/interface/
H A DAffineTransform.h149 inline const BAffineTransform& Multiply(const BAffineTransform& other);
150 const BAffineTransform& PreMultiply(const BAffineTransform& other);
152 const BAffineTransform& other);
154 const BAffineTransform& other);
161 const BAffineTransform& other) const;
163 const BAffineTransform& other) const;
165 inline const BAffineTransform& operator*=(const BAffineTransform& other);
166 inline const BAffineTransform& operator/=(const BAffineTransform& other);
169 const BAffineTransform& other) const;
171 const BAffineTransform& other) cons
349 Multiply(const BAffineTransform& other) argument
357 MultiplyInverse(const BAffineTransform& other) argument
366 PreMultiplyInverse(const BAffineTransform& other) argument
378 operator =(const BAffineTransform& other) argument
403 operator *=(const BAffineTransform& other) argument
410 operator /=(const BAffineTransform& other) argument
[all...]

Completed in 124 milliseconds

1234567891011>>