HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 351 - 375 of 8492) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/hash_fn/
sample_range_hashing.hpp 57 sample_range_hashing(const sample_range_hashing& other);
61 swap(sample_range_hashing& other);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
bss.s 2 .section .other, "a", @progbits
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
attr-arch-directive-4.s 1 # .c6xabi_attribute directives override other architecture information.
attr-arch-directive-5.s 1 # .c6xabi_attribute directives override other architecture information.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
attr-compatibility-other-other.d 1 #name: C6X compatibility attribute merging, other other
4 #source: attr-compatibility-other.s
5 #source: attr-compatibility-other.s
6 #error: .*Object has vendor-specific contents that must be processed by the 'other' toolchain
  /cts/tools/dasm/src/java_cup/
symbol_set.java 24 * @param other the set we are cloning from.
26 public symbol_set(symbol_set other) throws internal_error
28 not_null(other);
29 _all = (Hashtable)other._all.clone();
70 * @param other the set we are testing against.
72 public boolean is_subset_of(symbol_set other) throws internal_error
74 not_null(other);
76 /* walk down our set and make sure every element is in the other */
78 if (!other.contains((symbol)e.nextElement()))
88 * @param other the set we are are testing against
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /dalvik/dx/src/com/android/dx/rop/cst/
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Memoable.java 22 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
24 * @throws MemoableResetException if the <b>other</b> parameter is in some other way invalid.
26 void reset(Memoable other);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
Constant.java 48 public final int compareTo(Constant other) {
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other);
  /external/libchrome/base/trace_event/
memory_allocator_dump_guid.h 34 bool operator==(const MemoryAllocatorDumpGuid& other) const {
35 return guid_ == other.guid_;
38 bool operator!=(const MemoryAllocatorDumpGuid& other) const {
39 return !(*this == other);
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecord.java 12 public abstract boolean equals(Object other);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfKeyCode.cpp 15 // in the documentation and/or other materials provided with the
66 KeyCode::KeyCode (const KeyCode &other)
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)
    [all...]
ImfPreviewImage.cpp 15 // in the documentation and/or other materials provided with the
71 PreviewImage::PreviewImage (const PreviewImage &other):
72 _width (other._width),
73 _height (other._height),
74 _pixels (new PreviewRgba [other._width * other._height])
77 _pixels[i] = other._pixels[i];
88 PreviewImage::operator = (const PreviewImage &other)
92 _width = other._width;
93 _height = other._height
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseTryBlock.java 13 * in the documentation and/or other materials provided with the
40 TryBlock other = (TryBlock)o; local
41 return getStartCodeAddress() == other.getStartCodeAddress() &&
42 getCodeUnitCount() == other.getCodeUnitCount() &&
43 getExceptionHandlers().equals(other.getExceptionHandlers());
  /frameworks/support/v4/api23/android/support/v4/print/
PrintHelperApi23.java 27 protected PrintAttributes.Builder copyAttributes(PrintAttributes other) {
28 PrintAttributes.Builder b = super.copyAttributes(other);
30 if (other.getDuplexMode() != 0) {
31 b.setDuplexMode(other.getDuplexMode());
  /art/tools/checker/common/
mixins.py 18 def __eq__(self, other):
19 return isinstance(other, self.__class__) \
20 and self.__dict__ == other.__dict__
  /external/clang/test/SemaCXX/
cxx11-unused.cpp 13 A(const A &other) = delete; member in class:A
30 B(const B &other);
33 B::B(const B &other) = default; member in class:B
  /external/jetty/src/java/org/eclipse/jetty/security/
UserDataConstraint.java 35 public UserDataConstraint combine(UserDataConstraint other)
37 if (this.compareTo(other) < 0) return this;
38 return other;
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue()));
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
set.py 13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
87 def union_update(self, other):
88 """Update the set, adding any elements from other which are not
90 @param other: the collection of items with which to update the set
91 @type other: Set object
93 if not isinstance(other, Set):
94 raise ValueError('other must be a Set instance')
95 if self is other:
97 for item in other.items:
100 def intersection_update(self, other)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py 13 their elements have a definite order; sets on the other hand don't
54 # - Raymond Hettinger added a number of speedups and other
113 def __cmp__(self, other):
123 # NotImplemented instead of True or False. Then the other comparand
124 # would get a chance to determine the result, and if the other comparand
131 def __eq__(self, other):
132 if isinstance(other, BaseSet):
133 return self._data == other._data
137 def __ne__(self, other):
138 if isinstance(other, BaseSet)
    [all...]

Completed in 1671 milliseconds

<<11121314151617181920>>