Searched defs:other (Results 1 - 25 of 53) sorted by relevance

123

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/i386/pid/
H A Dtst.branch.s62 jz other
69 ENTRY(other) function
73 SET_SIZE(other)
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/sparc/pid/
H A Dtst.branch.s52 be other
60 ENTRY(other) function
63 SET_SIZE(other)
/vbox/include/VBox/com/
H A Dlist.h125 * The other list will be fully copied and the capacity will be the same as
126 * the size of the other list. The com::Bstr's are silently converted to
129 * @param other The list to copy.
132 RTCList(ComSafeArrayIn(IN_BSTR, other))
134 com::SafeArray<IN_BSTR> sfaOther(ComSafeArrayInArg(other));
145 * The other list will be fully copied and the capacity will be the same as
146 * the size of the other list. The com::Bstr's are silently converted to
149 * @param other The list to copy.
152 RTCList(const com::SafeArray<IN_BSTR> &other) argument
153 : BASE(other
167 operator =(const com::SafeArray<IN_BSTR> &other) argument
[all...]
H A Dmtlist.h124 * The other list will be fully copied and the capacity will be the same as
125 * the size of the other list. The com::Bstr's are silently converted to
128 * @param other The list to copy.
131 RTCMTList(ComSafeArrayIn(IN_BSTR, other))
133 com::SafeArray<IN_BSTR> sfaOther(ComSafeArrayInArg(other));
144 * The other list will be fully copied and the capacity will be the same as
145 * the size of the other list. The com::Bstr's are silently converted to
148 * @param other The list to copy.
151 RTCMTList(const com::SafeArray<IN_BSTR> &other) argument
152 : BASE(other
166 operator =(const com::SafeArray<IN_BSTR> &other) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcfileio.h32 * and other provisions required by the GPL or the LGPL. If you do not delete
137 other = PR_FILE_OTHER enumerator in enum:__anon17206
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxVersion.h41 VBoxVersion& operator=(const VBoxVersion &other) { m_x = other.x(); m_y = other.y(); m_z = other.z(); return *this; } argument
45 bool equal(const VBoxVersion &other) const { return (m_x == other.m_x) && (m_y == other.m_y) && (m_z == other.m_z); }
46 bool operator==(const VBoxVersion &other) const { return equal(other); }
[all...]
H A DUIDefs.h122 StorageSlot(const StorageSlot &other) : bus(other.bus), port(other.port), device(other.device) {} argument
124 StorageSlot& operator=(const StorageSlot &other) { bus = other.bus; port = other.port; device = other.device; return *this; } argument
125 bool operator==(const StorageSlot &other) const { return bus == other
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCppSharedAllocator.h107 typedef nsCppSharedAllocator<U> other; typedef in struct:nsCppSharedAllocator::rebind
H A DnsHashtable.cpp32 * and other provisions required by the GPL or the LGPL. If you do not delete
566 nsCStringKey* other = (nsCStringKey*)aKey; local
568 NS_ASSERTION(other->mStrLen != PRUint32(-1), "never called HashCode");
569 if (mStrLen != other->mStrLen)
571 return memcmp(mStr, other->mStr, mStrLen * sizeof(char)) == 0;
693 nsStringKey* other = (nsStringKey*)aKey; local
695 NS_ASSERTION(other->mStrLen != PRUint32(-1), "never called HashCode");
696 if (mStrLen != other->mStrLen)
698 return memcmp(mStr, other->mStr, mStrLen * sizeof(PRUnichar)) == 0;
H A DnsSupportsArray.cpp34 * and other provisions required by the GPL or the LGPL. If you do not delete
302 nsISupportsArray* other = NS_CONST_CAST(nsISupportsArray*, aOther); local
303 nsresult rv = other->Count(&countOther);
311 if (NS_FAILED(other->GetElementAt(index, getter_AddRefs(otherElem))))
/vbox/src/libs/xpcom18a4/xpcom/proxy/public/
H A DnsProxiedService.h33 * and other provisions required by the GPL or the LGPL. If you do not delete
147 PRBool operator==(const nsISupports* other) argument
149 return ((mProxiedService == other) || (mService == other));
/vbox/src/VBox/Frontends/VirtualBox/src/medium/
H A DUIMedium.cpp63 UIMedium::UIMedium(const UIMedium &other) argument
65 *this = other;
68 UIMedium& UIMedium::operator=(const UIMedium &other) argument
70 m_type = other.type();
72 m_medium = other.medium();
74 m_state = other.state();
75 m_result = other.result();
76 m_strLastAccessError = other.lastAccessError();
78 m_strId = other.id();
79 m_strRootId = other
[all...]
H A DUIMedium.h43 NoDiffsCache& operator=(const NoDiffsCache &other) argument
45 isSet = other.isSet;
46 state = other.state;
47 result = other.result;
48 toolTip = other.toolTip;
99 * Creates the UIMedium on the basis of the passed @a other one. */
100 UIMedium(const UIMedium &other);
103 UIMedium& operator=(const UIMedium &other);
236 * @note For other medium types, the location and the actual size are returned.
/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUIUpdateDefs.h32 bool operator==(const VBoxUpdateDay &other) { return val == other.val || key == other.key; } argument
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIHotKeyEditor.h56 UIHotKey(const UIHotKey &other) argument
57 : m_type(other.type())
58 , m_strSequence(other.sequence())
59 , m_strDefaultSequence(other.defaultSequence())
63 UIHotKey& operator=(const UIHotKey &other) argument
65 m_type = other.type();
66 m_strSequence = other.sequence();
67 m_strDefaultSequence = other.defaultSequence();
H A DUIPortForwardingTable.h62 PortData(const PortData &other) : m_uValue(other.value()) {} argument
63 bool operator==(const PortData &other) { return m_uValue == other.m_uValue; } argument
81 bool operator==(const UIPortForwardingData &other) argument
83 return name == other.name &&
84 protocol == other.protocol &&
85 hostIp == other.hostIp &&
86 hostPort == other.hostPort &&
87 guestIp == other
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcList.h32 * and other provisions required by the GPL or the LGPL. If you do not delete
169 void MoveTo(ipcList<T> &other) argument
171 other.mHead = mHead;
172 other.mTail = mTail;
/vbox/src/libs/xpcom18a4/python/src/
H A DPyIID.cpp32 * and other provisions required by the GPL or the LGPL. If you do not delete
196 Py_nsIID::PyTypeMethod_compare(PyObject *self, PyObject *other) argument
199 Py_nsIID *o_iid = (Py_nsIID *)other;
H A DTypeObject.cpp32 * and other provisions required by the GPL or the LGPL. If you do not delete
103 PyXPCOM_TypeObject::Py_cmp(PyObject *self, PyObject *other) argument
107 // The only meaningful test is for equality - the result of other comparisons is undefined
113 if (!Py_nsISupports::InterfaceFromPyObject(other, NS_GET_IID(nsISupports), &pUnkOther, PR_FALSE)) {
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/test/
H A Dstub_test.cpp44 void setfoo(foo* f) {other = f;}
46 foo* other; member in class:baz
83 foo* a = self->other;
151 // just Linux_x86 now. Add other later...
156 foo* a = self->other;
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/
H A DUIGlobalSettingsInput.h48 UIShortcutCacheItem(const UIShortcutCacheItem &other) argument
49 : key(other.key)
50 , description(other.description)
51 , currentSequence(other.currentSequence)
52 , defaultSequence(other.defaultSequence)
55 UIShortcutCacheItem& operator=(const UIShortcutCacheItem &other) argument
57 key = other.key;
58 description = other.description;
59 currentSequence = other.currentSequence;
60 defaultSequence = other
[all...]
/vbox/include/iprt/cpp/
H A Dlist.h47 * are no iterators or any other high level access/modifier methods (e.g.
185 * This is the base class for all other list classes. It implements the
225 * The other list will be fully copied and the capacity will be the same as
226 * the size of the other list.
228 * @param other The list to copy.
231 RTCListBase(const RTCListBase<T, ITYPE, MT>& other) argument
236 other.m_guard.enterRead();
238 size_t const cElementsOther = other.m_cElements;
240 RTCListHelper<T, ITYPE>::copyTo(m_pArray, other.m_pArray, 0, cElementsOther);
243 other
358 insert(size_t i, const RTCListBase<T, ITYPE, MT> &other) argument
403 prepend(const RTCListBase<T, ITYPE, MT> &other) argument
435 append(const RTCListBase<T, ITYPE, MT> &other) argument
457 operator =(const RTCListBase<T, ITYPE, MT>& other) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/proxy/src/
H A DnsProxyEventObject.cpp33 * and other provisions required by the GPL or the LGPL. If you do not delete
72 const nsProxyEventKey* other = (const nsProxyEventKey*)aKey; local
73 return mRootObjectKey == other->mRootObjectKey
74 && mDestQueueKey == other->mDestQueueKey
75 && mProxyType == other->mProxyType;
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsSpecialSystemDirectory.cpp35 * and other provisions required by the GPL or the LGPL. If you do not delete
116 nsSpecialSystemDirectory::SystemDirectories other = local
118 return other == sdKey;
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/public/
H A Dxptinfo.h32 * and other provisions required by the GPL or the LGPL. If you do not delete
123 nsXPTType& operator=(const nsXPTType& other) argument
124 {flags = other.flags; return *this;}
154 // 'Dependent' means that params of this type are dependent upon other
155 // params. e.g. an T_INTERFACE_IS is dependent upon some other param at
219 // NOTE: other activities on types are done via methods on nsIInterfaceInfo

Completed in 97 milliseconds

123