HomeSort by relevance Sort by last modified time
    Searched refs:o1 (Results 1 - 25 of 1699) 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) {
17 } else if (isArray(o1)) {
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.25/gas/testsuite/gas/sparc/
pc2210.s 5 sethi %pc22(sym), %o1
6 or %o1, %pc10(sym), %o1
pc2210.d 10 0: 13 00 00 00 sethi %hi\(0\), %o1
12 4: 92 12 60 00 mov %o1, %o1 ! 0 <.text>
  /toolchain/binutils/binutils-2.25/gold/testsuite/
tls_test_file2.cc 28 __thread int o1; variable
  /external/libcxx/test/std/utilities/optional/optional.nullops/
equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( (nullopt == o1), "" );
33 static_assert ( (o1 == nullopt), "" );
36 static_assert (noexcept(nullopt == o1), "");
37 static_assert (noexcept(o1 == nullopt), "");
greater.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt > o1), "" );
33 static_assert ( !(o1 > nullopt), "" );
36 static_assert (noexcept(nullopt > o1), "");
37 static_assert (noexcept(o1 > nullopt), "");
greater_equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( (nullopt >= o1), "" );
33 static_assert ( (o1 >= nullopt), "" );
36 static_assert (noexcept(nullopt >= o1), "");
37 static_assert (noexcept(o1 >= nullopt), "");
less_equal.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( (nullopt <= o1), "" );
34 static_assert ( (o1 <= nullopt), "" );
37 static_assert (noexcept(nullopt <= o1), "");
38 static_assert (noexcept(o1 <= nullopt), "");
less_than.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt < o1), "" );
33 static_assert ( !(o1 < nullopt), "" );
36 static_assert (noexcept(nullopt < o1), "");
37 static_assert (noexcept(o1 < nullopt), "");
not_equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt != o1), "" );
33 static_assert ( !(o1 != nullopt), "" );
36 static_assert (noexcept(nullopt != o1), "");
37 static_assert (noexcept(o1 != nullopt), "");
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MessageDateComparator.java 22 public int compare(Message o1, Message o2) {
24 if (o1.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) {
25 if (o1.getSentDate() == null) {
30 return o2.getSentDate().compareTo(o1.getSentDate());
  /external/libcxx/test/std/experimental/optional/optional.nullops/
equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( (nullopt == o1), "" );
33 static_assert ( (o1 == nullopt), "" );
36 static_assert (noexcept(nullopt == o1), "");
37 static_assert (noexcept(o1 == nullopt), "");
greater.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt > o1), "" );
33 static_assert ( !(o1 > nullopt), "" );
36 static_assert (noexcept(nullopt > o1), "");
37 static_assert (noexcept(o1 > nullopt), "");
greater_equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( (nullopt >= o1), "" );
33 static_assert ( (o1 >= nullopt), "" );
36 static_assert (noexcept(nullopt >= o1), "");
37 static_assert (noexcept(o1 >= nullopt), "");
less_equal.pass.cpp 31 constexpr O o1; // disengaged local
34 static_assert ( (nullopt <= o1), "" );
36 static_assert ( (o1 <= nullopt), "" );
39 static_assert (noexcept(nullopt <= o1), "");
40 static_assert (noexcept(o1 <= nullopt), "");
less_than.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt < o1), "" );
33 static_assert ( !(o1 < nullopt), "" );
36 static_assert (noexcept(nullopt < o1), "");
37 static_assert (noexcept(o1 < nullopt), "");
not_equal.pass.cpp 28 constexpr O o1; // disengaged local
31 static_assert ( !(nullopt != o1), "" );
33 static_assert ( !(o1 != nullopt), "" );
36 static_assert (noexcept(nullopt != o1), "");
37 static_assert (noexcept(o1 != nullopt), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullops/
eqaul.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( nullopt == o1 , "" );
34 static_assert ( o1 == nullopt , "" );
37 static_assert (noexcept(nullopt == o1), "");
38 static_assert (noexcept(o1 == nullopt), "");
less_than.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( !(nullopt < o1), "" );
34 static_assert ( !(o1 < nullopt), "" );
37 static_assert (noexcept(nullopt < o1), "");
38 static_assert (noexcept(o1 < nullopt), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.nullops/
equal.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( (nullopt == o1), "" );
34 static_assert ( (o1 == nullopt), "" );
37 static_assert (noexcept(nullopt == o1), "");
38 static_assert (noexcept(o1 == nullopt), "");
greater.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( !(nullopt > o1), "" );
34 static_assert ( !(o1 > nullopt), "" );
37 static_assert (noexcept(nullopt > o1), "");
38 static_assert (noexcept(o1 > nullopt), "");
greater_equal.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( (nullopt >= o1), "" );
34 static_assert ( (o1 >= nullopt), "" );
37 static_assert (noexcept(nullopt >= o1), "");
38 static_assert (noexcept(o1 >= nullopt), "");
less_equal.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( (nullopt <= o1), "" );
34 static_assert ( (o1 <= nullopt), "" );
37 static_assert (noexcept(nullopt <= o1), "");
38 static_assert (noexcept(o1 <= nullopt), "");
less_than.pass.cpp 29 constexpr O o1; // disengaged local
32 static_assert ( !(nullopt < o1), "" );
34 static_assert ( !(o1 < nullopt), "" );
37 static_assert (noexcept(nullopt < o1), "");
38 static_assert (noexcept(o1 < nullopt), "");

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 91011>>