HomeSort by relevance Sort by last modified time
    Searched defs:equal (Results 26 - 50 of 681) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
push_back_exception_safety.pass.cpp 28 bool equal(const CMyClass &rhs) const function in class:CMyClass
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 27 bool equal(const CMyClass &rhs) const function in class:CMyClass
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }
push_front_exception_safety.pass.cpp 28 bool equal(const CMyClass &rhs) const function in class:CMyClass
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.modifiers/
push_back_exception_safety.pass.cpp 29 bool equal(const CMyClass &rhs) const function in class:CMyClass
67 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); }
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 44 if (equal(newVal, item.getValue()))
69 private static boolean equal(Object a, Object b) { method in class:TextEditor
  /external/mockito/src/test/java/org/mockito/internal/creation/
DelegatingMethodTest.java 32 DelegatingMethod equal = new DelegatingMethod(someMethod); local
33 assertTrue(delegatingMethod.equals(equal));
  /external/proguard/src/proguard/util/
ArrayUtil.java 38 public static boolean equal(byte[] array1, byte[] array2, int size) method in class:ArrayUtil
59 public static boolean equal(short[] array1, short[] array2, int size) method in class:ArrayUtil
80 public static boolean equal(int[] array1, int[] array2, int size) method in class:ArrayUtil
101 public static boolean equal(Object[] array1, Object[] array2, int size) method in class:ArrayUtil
141 equal(array1, array2, size);
  /frameworks/support/compat/java/android/support/v4/util/
ContainerHelpers.java 40 public static boolean equal(Object a, Object b) { method in class:ContainerHelpers
  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray_test.go 137 // we cannot simply check that the res and exp lists are equal
153 // all results computed - sorted res and exp must be equal
175 // we cannot simply check that the res and exp lists are equal
187 // all results computed - sorted res and exp must be equal
221 func equal(x, y *Index) bool { func
222 if !bytes.Equal(x.data, y.data) {
244 if !equal(x, &y) {
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray_test.go 137 // we cannot simply check that the res and exp lists are equal
153 // all results computed - sorted res and exp must be equal
175 // we cannot simply check that the res and exp lists are equal
187 // all results computed - sorted res and exp must be equal
221 func equal(x, y *Index) bool { func
222 if !bytes.Equal(x.data, y.data) {
244 if !equal(x, &y) {
  /art/compiler/optimizing/
graph_test.cc 31 HInstruction* equal = new (allocator) HEqual(instr, instr); local
32 if_block->AddInstruction(equal);
33 instr = new (allocator) HIf(equal);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tabnanny.py 207 def equal(self, other): member in class:Whitespace
212 # Intended to be used after not self.equal(other) is known, in which
303 # equal to what's left at the top of the indents stack
322 if not indents[-1].equal(thisguy):
324 msg = "indent not equal e.g. " + format_witnesses(witness)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
ValidCheckingInfoObject.py 29 if tab.equal(var_check_tab):
227 def equal(self, varchecktab): member in class:VAR_CHECK_PCD_VARIABLE_TAB
  /external/clang/test/SemaCXX/
builtins.cpp 13 int equal(const char *s1, const char *s2) { function
17 template int equal<&__builtin_strcmp>(const char*, const char*); // expected-error {{builtin functions must be directly called}} expected-error {{expected unqualified-id}} expected-error {{expected ')'}} expected-note {{to match this '('}}
  /external/guava/guava/src/com/google/common/base/
Objects.java 43 * Determines whether two possibly-null objects are equal. Returns:
48 * equal according to {@link Object#equals(Object)}.
59 public static boolean equal(@Nullable Object a, @Nullable Object b) { method in class:Objects
78 * does not equal the hash code of that object.
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
ObjectsTest.java 32 assertTrue(Objects.equal(1, 1));
33 assertTrue(Objects.equal(null, null));
38 assertTrue(Objects.equal(s1, s2));
40 assertFalse(Objects.equal(s1, null));
41 assertFalse(Objects.equal(null, s1));
42 assertFalse(Objects.equal("foo", "bar"));
43 assertFalse(Objects.equal("1", 1));
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
GeneralRangeTest.java 81 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Helpers.java 45 // Clone of Objects.equal
46 static boolean equal(Object a, Object b) { method in class:Helpers
276 return equal(this.getKey(), e.getKey())
277 && equal(this.getValue(), e.getValue());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Helpers.java 47 // Clone of Objects.equal
48 static boolean equal(Object a, Object b) { method in class:Helpers
278 return equal(this.getKey(), e.getKey())
279 && equal(this.getValue(), e.getValue());
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 34 assertTrue(Objects.equal(1, 1));
35 assertTrue(Objects.equal(null, null));
40 assertTrue(Objects.equal(s1, s2));
42 assertFalse(Objects.equal(s1, null));
43 assertFalse(Objects.equal(null, s1));
44 assertFalse(Objects.equal("foo", "bar"));
45 assertFalse(Objects.equal("1", 1));
  /external/guava/guava-tests/test/com/google/common/collect/
GeneralRangeTest.java 83 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_iterator.hpp 169 return a.equal(b);
176 return !a.equal(b);
190 bool equal(const basic_resolver_iterator& other) const function in class:asio::ip::basic_resolver_iterator
  /external/proguard/src/proguard/evaluation/value/
DetailedArrayReferenceValue.java 179 public int equal(ReferenceValue other) method in class:DetailedArrayReferenceValue
181 return other.equal(this);
194 // public int equal(IdentifiedReferenceValue other)
196 // return equal((TypedReferenceValue)other);
209 // public int equal(ArrayReferenceValue other)
211 // return equal((TypedReferenceValue)other);
224 // public int equal(IdentifiedArrayReferenceValue other)
226 // return equal((ArrayReferenceValue)other);
239 // public int equal(DetailedArrayReferenceValue other)
241 // return equal((IdentifiedArrayReferenceValue)other)
    [all...]
ReferenceValue.java 140 * Returns whether this ReferenceValue is equal to the given other
144 public abstract int equal(ReferenceValue other); method in class:ReferenceValue
167 return -equal(other);
184 * Returns whether this ReferenceValue is equal to the given other
188 public int equal(TypedReferenceValue other) method in class:ReferenceValue
190 return equal((ReferenceValue)other);
208 * Returns whether this ReferenceValue is equal to the given other
212 public int equal(IdentifiedReferenceValue other) method in class:ReferenceValue
214 return equal((TypedReferenceValue)other);
231 * Returns whether this ReferenceValue is equal to the given othe
235 public int equal(ArrayReferenceValue other) method in class:ReferenceValue
259 public int equal(IdentifiedArrayReferenceValue other) method in class:ReferenceValue
283 public int equal(DetailedArrayReferenceValue other) method in class:ReferenceValue
    [all...]
  /external/python/cpython2/Lib/
tabnanny.py 207 def equal(self, other): member in class:Whitespace
212 # Intended to be used after not self.equal(other) is known, in which
303 # equal to what's left at the top of the indents stack
322 if not indents[-1].equal(thisguy):
324 msg = "indent not equal e.g. " + format_witnesses(witness)

Completed in 4652 milliseconds

12 3 4 5 6 7 8 91011>>