Searched defs:rhs (Results 76 - 100 of 738) sorted by relevance

1234567891011>>

/external/libcxx/test/std/strings/string.view/string.view.comparison/
H A Dopge.string_view.pointer.pass.cpp13 // constexpr bool operator>=(const charT* lhs, basic_string_wiew<charT,traits> rhs);
15 // constexpr bool operator>=(basic_string_wiew<charT,traits> lhs, const charT* rhs);
25 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
27 assert((lhs >= rhs) == x);
28 assert((rhs >= lhs) == y);
H A Dopge.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
24 test(const S& lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs >= rhs) == x);
27 assert((rhs >= lhs) == y);
H A Dopgt.string_view.pointer.pass.cpp13 // bool operator>(const charT* lhs, basic_string_wiew<charT,traits> rhs);
15 // bool operator>(basic_string_wiew<charT,traits> lhs, const charT* rhs);
25 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
27 assert((lhs > rhs) == x);
28 assert((rhs > lhs) == y);
H A Dopgt.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
24 test(const S& lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs > rhs) == x);
27 assert((rhs > lhs) == y);
H A Dople.string_view.pointer.pass.cpp13 // constexpr bool operator<=(const charT* lhs, basic_string_wiew<charT,traits> rhs);
15 // constexpr bool operator<=(basic_string_wiew<charT,traits> lhs, const charT* rhs);
25 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
27 assert((lhs <= rhs) == x);
28 assert((rhs <= lhs) == y);
H A Dople.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
24 test(const S& lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs <= rhs) == x);
27 assert((rhs <= lhs) == y);
H A Doplt.string_view.pointer.pass.cpp13 // constexpr bool operator<(const charT* lhs, basic_string_wiew<charT,traits> rhs);
15 // constexpr bool operator<(basic_string_wiew<charT,traits> lhs, const charT* rhs);
25 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
27 assert((lhs < rhs) == x);
28 assert((rhs < lhs) == y);
H A Doplt.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
24 test(const S& lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs < rhs) == x);
27 assert((rhs < lhs) == y);
H A Dopne.string_view.pointer.pass.cpp13 // constexpr bool operator!=(basic_string_view<charT,traits> lhs, const charT* rhs);
15 // constexpr bool operator!=(const charT* lhs, basic_string_view<charT,traits> rhs);
25 test(S lhs, const typename S::value_type* rhs, bool x) argument
27 assert((lhs != rhs) == x);
28 assert((rhs != lhs) == x);
H A Dopne.string_view.string_view.pass.cpp14 // const basic_string_view<charT,traits> rhs);
24 test(S lhs, S rhs, bool x) argument
26 assert((lhs != rhs) == x);
27 assert((rhs != lhs) == x);
/external/libcxx/test/std/utilities/any/any.class/any.assign/
H A Dcopy.pass.cpp43 any const rhs(RHS(2));
49 lhs = rhs;
56 assertContains<RHS>(rhs, 2);
68 any const rhs(LHS(42));
73 lhs = rhs;
79 assertContains<LHS>(rhs, 42);
85 any const rhs; local
90 lhs = rhs;
96 assertEmpty(rhs);
143 [](any& lhs, any const& rhs) {
[all...]
/external/libcxx/test/std/utilities/optional/optional.comp_with_t/
H A Dequal.pass.cpp26 constexpr bool operator==(const X& lhs, const X& rhs) { argument
27 return lhs.i_ == rhs.i_;
H A Dgreater.pass.cpp26 constexpr bool operator>(const X& lhs, const X& rhs) { return lhs.i_ > rhs.i_; } argument
H A Dgreater_equal.pass.cpp26 constexpr bool operator>=(const X& lhs, const X& rhs) { argument
27 return lhs.i_ >= rhs.i_;
H A Dless_equal.pass.cpp26 constexpr bool operator<=(const X& lhs, const X& rhs) { argument
27 return lhs.i_ <= rhs.i_;
H A Dless_than.pass.cpp26 constexpr bool operator<(const X& lhs, const X& rhs) { return lhs.i_ < rhs.i_; } argument
H A Dnot_equal.pass.cpp26 constexpr bool operator!=(const X& lhs, const X& rhs) { argument
27 return lhs.i_ != rhs.i_;
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
H A Dcopy.pass.cpp13 // optional<T>& operator=(const optional<T>& rhs);
40 const optional<Tp> rhs; local
41 lhs = rhs;
42 return !lhs.has_value() && !rhs.has_value();
47 const optional<Tp> rhs(101);
48 lhs = rhs;
49 return lhs.has_value() && rhs.has_value() && *lhs == *rhs;
/external/libcxx/test/std/utilities/optional/optional.relops/
H A Dgreater_equal.pass.cpp25 constexpr bool operator>=(const X& lhs, const X& rhs) { argument
26 return lhs.i_ >= rhs.i_;
H A Dgreater_than.pass.cpp25 constexpr bool operator>(const X& lhs, const X& rhs) { return lhs.i_ > rhs.i_; } argument
H A Dless_equal.pass.cpp25 constexpr bool operator<=(const X& lhs, const X& rhs) { argument
26 return lhs.i_ <= rhs.i_;
H A Dless_than.pass.cpp25 constexpr bool operator<(const X& lhs, const X& rhs) { return lhs.i_ < rhs.i_; } argument
/external/libtextclassifier/util/java/
H A Dscoped_local_ref.h40 LocalRefDeleter& operator=(const LocalRefDeleter& rhs) { argument
43 TC_CHECK_EQ(env_, rhs.env_);
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dbinop_scaling_test.cc37 auto rhs = builder.ConstantR2FromArray2D<float>(*arhs); local
38 builder.Add(lhs, rhs);
53 auto rhs = builder.ConstantR2FromArray2D<float>(*arhs); local
54 builder.Add(lhs, rhs);
69 auto rhs = builder.ConstantR2FromArray2D<float>(*arhs); local
70 builder.Add(lhs, rhs);
85 auto rhs = builder.ConstantR2FromArray2D<float>(*arhs); local
86 builder.Add(lhs, rhs);
98 auto rhs = builder.ConstantR2<float>({ local
101 builder.Add(lhs, rhs);
133 auto rhs = builder.ConstantR0<int>(42); local
[all...]
/external/bsdiff/
H A Dextents_unittest.cc13 bool operator==(const struct ex_t& lhs, const struct ex_t& rhs) { argument
14 return lhs.off == rhs.off && lhs.len == rhs.len;

Completed in 334 milliseconds

1234567891011>>