HomeSort by relevance Sort by last modified time
    Searched refs:o2 (Results 1 - 25 of 1789) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/src/main/java/org/mockito/internal/matchers/
Equality.java 12 public static boolean areEqual(Object o1, Object o2) {
13 if (o1 == o2 ) {
15 } else if (o1 == null || o2 == null) {
18 return isArray(o2) && areArraysEqual(o1, o2);
20 return o1.equals(o2);
24 static boolean areArraysEqual(Object o1, Object o2) {
25 return areArrayLengthsEqual(o1, o2)
26 && areArrayElementsEqual(o1, o2);
29 static boolean areArrayLengthsEqual(Object o1, Object o2) {
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
tls_test_file2.cc 29 __thread int o2 = -2; variable
  /external/llvm/test/MC/Sparc/
sparc-mem-instructions.s 4 ! CHECK: ldsb [%i0+%l6], %o2 ! encoding: [0xd4,0x4e,0x00,0x16]
5 ldsb [%i0 + %l6], %o2
6 ! CHECK: ldsb [%i0+32], %o2 ! encoding: [0xd4,0x4e,0x20,0x20]
7 ldsb [%i0 + 32], %o2
10 ! CHECK: ldsba [%i0+%l6] 131, %o2 ! encoding: [0xd4,0xce,0x10,0x76]
11 ldsba [%i0 + %l6] 131, %o2
13 ! CHECK: ldsh [%i0+%l6], %o2 ! encoding: [0xd4,0x56,0x00,0x16]
14 ldsh [%i0 + %l6], %o2
15 ! CHECK: ldsh [%i0+32], %o2 ! encoding: [0xd4,0x56,0x20,0x20]
16 ldsh [%i0 + 32], %o2
    [all...]
  /external/libcxx/test/std/input.output/iostreams.base/fpos/fpos.operations/
streamsize.pass.cpp 22 std::streamoff o2(sz);
23 assert(o == o2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostreams.base/fpos/fpos.operations/
streamsize.pass.cpp 22 std::streamoff o2(sz);
23 assert(o == o2);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
ldd_std.s 4 ldda [%g3] 0x04, %o2
6 stda %o2, [%g3] 0x04
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MessageDateComparator.java 22 public int compare(Message o1, Message o2) {
26 } else if (o2.getSentDate() == null) {
29 return o2.getSentDate().compareTo(o1.getSentDate());
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MessageDateComparator.java 23 public int compare(Message o1, Message o2) {
27 } else if (o2.getSentDate() == null) {
30 return o2.getSentDate().compareTo(o1.getSentDate());
  /external/capstone/suite/MC/Sparc/
sparc-mem-instructions.s.cs 2 0xd4,0x4e,0x00,0x16 = ldsb [%i0+%l6], %o2
3 0xd4,0x4e,0x20,0x20 = ldsb [%i0+32], %o2
5 0xd4,0x56,0x00,0x16 = ldsh [%i0+%l6], %o2
6 0xd4,0x56,0x20,0x20 = ldsh [%i0+32], %o2
8 0xd4,0x0e,0x00,0x16 = ldub [%i0+%l6], %o2
9 0xd4,0x0e,0x20,0x20 = ldub [%i0+32], %o2
10 0xd4,0x08,0x60,0x00 = ldub [%g1], %o2
11 0xd4,0x16,0x00,0x16 = lduh [%i0+%l6], %o2
12 0xd4,0x16,0x20,0x20 = lduh [%i0+32], %o2
13 0xd4,0x10,0x60,0x00 = lduh [%g1], %o2
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.relops/
equal.pass.cpp 38 constexpr O o2; // disengaged local
44 static_assert ( o1 == o2 , "" );
49 static_assert ( o2 == o1 , "" );
50 static_assert ( o2 == o2 , "" );
51 static_assert ( !(o2 == o3), "" );
52 static_assert ( !(o2 == o4), "" );
53 static_assert ( !(o2 == o5), "" );
56 static_assert ( !(o3 == o2), "" );
62 static_assert ( !(o4 == o2), "" );
    [all...]
greater_equal.pass.cpp 35 constexpr O o2; // disengaged local
41 static_assert ( (o1 >= o2), "" );
46 static_assert ( (o2 >= o1), "" );
47 static_assert ( (o2 >= o2), "" );
48 static_assert ( !(o2 >= o3), "" );
49 static_assert ( !(o2 >= o4), "" );
50 static_assert ( !(o2 >= o5), "" );
53 static_assert ( (o3 >= o2), "" );
59 static_assert ( (o4 >= o2), "" );
    [all...]
greater_than.pass.cpp 35 constexpr O o2; // disengaged local
41 static_assert ( !(o1 > o2), "" );
46 static_assert ( !(o2 > o1), "" );
47 static_assert ( !(o2 > o2), "" );
48 static_assert ( !(o2 > o3), "" );
49 static_assert ( !(o2 > o4), "" );
50 static_assert ( !(o2 > o5), "" );
53 static_assert ( (o3 > o2), "" );
59 static_assert ( (o4 > o2), "" );
    [all...]
less_equal.pass.cpp 35 constexpr O o2; // disengaged local
41 static_assert ( (o1 <= o2), "" );
46 static_assert ( (o2 <= o1), "" );
47 static_assert ( (o2 <= o2), "" );
48 static_assert ( (o2 <= o3), "" );
49 static_assert ( (o2 <= o4), "" );
50 static_assert ( (o2 <= o5), "" );
53 static_assert ( !(o3 <= o2), "" );
59 static_assert ( !(o4 <= o2), "" );
    [all...]
less_than.pass.cpp 35 constexpr O o2; // disengaged local
41 static_assert ( !(o1 < o2), "" );
46 static_assert ( !(o2 < o1), "" );
47 static_assert ( !(o2 < o2), "" );
48 static_assert ( (o2 < o3), "" );
49 static_assert ( (o2 < o4), "" );
50 static_assert ( (o2 < o5), "" );
53 static_assert ( !(o3 < o2), "" );
59 static_assert ( !(o4 < o2), "" );
    [all...]
not_equal.pass.cpp 38 constexpr O o2; // disengaged local
44 static_assert ( !(o1 != o2), "" );
49 static_assert ( !(o2 != o1), "" );
50 static_assert ( !(o2 != o2), "" );
51 static_assert ( (o2 != o3), "" );
52 static_assert ( (o2 != o4), "" );
53 static_assert ( (o2 != o5), "" );
56 static_assert ( (o3 != o2), "" );
62 static_assert ( (o4 != o2), "" );
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
CollatorTest.java 35 Object o, o2; local
39 o2 = "F";
40 assertTrue("a) Failed on primary difference", c.compare(o, o2) < 0);
42 o2 = "\u00e9";
43 assertTrue("a) Failed on secondary difference", c.compare(o, o2) < 0);
45 o2 = "E";
46 assertTrue("a) Failed on tertiary difference", c.compare(o, o2) < 0);
48 o2 = "\u0002";
49 assertTrue("a) Failed on identical", c.compare(o, o2) < 0);
51 o2 = "e"
    [all...]
  /external/strace/tests/
rt_sigaction.awk 59 o1[1][1] = o2[1][1] = "SIG_DFL"
60 o1[1][2] = o2[1][2] = "\\[\\]"
61 o1[1][3] = o2[1][3] = "0"
62 o1[1][4] = o2[1][4] = ""
67 o2[i][j] = n2[i - 1][j]
83 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
84 o2[i][4] "\\}, " a2 "|" \
87 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /external/strace/tests-m32/
rt_sigaction.awk 59 o1[1][1] = o2[1][1] = "SIG_DFL"
60 o1[1][2] = o2[1][2] = "\\[\\]"
61 o1[1][3] = o2[1][3] = "0"
62 o1[1][4] = o2[1][4] = ""
67 o2[i][j] = n2[i - 1][j]
83 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
84 o2[i][4] "\\}, " a2 "|" \
87 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /external/strace/tests-mx32/
rt_sigaction.awk 59 o1[1][1] = o2[1][1] = "SIG_DFL"
60 o1[1][2] = o2[1][2] = "\\[\\]"
61 o1[1][3] = o2[1][3] = "0"
62 o1[1][4] = o2[1][4] = ""
67 o2[i][j] = n2[i - 1][j]
83 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
84 o2[i][4] "\\}, " a2 "|" \
87 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/comparators/
ClassComparator.java 11 public int compare(Class<?> o1, Class<?> o2) {
13 subCompare = o1.getCanonicalName().compareTo(o2.getCanonicalName());
15 subCompare = Boolean.compare(o1.isAnnotation(), o2.isAnnotation());
17 subCompare = Boolean.compare(o1.isArray(), o2.isArray());
19 subCompare = Boolean.compare(o1.isEnum(), o2.isEnum());
21 subCompare = Boolean.compare(o1.isInterface(), o2.isInterface());
ParameterComparator.java 12 public int compare(Parameter o1, Parameter o2) {
13 int compareName = o1.getName().compareTo(o2.getName());
15 int compareType = new ClassComparator().compare(o1.getType(), o2.getType());
  /external/libcxx/test/std/utilities/optional/optional.nullops/
equal.pass.cpp 29 constexpr O o2{1}; // engaged
32 static_assert ( !(nullopt == o2), "" );
34 static_assert ( !(o2 == nullopt), "" );
greater.pass.cpp 29 constexpr O o2{1}; // engaged
32 static_assert ( !(nullopt > o2), "" );
34 static_assert ( (o2 > nullopt), "" );
greater_equal.pass.cpp 29 constexpr O o2{1}; // engaged
32 static_assert ( !(nullopt >= o2), "" );
34 static_assert ( (o2 >= nullopt), "" );
less_equal.pass.cpp 30 constexpr O o2{1}; // engaged
33 static_assert ( (nullopt <= o2), "" );
35 static_assert ( !(o2 <= nullopt), "" );

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011>>