Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 25 of 74) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.ops/
Dcomplex_equals_scalar.pass.cpp25 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
27 static_assert(!(lhs == rhs), ""); in test_constexpr()
30 constexpr std::complex<T> lhs(1.5, 0); in test_constexpr() local
32 static_assert(!(lhs == rhs), ""); in test_constexpr()
35 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
37 static_assert(!(lhs == rhs), ""); in test_constexpr()
40 constexpr std::complex<T> lhs(1.5, 0); in test_constexpr() local
42 static_assert( (lhs == rhs), ""); in test_constexpr()
52 std::complex<T> lhs(1.5, 2.5); in test() local
54 assert(!(lhs == rhs)); in test()
[all …]
Dscalar_not_equals_complex.pass.cpp25 constexpr T lhs(-2.5); in test_constexpr() local
27 static_assert (lhs != rhs, ""); in test_constexpr()
30 constexpr T lhs(-2.5); in test_constexpr() local
32 static_assert (lhs != rhs, ""); in test_constexpr()
35 constexpr T lhs(1.5); in test_constexpr() local
37 static_assert (lhs != rhs, ""); in test_constexpr()
40 constexpr T lhs(1.5); in test_constexpr() local
42 static_assert (!(lhs != rhs), ""); in test_constexpr()
52 T lhs(-2.5); in test() local
54 assert (lhs != rhs); in test()
[all …]
Dscalar_equals_complex.pass.cpp25 constexpr T lhs(-2.5); in test_constexpr() local
27 static_assert(!(lhs == rhs), ""); in test_constexpr()
30 constexpr T lhs(-2.5); in test_constexpr() local
32 static_assert(!(lhs == rhs), ""); in test_constexpr()
35 constexpr T lhs(1.5); in test_constexpr() local
37 static_assert(!(lhs == rhs), ""); in test_constexpr()
40 constexpr T lhs(1.5); in test_constexpr() local
42 static_assert(lhs == rhs, ""); in test_constexpr()
52 T lhs(-2.5); in test() local
54 assert(!(lhs == rhs)); in test()
[all …]
Dcomplex_not_equals_scalar.pass.cpp25 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
27 static_assert(lhs != rhs, ""); in test_constexpr()
30 constexpr std::complex<T> lhs(1.5, 0); in test_constexpr() local
32 static_assert(lhs != rhs, ""); in test_constexpr()
35 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
37 static_assert(lhs != rhs, ""); in test_constexpr()
40 constexpr std::complex<T> lhs(1.5, 0); in test_constexpr() local
42 static_assert( !(lhs != rhs), ""); in test_constexpr()
52 std::complex<T> lhs(1.5, 2.5); in test() local
54 assert(lhs != rhs); in test()
[all …]
Dcomplex_equals_complex.pass.cpp25 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
27 static_assert( !(lhs == rhs), ""); in test_constexpr()
30 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
32 static_assert(lhs == rhs, ""); in test_constexpr()
42 std::complex<T> lhs(1.5, 2.5); in test() local
44 assert( !(lhs == rhs)); in test()
47 std::complex<T> lhs(1.5, 2.5); in test() local
49 assert(lhs == rhs); in test()
Dcomplex_not_equals_complex.pass.cpp25 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
27 static_assert(lhs != rhs, ""); in test_constexpr()
30 constexpr std::complex<T> lhs(1.5, 2.5); in test_constexpr() local
32 static_assert(!(lhs != rhs), "" ); in test_constexpr()
43 std::complex<T> lhs(1.5, 2.5); in test() local
45 assert(lhs != rhs); in test()
48 std::complex<T> lhs(1.5, 2.5); in test() local
50 assert(!(lhs != rhs)); in test()
Dscalar_minus_complex.pass.cpp21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs - rhs == x); in test()
31 T lhs(1.5); in test() local
34 test(lhs, rhs, x); in test()
37 T lhs(1.5); in test() local
40 test(lhs, rhs, x); in test()
Dcomplex_plus_scalar.pass.cpp21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) in test() argument
23 assert(lhs + rhs == x); in test()
31 std::complex<T> lhs(1.5, 2.5); in test() local
34 test(lhs, rhs, x); in test()
37 std::complex<T> lhs(1.5, -2.5); in test() local
40 test(lhs, rhs, x); in test()
Dcomplex_minus_scalar.pass.cpp21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) in test() argument
23 assert(lhs - rhs == x); in test()
31 std::complex<T> lhs(1.5, 2.5); in test() local
34 test(lhs, rhs, x); in test()
37 std::complex<T> lhs(1.5, -2.5); in test() local
40 test(lhs, rhs, x); in test()
Dscalar_plus_complex.pass.cpp21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs + rhs == x); in test()
31 T lhs(1.5); in test() local
34 test(lhs, rhs, x); in test()
37 T lhs(1.5); in test() local
40 test(lhs, rhs, x); in test()
Dcomplex_plus_complex.pass.cpp21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs + rhs == x); in test()
31 std::complex<T> lhs(1.5, 2.5); in test() local
34 test(lhs, rhs, x); in test()
37 std::complex<T> lhs(1.5, -2.5); in test() local
40 test(lhs, rhs, x); in test()
Dcomplex_minus_complex.pass.cpp21 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs - rhs == x); in test()
31 std::complex<T> lhs(1.5, 2.5); in test() local
34 test(lhs, rhs, x); in test()
37 std::complex<T> lhs(1.5, -2.5); in test() local
40 test(lhs, rhs, x); in test()
Dscalar_times_complex.pass.cpp21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs * rhs == x); in test()
30 T lhs(1.5); in test() local
33 test(lhs, rhs, x); in test()
Dcomplex_divide_scalar.pass.cpp21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) in test() argument
23 assert(lhs / rhs == x); in test()
30 std::complex<T> lhs(-4.0, 7.5); in test() local
33 test(lhs, rhs, x); in test()
Dcomplex_times_scalar.pass.cpp21 test(const std::complex<T>& lhs, const T& rhs, std::complex<T> x) in test() argument
23 assert(lhs * rhs == x); in test()
30 std::complex<T> lhs(1.5, 2.5); in test() local
33 test(lhs, rhs, x); in test()
Dscalar_divide_complex.pass.cpp21 test(const T& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
23 assert(lhs / rhs == x); in test()
30 T lhs(-8.5); in test() local
33 test(lhs, rhs, x); in test()
Dcomplex_times_complex.pass.cpp23 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
25 assert(lhs * rhs == x); in test()
32 std::complex<T> lhs(1.5, 2.5); in test() local
35 test(lhs, rhs, x); in test()
Dcomplex_divide_complex.pass.cpp23 test(const std::complex<T>& lhs, const std::complex<T>& rhs, std::complex<T> x) in test() argument
25 assert(lhs / rhs == x); in test()
32 std::complex<T> lhs(-4.0, 7.5); in test() local
35 test(lhs, rhs, x); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
Dprivate_constructor.hpp24 bool operator < ( const PrivateConstructor &lhs, const PrivateConstructor &rhs ) { return lhs.get()… in operator <() argument
26 bool operator < ( const PrivateConstructor &lhs, int rhs ) { return lhs.get() < rhs; } in operator <() argument
27 bool operator < ( int lhs, const PrivateConstructor &rhs ) { return lhs < rhs.get(); } in operator <() argument
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-string.h102 static bool CStringEquals(const char* lhs, const char* rhs);
116 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
124 static bool CaseInsensitiveCStringEquals(const char* lhs,
139 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op+/
Dstring_char.pass.cpp27 test0(const S& lhs, typename S::value_type rhs, const S& x) in test0() argument
29 assert(lhs + rhs == x); in test0()
36 test1(S&& lhs, typename S::value_type rhs, const S& x) in test1() argument
38 assert(move(lhs) + rhs == x); in test1()
Dchar_string.pass.cpp27 test0(typename S::value_type lhs, const S& rhs, const S& x) in test0() argument
29 assert(lhs + rhs == x); in test0()
36 test1(typename S::value_type lhs, S&& rhs, const S& x) in test1() argument
38 assert(lhs + move(rhs) == x); in test1()
Dstring_string.pass.cpp39 test0(const S& lhs, const S& rhs, const S& x) in test0() argument
41 assert(lhs + rhs == x); in test0()
48 test1(S&& lhs, const S& rhs, const S& x) in test1() argument
50 assert(move(lhs) + rhs == x); in test1()
55 test2(const S& lhs, S&& rhs, const S& x) in test2() argument
57 assert(lhs + move(rhs) == x); in test2()
62 test3(S&& lhs, S&& rhs, const S& x) in test3() argument
64 assert(move(lhs) + move(rhs) == x); in test3()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dclass_properties.hpp95 operator op( PropertyType const& lhs, class_property<PropertyType> const& rhs ) \
97 return lhs op rhs.get(); \
101 operator op( class_property<PropertyType> const& lhs, PropertyType const& rhs ) \
103 return lhs.get() op rhs; \
107 operator op( class_property<PropertyType> const& lhs, \
110 return lhs.get() op rhs.get(); \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
Dvalue_init.hpp173 void swap ( initialized<T> & lhs, initialized<T> & rhs ) in swap() argument
175 lhs.swap(rhs) ; in swap()
233 void swap ( value_initialized<T> & lhs, value_initialized<T> & rhs ) in swap() argument
235 lhs.swap(rhs) ; in swap()

123