Searched defs:rhs (Results 51 - 75 of 610) sorted by relevance

1234567891011>>

/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt/
H A Dpointer_string.pass.cpp13 // bool operator<(const charT* lhs, const basic_string<charT,traits,Allocator>& rhs);
22 test(const typename S::value_type* lhs, const S& rhs, bool x) argument
24 assert((lhs < rhs) == x);
H A Dstring_pointer.pass.cpp13 // bool operator<(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs);
22 test(const S& lhs, const typename S::value_type* rhs, bool x) argument
24 assert((lhs < rhs) == x);
H A Dstring_string.pass.cpp14 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const S& rhs, bool x) argument
25 assert((lhs < rhs) == x);
H A Dstring_string_view.pass.cpp21 test(const S& lhs, SV rhs, bool x) argument
23 assert((lhs < rhs) == x);
H A Dstring_view_string.pass.cpp21 test(SV lhs, const S& rhs, bool x) argument
23 assert((lhs < rhs) == x);
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt=/
H A Dpointer_string.pass.cpp13 // bool operator<=(const charT* lhs, const basic_string<charT,traits,Allocator>& rhs);
22 test(const typename S::value_type* lhs, const S& rhs, bool x) argument
24 assert((lhs <= rhs) == x);
H A Dstring_pointer.pass.cpp13 // bool operator<=(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs);
22 test(const S& lhs, const typename S::value_type* rhs, bool x) argument
24 assert((lhs <= rhs) == x);
H A Dstring_string.pass.cpp14 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const S& rhs, bool x) argument
25 assert((lhs <= rhs) == x);
H A Dstring_string_view.pass.cpp21 test(const S& lhs, SV rhs, bool x) argument
23 assert((lhs <= rhs) == x);
H A Dstring_view_string.pass.cpp21 test(SV lhs, const S& rhs, bool x) argument
23 assert((lhs <= rhs) == x);
/external/libcxx/test/std/strings/string.view/string.view.comparison/
H A Dopeq.string_view.string.pass.cpp13 // bool operator==(const charT* lhs, const basic_string<charT,traits> rhs);
15 // bool operator==(const basic_string_view<charT,traits> lhs, const CharT* rhs);
23 test(const std::string &lhs, S rhs, bool x) argument
25 assert((lhs == rhs) == x);
26 assert((rhs == lhs) == x);
H A Dopge.string_view.string.pass.cpp14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y) argument
25 assert((lhs >= rhs) == x);
26 assert((rhs >= lhs) == y);
H A Dopgt.string_view.string.pass.cpp14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y) argument
25 assert((lhs > rhs) == x);
26 assert((rhs > lhs) == y);
H A Dople.string_view.string.pass.cpp14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y) argument
25 assert((lhs <= rhs) == x);
26 assert((rhs <= lhs) == y);
H A Doplt.string_view.string.pass.cpp14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y) argument
25 assert((lhs < rhs) == x);
26 assert((rhs < lhs) == y);
H A Dopne.string_view.string.pass.cpp13 // bool operator!=(const basic_string<charT, traits, Allocator> &lhs, basic_string_view<charT,traits> rhs);
15 // bool operator!=(basic_string_view<charT,traits> lhs, const basic_string<charT, traits, Allocator> &rhs);
23 test(const std::string &lhs, S rhs, bool x) argument
25 assert((lhs != rhs) == x);
26 assert((rhs != lhs) == x);
/external/webrtc/webrtc/modules/audio_processing/beamformer/
H A Darray_util_unittest.cc23 bool operator==(const Point& lhs, const Point& rhs) { argument
24 return lhs.x() == rhs.x() && lhs.y() == rhs.y() && lhs.z() == rhs.z();
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockPixelUtils.java19 public static PointF sub(PointF lhs, PointF rhs) { argument
/external/clang/test/Sema/
H A Darm64-neon-args.c12 float32x4_t test_vmlsq_lane(float32x4_t accum, float32x4_t lhs, float32x2_t rhs) { argument
13 return vmlsq_lane_f32(accum, lhs, rhs, 1);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRawCollationKey.java91 * @param rhs the RawCollationKey to compare to.
93 * greater than rhs.
96 public int compareTo(RawCollationKey rhs) { argument
97 int result = super.compareTo(rhs);
/external/libcxx/test/std/experimental/any/any.class/any.assign/
H A Dcopy.pass.cpp36 any const rhs(RHS(2));
42 lhs = rhs;
49 assertContains<RHS>(rhs, 2);
61 any const rhs(LHS(42));
66 lhs = rhs;
72 assertContains<LHS>(rhs, 42);
78 any const rhs; local
83 lhs = rhs;
89 assertEmpty(rhs);
136 [](any& lhs, any const& rhs) {
[all...]
/external/libcxx/test/std/experimental/string.view/string.view.comparison/
H A Dopeq.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 Dopeq.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);
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);

Completed in 3037 milliseconds

1234567891011>>