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

1234567891011>>

/haiku/headers/os/net/
H A DNetworkDevice.h68 bool operator==(const wireless_network& other) { argument
69 return strncmp(name, other.name, 32) == 0
71 && noise_level == other.noise_level
72 && signal_strength == other.signal_strength
73 && flags == other.flags
74 && authentication_mode == other.authentication_mode
75 && cipher == other.cipher
76 && group_cipher == other.group_cipher
77 && key_mode == other.key_mode;
H A DCertificate.h15 BCertificate(const BCertificate& other);
32 bool operator==(const BCertificate& other) const;
/haiku/src/servers/app/drawing/Painter/
H A DTransformable.h22 Transformable(const Transformable& other);
33 // set to or combine with other matrix
34 void SetTransformable(const Transformable& other);
35 Transformable& operator=(const agg::trans_affine& other);
36 Transformable& operator=(const Transformable& other);
37 Transformable& Multiply(const Transformable& other);
42 // bool operator==(const Transformable& other) const;
43 // bool operator!=(const Transformable& other) const;
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageTokenizer.h88 ParseException(const ParseException& other) argument
89 : message(other.message),
90 position(other.position)
101 Token(const Token& other);
104 Token& operator=(const Token& other);
/haiku/headers/private/kernel/fs/
H A DKPath.h29 KPath(const KPath& other);
34 void Adopt(KPath& other);
60 KPath& operator=(const KPath& other);
63 bool operator==(const KPath& other) const;
65 bool operator!=(const KPath& other) const;
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageDirectory.cpp47 PackageDirectory::HasPrecedenceOver(const PackageDirectory* other) const
49 // If one of us has the SYSTEM_PACKAGE flag and the other doesn't,
52 BReference<Package> package(GetPackage()), otherPackage(other->GetPackage());
60 return PackageNode::HasPrecedenceOver(other);
64 otherAttrs = other->fAttributes.Count();
67 return PackageNode::HasPrecedenceOver(other);
/haiku/headers/private/netservices2/
H A DExclusiveBorrow.h140 BExclusiveBorrow(BExclusiveBorrow&& other) noexcept
144 fAdminBlock = other.fAdminBlock;
145 fPtr = other.fPtr;
146 other.fAdminBlock = nullptr;
147 other.fPtr = nullptr;
151 BExclusiveBorrow& operator=(BExclusiveBorrow&& other) noexcept
155 fAdminBlock = other.fAdminBlock;
156 fPtr = other.fPtr;
157 other.fAdminBlock = nullptr;
158 other
[all...]
/haiku/src/apps/haikudepot/packagemodel/
H A DDepotInfo.h21 DepotInfo(const DepotInfo& other);
23 DepotInfo& operator=(const DepotInfo& other);
24 bool operator==(const DepotInfo& other) const;
25 bool operator!=(const DepotInfo& other) const;
41 const BReference<DepotInfo>& other);
/haiku/src/apps/haikudepot/textview/
H A DTextEditor.cpp24 TextEditor::TextEditor(const TextEditor& other) argument
26 fDocument(other.fDocument),
27 fLayout(other.fLayout),
28 fSelection(other.fSelection),
29 fCaretAnchorX(other.fCaretAnchorX),
30 fStyleAtCaret(other.fStyleAtCaret),
31 fEditingEnabled(other.fEditingEnabled)
42 TextEditor::operator=(const TextEditor& other) argument
44 if (this == &other)
47 fDocument = other
[all...]
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.h21 ColorProperty(const ColorProperty& other);
36 virtual bool SetValue(const Property* other);
39 virtual bool InterpolateTo(const Property* other,
/haiku/src/tools/fs_shell/
H A DKPath.cpp43 KPath::KPath(const KPath& other) argument
50 *this = other;
239 KPath::operator=(const KPath& other) argument
241 SetTo(other.fBuffer, other.fBufferSize);
255 KPath::operator==(const KPath& other) const
258 return !other.fBuffer;
260 return (other.fBuffer
261 && fPathLength == other.fPathLength
262 && fssh_strcmp(fBuffer, other
[all...]
/haiku/src/apps/webpositive/
H A DCredentialsStorage.cpp38 Credentials::Credentials(const Credentials& other) argument
40 *this = other;
71 Credentials::operator=(const Credentials& other) argument
73 if (this == &other)
76 fUsername = other.fUsername;
77 fPassword = other.fPassword;
84 Credentials::operator==(const Credentials& other) const
86 if (this == &other)
89 return fUsername == other.fUsername && fPassword == other
[all...]
/haiku/headers/os/interface/
H A DPolygon.h19 BPolygon(const BPolygon& other);
20 BPolygon(const BPolygon* other);
24 BPolygon& operator=(const BPolygon& other);
H A DGradient.h41 ColorStop(const ColorStop& other);
44 bool operator!=(const ColorStop& other) const;
52 BGradient(const BGradient& other);
59 BGradient& operator=(const BGradient& other);
61 bool operator==(const BGradient& other) const;
62 bool operator!=(const BGradient& other) const;
64 const BGradient& other) const;
66 void SetColorStops(const BGradient& other);
/haiku/src/apps/debugger/user_interface/gui/settings/
H A DGuiTeamUiSettings.h23 other);
40 GuiTeamUiSettings& operator=(const GuiTeamUiSettings& other);
45 status_t _SetTo(const GuiTeamUiSettings& other);
/haiku/src/libs/icon/style/
H A DGradientTransformable.h58 Gradient(const Gradient& other);
67 Gradient& operator=(const Gradient& other);
69 bool operator==(const Gradient& other) const;
70 bool operator!=(const Gradient& other) const;
72 const Gradient& other) const;
74 void SetColors(const Gradient& other);
/haiku/headers/private/media/
H A DTList.h24 List(const List<value> &other) argument
26 *this = other;
29 List<value> &operator=(const List<value> &other) argument
33 item_max = other.item_max;
34 item_count = other.item_count;
39 *items[i] = *other.items[i];
/haiku/src/tests/system/kernel/file_corruption/
H A DCheckSum.h30 CheckSum& operator=(const CheckSum& other) argument
32 memcpy(fData, other.fData, sizeof(fData));
/haiku/headers/os/package/solver/
H A DSolverPackageSpecifier.h33 const BSolverPackageSpecifier& other);
41 const BSolverPackageSpecifier& other);
H A DSolverPackageSpecifierList.h23 const BSolverPackageSpecifierList& other);
40 const BSolverPackageSpecifierList& other);
/haiku/src/kits/package/
H A DPackageVersion.cpp91 BPackageVersion::Compare(const BPackageVersion& other) const
93 int diff = NaturalCompare(fMajor.String(), other.fMajor.String());
97 diff = NaturalCompare(fMinor.String(), other.fMinor.String());
101 diff = NaturalCompare(fMicro.String(), other.fMicro.String());
109 if (!other.fPreRelease.IsEmpty())
111 } else if (other.fPreRelease.IsEmpty()) {
115 diff = NaturalCompare(fPreRelease.String(), other.fPreRelease.String());
120 return (int)fRevision - (int)other.fRevision;
/haiku/src/kits/debugger/value/values/
H A DFloatValue.cpp62 FloatValue::operator==(const Value& other) const
64 const FloatValue* otherFloat = dynamic_cast<const FloatValue*>(&other);
H A DIntegerValue.cpp60 IntegerValue::operator==(const Value& other) const
62 const IntegerValue* otherInt = dynamic_cast<const IntegerValue*>(&other);
/haiku/src/kits/debugger/ids/
H A DFunctionID.cpp115 const SourceFunctionID* other = dynamic_cast<const SourceFunctionID*>( local
117 return other != NULL && fPath == other->fPath
118 && fFunctionName == other->fFunctionName;
167 const ImageFunctionID* other = dynamic_cast<const ImageFunctionID*>( local
169 return other != NULL && fPath == other->fPath
170 && fFunctionName == other->fFunctionName;
/haiku/src/kits/locale/
H A DRelativeDateTimeFormat.cpp100 BRelativeDateTimeFormat::BRelativeDateTimeFormat(const BRelativeDateTimeFormat& other) argument
101 : Inherited(other),
102 fFormatter(other.fFormatter != NULL
103 ? new RelativeDateTimeFormatter(*other.fFormatter) : NULL),
104 fCalendar(other.fCalendar != NULL
105 ? new GregorianCalendar(*other.fCalendar) : NULL)
107 if ((fFormatter == NULL && other.fFormatter != NULL)
108 || (fCalendar == NULL && other.fCalendar != NULL))

Completed in 140 milliseconds

1234567891011>>