Home
last modified time | relevance | path

Searched refs:b2 (Results 1 – 25 of 35) sorted by relevance

12

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
Dice_eq.hpp16 template <int b1, int b2>
19 BOOST_STATIC_CONSTANT(bool, value = (b1 == b2));
22 template <int b1, int b2>
25 BOOST_STATIC_CONSTANT(bool, value = (b1 != b2));
29 template <int b1, int b2> bool const ice_eq<b1,b2>::value;
30 template <int b1, int b2> bool const ice_ne<b1,b2>::value;
Dice_or.hpp16 template <bool b1, bool b2, bool b3 = false, bool b4 = false, bool b5 = false, bool b6 = false, boo…
19 template <bool b1, bool b2, bool b3, bool b4, bool b5, bool b6, bool b7>
Dice_and.hpp17 template <bool b1, bool b2, bool b3 = true, bool b4 = true, bool b5 = true, bool b6 = true, bool b7…
20 template <bool b1, bool b2, bool b3, bool b4, bool b5, bool b6, bool b7>
/ndk/tests/device/test-stlport/unit/
Dbitset_test.cpp39 bitset<13U> b2(0x1111); in bitset1() local
42 CPPUNIT_ASSERT(b2.size() == 13); in bitset1()
43 CPPUNIT_ASSERT(b2 == 0x1111); in bitset1()
46 b1 = b1 ^ (b2 << 2); in bitset1()
50 CPPUNIT_ASSERT(b2.count() == 4); in bitset1()
53 size_t __pos = b2._Find_first(); in bitset1()
55 __pos = b2._Find_next(__pos); in bitset1()
57 __pos = b2._Find_next(__pos); in bitset1()
59 __pos = b2._Find_next(__pos); in bitset1()
61 __pos = b2._Find_next(__pos); in bitset1()
[all …]
Dfstream_test.cpp411 char b2[10] = { 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y' }; in seek() local
413 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 10 ) == 10 ); in seek()
414 CPPUNIT_CHECK( b2[9] == '0' ); in seek()
442 char b2[10] = { 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y' }; in seek() local
444 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 5 ) == 5 ); in seek()
445 CPPUNIT_CHECK( b2[4] == '5' ); in seek()
497 wchar_t b2[10] = { L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y' }; in seek() local
499 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 5 ) == 5 ); in seek()
500 CPPUNIT_CHECK( b2[4] == L'5' ); in seek()
/ndk/tests/device/test-gnustl-full/unit/
Dbitset_test.cpp39 bitset<13U> b2(0x1111); in bitset1() local
42 CPPUNIT_ASSERT(b2.size() == 13); in bitset1()
43 CPPUNIT_ASSERT(b2 == 0x1111); in bitset1()
46 b1 = b1 ^ (b2 << 2); in bitset1()
50 CPPUNIT_ASSERT(b2.count() == 4); in bitset1()
53 size_t __pos = b2._Find_first(); in bitset1()
55 __pos = b2._Find_next(__pos); in bitset1()
57 __pos = b2._Find_next(__pos); in bitset1()
59 __pos = b2._Find_next(__pos); in bitset1()
61 __pos = b2._Find_next(__pos); in bitset1()
[all …]
Dfstream_test.cpp411 char b2[10] = { 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y' }; in seek() local
413 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 10 ) == 10 ); in seek()
414 CPPUNIT_CHECK( b2[9] == '0' ); in seek()
442 char b2[10] = { 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y' }; in seek() local
444 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 5 ) == 5 ); in seek()
445 CPPUNIT_CHECK( b2[4] == '5' ); in seek()
497 wchar_t b2[10] = { L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y', L'y' }; in seek() local
499 CPPUNIT_ASSERT( s.rdbuf()->sgetn( b2, 5 ) == 5 ); in seek()
500 CPPUNIT_CHECK( b2[4] == L'5' ); in seek()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception/
Dexception.pass.cpp21 std::exception b2 = b; in main() local
22 b2 = b; in main()
23 const char* w = b2.what(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.cast/
Dbad_cast.pass.cpp23 std::bad_cast b2 = b; in main() local
24 b2 = b; in main()
25 const char* w = b2.what(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/bad.alloc/
Dbad_alloc.pass.cpp23 std::bad_alloc b2 = b; in main() local
24 b2 = b; in main()
25 const char* w = b2.what(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/new.badlength/
Dbad_array_new_length.pass.cpp23 std::bad_array_new_length b2 = b; in main() local
24 b2 = b; in main()
25 const char* w = b2.what(); in main()
Dbad_array_length.pass.cpp24 std::bad_array_length b2 = b; in main() local
25 b2 = b; in main()
26 const char* w = b2.what(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.typeid/
Dbad_typeid.pass.cpp23 std::bad_typeid b2 = b; in main() local
24 b2 = b; in main()
25 const char* w = b2.what(); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/bad.exception/
Dbad_exception.pass.cpp23 std::bad_exception b2 = b; in main() local
24 b2 = b; in main()
25 const char* w = b2.what(); in main()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
Dmem_fn_template.hpp264 template<class U, class B1, class B2> R call(U & u, T const *, B1 & b1, B2 & b2) const in BOOST_MEM_FN_NAME()
266 BOOST_MEM_FN_RETURN (u.*f_)(b1, b2); in BOOST_MEM_FN_NAME()
269 template<class U, class B1, class B2> R call(U & u, void const *, B1 & b1, B2 & b2) const in BOOST_MEM_FN_NAME()
271 BOOST_MEM_FN_RETURN (get_pointer(u)->*f_)(b1, b2); in BOOST_MEM_FN_NAME()
328 template<class U, class B1, class B2> R call(U & u, T const *, B1 & b1, B2 & b2) const in BOOST_MEM_FN_NAME()
330 BOOST_MEM_FN_RETURN (u.*f_)(b1, b2); in BOOST_MEM_FN_NAME()
333 template<class U, class B1, class B2> R call(U & u, void const *, B1 & b1, B2 & b2) const in BOOST_MEM_FN_NAME()
335 BOOST_MEM_FN_RETURN (get_pointer(u)->*f_)(b1, b2); in BOOST_MEM_FN_NAME()
377 …template<class U, class B1, class B2, class B3> R call(U & u, T const *, B1 & b1, B2 & b2, B3 & b3… in BOOST_MEM_FN_NAME()
379 BOOST_MEM_FN_RETURN (u.*f_)(b1, b2, b3); in BOOST_MEM_FN_NAME()
[all …]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
Dinherited_exception.cpp17 int b2; member
27 child.b2 = 11; in f1()
35 child.b2 = 11; in f2()
43 child->b2 = 11; in f3()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
Dcall_traits.hpp47 template <typename T, bool isp, bool b1, bool b2>
53 template <typename T, bool isp, bool b2>
54 struct ct_imp<T, isp, true, b2>
65 template <typename T, bool b1, bool b2>
66 struct ct_imp<T, true, b1, b2>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.mask.array/mask.array.assign/
Dmask_array.pass.cpp27 bool b2[N2] = {true, false, true, true, in main() local
32 std::valarray<bool> vb2(b2, N2); in main()
/ndk/tests/device/test-stlport_shared-exception/jni/
Doverload12_1.cpp20 B<1> b2 (a); in main() local
Ddyncast7.cpp16 const B& b2 = dynamic_cast<B&>(a); in x() local
/ndk/tests/device/test-stlport_static-exception/jni/
Doverload12_1.cpp20 B<1> b2 (a); in main() local
Ddyncast7.cpp16 const B& b2 = dynamic_cast<B&>(a); in x() local
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-tuple_test.cc153 tuple<int, double> a2, b2; in TEST() local
154 b2 = a2; in TEST()
155 EXPECT_EQ(0, get<0>(b2)); in TEST()
156 EXPECT_EQ(0.0, get<1>(b2)); in TEST()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_is_lock_free.pass.cpp30 bool b2 = std::atomic_is_lock_free(static_cast<const volatile A*>(&vt)); in test() local
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Deval.sed4 /cpu/!b2

12