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

1234567891011>>

/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dchar_string.pass.cpp14 // operator+(charT lhs, const basic_string<charT,traits,Allocator>& rhs);
18 // operator+(charT lhs, basic_string<charT,traits,Allocator>&& rhs);
28 void test0(typename S::value_type lhs, const S& rhs, const S& x) { argument
29 assert(lhs + rhs == x);
34 void test1(typename S::value_type lhs, S&& rhs, const S& x) { argument
35 assert(lhs + move(rhs) == x);
H A Dpointer_string.pass.cpp14 // operator+(const charT* lhs, const basic_string<charT,traits,Allocator>& rhs);
18 // operator+(const charT* lhs, basic_string<charT,traits,Allocator>&& rhs);
28 void test0(const typename S::value_type* lhs, const S& rhs, const S& x) { argument
29 assert(lhs + rhs == x);
34 void test1(const typename S::value_type* lhs, S&& rhs, const S& x) { argument
35 assert(lhs + move(rhs) == x);
H A Dstring_char.pass.cpp14 // operator+(const basic_string<charT,traits,Allocator>& lhs, charT rhs);
18 // operator+(basic_string<charT,traits,Allocator>&& lhs, charT rhs);
28 void test0(const S& lhs, typename S::value_type rhs, const S& x) { argument
29 assert(lhs + rhs == x);
34 void test1(S&& lhs, typename S::value_type rhs, const S& x) { argument
35 assert(move(lhs) + rhs == x);
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 void test0(const S& lhs, const typename S::value_type* rhs, const S& x) { argument
29 assert(lhs + rhs == x);
34 void test1(S&& lhs, const typename S::value_type* rhs, const S& x) { argument
35 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);
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_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);
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_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);
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/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);

Completed in 3105 milliseconds

1234567891011>>