HomeSort by relevance Sort by last modified time
    Searched refs:o2 (Results 26 - 50 of 1709) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.relops/
greater_than.pass.cpp 39 constexpr O o2; // disengaged local
45 static_assert ( !(o1 > o2), "" );
50 static_assert ( !(o2 > o1), "" );
51 static_assert ( !(o2 > o2), "" );
52 static_assert ( !(o2 > o3), "" );
53 static_assert ( !(o2 > o4), "" );
54 static_assert ( !(o2 > o5), "" );
57 static_assert ( (o3 > o2), "" );
63 static_assert ( (o4 > o2), "" );
    [all...]
less_equal.pass.cpp 39 constexpr O o2; // disengaged local
45 static_assert ( (o1 <= o2), "" );
50 static_assert ( (o2 <= o1), "" );
51 static_assert ( (o2 <= o2), "" );
52 static_assert ( (o2 <= o3), "" );
53 static_assert ( (o2 <= o4), "" );
54 static_assert ( (o2 <= o5), "" );
57 static_assert ( !(o3 <= o2), "" );
63 static_assert ( !(o4 <= o2), "" );
    [all...]
less_than.pass.cpp 39 constexpr O o2; // disengaged local
45 static_assert ( !(o1 < o2), "" );
50 static_assert ( !(o2 < o1), "" );
51 static_assert ( !(o2 < o2), "" );
52 static_assert ( (o2 < o3), "" );
53 static_assert ( (o2 < o4), "" );
54 static_assert ( (o2 < o5), "" );
57 static_assert ( !(o3 < o2), "" );
63 static_assert ( !(o4 < o2), "" );
    [all...]
not_equal.pass.cpp 42 constexpr O o2; // disengaged local
48 static_assert ( !(o1 != o2), "" );
53 static_assert ( !(o2 != o1), "" );
54 static_assert ( !(o2 != o2), "" );
55 static_assert ( (o2 != o3), "" );
56 static_assert ( (o2 != o4), "" );
57 static_assert ( (o2 != o5), "" );
60 static_assert ( (o3 != o2), "" );
66 static_assert ( (o4 != o2), "" );
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.comp_with_t/
less_than.pass.cpp 43 constexpr O o2{1}; // engaged
47 static_assert ( !(o2 < T(1)), "" );
49 static_assert ( o2 < T(2) , "" );
50 static_assert ( o2 < T(val), "" );
54 static_assert ( !(T(1) < o2), "" );
56 static_assert ( !(T(2) < o2), "" );
57 static_assert (!(T(val) < o2), "" );
  /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 58 o1[1][1] = o2[1][1] = "SIG_DFL"
59 o1[1][2] = o2[1][2] = "\\[\\]"
60 o1[1][3] = o2[1][3] = "0"
61 o1[1][4] = o2[1][4] = ""
66 o2[i][j] = n2[i - 1][j]
82 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
83 o2[i][4] "\\}, " a2 "|" \
86 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /external/strace/tests-m32/
rt_sigaction.awk 58 o1[1][1] = o2[1][1] = "SIG_DFL"
59 o1[1][2] = o2[1][2] = "\\[\\]"
60 o1[1][3] = o2[1][3] = "0"
61 o1[1][4] = o2[1][4] = ""
66 o2[i][j] = n2[i - 1][j]
82 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
83 o2[i][4] "\\}, " a2 "|" \
86 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /external/strace/tests-mx32/
rt_sigaction.awk 58 o1[1][1] = o2[1][1] = "SIG_DFL"
59 o1[1][2] = o2[1][2] = "\\[\\]"
60 o1[1][3] = o2[1][3] = "0"
61 o1[1][4] = o2[1][4] = ""
66 o2[i][j] = n2[i - 1][j]
82 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3] \
83 o2[i][4] "\\}, " a2 "|" \
86 o2[i][1] ", sa_mask=" o2[i][2] ", sa_flags=" o2[i][3]
    [all...]
  /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), "" );
less_than.pass.cpp 29 constexpr O o2{1}; // engaged
32 static_assert ( (nullopt < o2), "" );
34 static_assert ( !(o2 < nullopt), "" );
not_equal.pass.cpp 29 constexpr O o2{1}; // engaged
32 static_assert ( (nullopt != o2), "" );
34 static_assert ( (o2 != nullopt), "" );
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
edge.s 15 edge32cc %o5, %o4, %o2
16 edge32 %o5, %o4, %o2
17 edge32n %o5, %o4, %o2
18 edge32lcc %o2, %g5, %l1
19 edge32l %o2, %g5, %l1
20 edge32ln %o2, %g5, %l1
ldtw_sttw.s 4 ldtwa [%g3] 0x04, %o2
7 sttwa %o2, [%g3] 0x04
ldx_stx.s 4 ldxa [%g3] 0x04, %o2
7 stxa %o2, [%g3] 0x04
  /external/libexif/libexif/olympus/
exif-mnote-data-olympus.c 103 size_t i, o, s, doff, base = 0, o2 = 6 + 2; local
146 o2 += 4;
179 o2 += 2 + 8;
183 exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0);
190 exif_set_short (*buf + o2, n->order, (ExifShort) n->count);
191 o2 += 2;
195 o = o2 + i * 12;
242 size_t i, tcount, o, o2, datao = 6, base = 0; local
249 o2 = 6 + n->offset; /* Start of interesting data */
250 if ((o2 + 10 < o2) || (o2 + 10 < 10) || (o2 + 10 > buf_size))
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
StartPositionComparator.java 25 public int compare(ASTNode o1, ASTNode o2) {
26 return Integer.compare(o1.getStartPosition(), o2.getStartPosition());
  /external/llvm/test/MC/Sparc/
sparcv9-atomic-instructions.s 6 ! CHECK: cas [%i0], %l6, %o2 ! encoding: [0xd5,0xe6,0x10,0x16]
7 cas [%i0], %l6, %o2
9 ! CHECK: casx [%i0], %l6, %o2 ! encoding: [0xd5,0xf6,0x10,0x16]
10 casx [%i0], %l6, %o2
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationComparator.java 15 public int compare(Invocation o1, Invocation o2) {
16 return Integer.valueOf(o1.getSequenceNumber()).compareTo(o2.getSequenceNumber());
  /external/libcxx/test/std/experimental/optional/optional.comp_with_t/
greater.pass.cpp 38 constexpr O o2{1}; // engaged
42 static_assert ( !(o2 > T(1)), "" ); // equal
44 static_assert ( !(o2 > val), "" );
49 static_assert ( !(T(1) > o2), "" ); // equal
51 static_assert ( (val > o2), "" );
greater_equal.pass.cpp 38 constexpr O o2{1}; // engaged
42 static_assert ( (o2 >= T(1)), "" ); // equal
44 static_assert ( !(o2 >= val), "" );
49 static_assert ( (T(1) >= o2), "" ); // equal
51 static_assert ( (val >= o2), "" );
less_equal.pass.cpp 38 constexpr O o2{1}; // engaged
42 static_assert ( (o2 <= T(1)), "" ); // equal
44 static_assert ( (o2 <= val), "" );
49 static_assert ( (T(1) <= o2), "" ); // equal
51 static_assert ( !(val <= o2), "" );

Completed in 223 milliseconds

12 3 4 5 6 7 8 91011>>