Searched defs:o1 (Results 1 - 25 of 210) sorted by relevance

123456789

/external/libcxx/test/std/experimental/optional/optional.nullops/
H A Dequal.pass.cpp28 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), "");
H A Dgreater.pass.cpp28 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), "");
H A Dgreater_equal.pass.cpp28 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), "");
H A Dless_equal.pass.cpp31 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), "");
H A Dless_than.pass.cpp28 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), "");
H A Dnot_equal.pass.cpp28 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), "");
/external/libcxx/test/std/utilities/optional/optional.nullops/
H A Dequal.pass.cpp28 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), "");
H A Dgreater.pass.cpp28 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), "");
H A Dgreater_equal.pass.cpp28 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), "");
H A Dless_equal.pass.cpp29 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), "");
H A Dless_than.pass.cpp28 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), "");
H A Dnot_equal.pass.cpp28 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), "");
/external/apache-http/src/org/apache/commons/codec/
H A DStringEncoderComparator.java68 * @param o1 the object to compare
73 public int compare(Object o1, Object o2) { argument
78 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1);
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
H A DStartPositionComparator.java25 public int compare(ASTNode o1, ASTNode o2) { argument
26 return Integer.compare(o1.getStartPosition(), o2.getStartPosition());
/external/libcxx/test/std/experimental/optional/optional.comp_with_t/
H A Dequal.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( !(o1 == T(1)), "" );
47 static_assert ( !(T(1) == o1), "" );
H A Dgreater.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( !(o1 > T(1)), "" );
48 static_assert ( (T(1) > o1), "" );
H A Dgreater_equal.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( !(o1 >= T(1)), "" );
48 static_assert ( (T(1) >= o1), "" );
H A Dless_equal.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( (o1 <= T(1)), "" );
48 static_assert ( !(T(1) <= o1), "" );
H A Dless_than.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( (o1 < T(1)), "" );
48 static_assert ( !(T(1) < o1), "" );
H A Dnot_equal.pass.cpp37 constexpr O o1; // disengaged local
41 static_assert ( (o1 != T(1)), "" );
47 static_assert ( (T(1) != o1), "" );
/external/libcxx/test/std/experimental/optional/optional.relops/
H A Dequal.pass.cpp37 constexpr O o1; // disengaged local
43 static_assert ( o1 == o1 , "" );
44 static_assert ( o1 == o2 , "" );
45 static_assert ( !(o1 == o3), "" );
46 static_assert ( !(o1 == o4), "" );
47 static_assert ( !(o1 == o5), "" );
49 static_assert ( o2 == o1 , "" );
55 static_assert ( !(o3 == o1), "" );
61 static_assert ( !(o4 == o1), "" );
[all...]
H A Dgreater_equal.pass.cpp34 constexpr O o1; // disengaged local
40 static_assert ( (o1 >= o1), "" );
41 static_assert ( (o1 >= o2), "" );
42 static_assert ( !(o1 >= o3), "" );
43 static_assert ( !(o1 >= o4), "" );
44 static_assert ( !(o1 >= o5), "" );
46 static_assert ( (o2 >= o1), "" );
52 static_assert ( (o3 >= o1), "" );
58 static_assert ( (o4 >= o1), "" );
[all...]
H A Dgreater_than.pass.cpp34 constexpr O o1; // disengaged local
40 static_assert ( !(o1 > o1), "" );
41 static_assert ( !(o1 > o2), "" );
42 static_assert ( !(o1 > o3), "" );
43 static_assert ( !(o1 > o4), "" );
44 static_assert ( !(o1 > o5), "" );
46 static_assert ( !(o2 > o1), "" );
52 static_assert ( (o3 > o1), "" );
58 static_assert ( (o4 > o1), "" );
[all...]
H A Dless_equal.pass.cpp34 constexpr O o1; // disengaged local
40 static_assert ( (o1 <= o1), "" );
41 static_assert ( (o1 <= o2), "" );
42 static_assert ( (o1 <= o3), "" );
43 static_assert ( (o1 <= o4), "" );
44 static_assert ( (o1 <= o5), "" );
46 static_assert ( (o2 <= o1), "" );
52 static_assert ( !(o3 <= o1), "" );
58 static_assert ( !(o4 <= o1), "" );
[all...]
H A Dless_than.pass.cpp34 constexpr O o1; // disengaged local
40 static_assert ( !(o1 < o1), "" );
41 static_assert ( !(o1 < o2), "" );
42 static_assert ( (o1 < o3), "" );
43 static_assert ( (o1 < o4), "" );
44 static_assert ( (o1 < o5), "" );
46 static_assert ( !(o2 < o1), "" );
52 static_assert ( !(o3 < o1), "" );
58 static_assert ( !(o4 < o1), "" );
[all...]

Completed in 1070 milliseconds

123456789