Searched defs:rhs (Results 26 - 50 of 501) sorted by relevance

1234567891011>>

/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dstring_pointer.pass.cpp14 // operator+(const basic_string<charT,traits,Allocator>& lhs, const charT* rhs);
18 // operator+(basic_string<charT,traits,Allocator>&& lhs, const charT* rhs);
28 test0(const S& lhs, const typename S::value_type* rhs, const S& x) argument
30 assert(lhs + rhs == x);
37 test1(S&& lhs, const typename S::value_type* rhs, const S& x) argument
39 assert(move(lhs) + rhs == x);
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_operator==/
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);
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt/
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);
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt=/
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);
/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);
/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);
/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/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);
24 test(S lhs, const typename S::value_type* rhs, bool x) argument
26 assert((lhs == rhs) == x);
27 assert((rhs == lhs) == x);
H A Dopeq.string_view.string_view.pass.cpp14 // const basic_string_view<charT,traits> rhs);
23 test(S lhs, S rhs, bool x) argument
25 assert((lhs == rhs) == x);
26 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);
24 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs >= rhs) == x);
27 assert((rhs >= lhs) == y);
H A Dopge.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
23 test(const S& lhs, const S& rhs, bool x, bool y) argument
25 assert((lhs >= rhs) == x);
26 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);
24 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs > rhs) == x);
27 assert((rhs > lhs) == y);
H A Dopgt.string_view.string_view.pass.cpp14 // basic_string_view<charT,traits> rhs);
23 test(const S& lhs, const S& rhs, bool x, bool y) argument
25 assert((lhs > rhs) == x);
26 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);
24 test(const typename S::value_type* lhs, const S& rhs, bool x, bool y) argument
26 assert((lhs <= rhs) == x);
27 assert((rhs <= lhs) == y);

Completed in 1539 milliseconds

1234567891011>>