Searched refs:std (Results 1 - 25 of 5076) sorted by relevance

1234567891011>>

/ndk/tests/build/issue52805-set_new_handler/jni/
H A Dnew_handler.cpp2 std::new_handler get_and_reset_new_handler()
4 return std::set_new_handler(0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
H A Dcstdint_typedefs.pass.cpp43 static_assert((std::is_same<std::atomic< std::int_least8_t>, std::atomic_int_least8_t>::value), "");
44 static_assert((std::is_same<std::atomic< std::uint_least8_t>, std::atomic_uint_least8_t>::value), "");
45 static_assert((std::is_same<std
[all...]
H A Dintegral_typedefs.pass.cpp32 static_assert((std::is_same<std::atomic<char>, std::atomic_char>::value), "");
33 static_assert((std::is_same<std::atomic<signed char>, std::atomic_schar>::value), "");
34 static_assert((std::is_same<std::atomic<unsigned char>, std::atomic_uchar>::value), "");
35 static_assert((std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.general/
H A Dtuple.smartptr.pass.cpp18 std::tuple<std::unique_ptr<char>> up;
19 std::tuple<std::shared_ptr<char>> sp;
20 std::tuple<std::weak_ptr <char>> wp;
21 // std::tuple<std::auto_ptr <char>> ap;
24 std::tuple<std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
H A Dtypes.pass.cpp33 std::locale l(LOCALE_en_US_UTF_8);
35 assert(std::has_facet<std::ctype_byname<char> >(l));
36 assert(&std::use_facet<std::ctype<char> >(l)
37 == &std::use_facet<std::ctype_byname<char> >(l));
40 assert(std::has_facet<std::ctype_byname<wchar_t> >(l));
41 assert(&std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/
H A Dcases.h20 std::complex<double> x[] =
22 std::complex<double>( 1.e-6, 1.e-6),
23 std::complex<double>(-1.e-6, 1.e-6),
24 std::complex<double>(-1.e-6, -1.e-6),
25 std::complex<double>( 1.e-6, -1.e-6),
27 std::complex<double>( 1.e+6, 1.e-6),
28 std::complex<double>(-1.e+6, 1.e-6),
29 std::complex<double>(-1.e+6, -1.e-6),
30 std::complex<double>( 1.e+6, -1.e-6),
32 std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/
H A Dstring.pass.cpp22 void* operator new(std::size_t s) throw(std::bad_alloc)
25 return std::malloc(s);
31 std::free(p);
34 void check(const std::locale& loc)
36 assert(std::has_facet<std::collate<char> >(loc));
37 assert(std::has_facet<std::collate<wchar_t> >(loc));
39 assert(std
[all...]
H A Dlocale_locale_cat.pass.cpp22 void* operator new(std::size_t s) throw(std::bad_alloc)
25 return std::malloc(s);
31 std::free(p);
34 void check(const std::locale& loc)
36 assert(std::has_facet<std::collate<char> >(loc));
37 assert(std::has_facet<std::collate<wchar_t> >(loc));
39 assert(std
[all...]
H A Dlocale_string_cat.pass.cpp22 void* operator new(std::size_t s) throw(std::bad_alloc)
25 return std::malloc(s);
31 std::free(p);
34 void check(const std::locale& loc)
36 assert(std::has_facet<std::collate<char> >(loc));
37 assert(std::has_facet<std::collate<wchar_t> >(loc));
39 assert(std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
H A Dminmax_init_list.pass.cpp22 assert((std::minmax({1, 2, 3}) == std::pair<int, int>(1, 3)));
23 assert((std::minmax({1, 3, 2}) == std::pair<int, int>(1, 3)));
24 assert((std::minmax({2, 1, 3}) == std::pair<int, int>(1, 3)));
25 assert((std::minmax({2, 3, 1}) == std::pair<int, int>(1, 3)));
26 assert((std::minmax({3, 1, 2}) == std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.objects/narrow.stream.objects/
H A Dcin.pass.cpp20 std::cout << "Hello World!\n";
22 std::cout << "Enter a number: ";
23 std::cin >> i;
24 std::cout << "The number is : " << i << '\n';
26 assert(std::cin.tie() == &std::cout);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
H A Dtypes.pass.cpp29 static_assert((!std::is_base_of<std::unary_function <int, int>,
30 std::function<int()> >::value), "");
31 static_assert((!std::is_base_of<std::binary_function<int, int, int>,
32 std::function<int()> >::value), "");
33 static_assert(( std::is_same< std::function<int()>::result_type,
36 static_assert(( std::is_base_of<std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.make/
H A Dmake_integer_seq.pass.cpp23 static_assert(std::is_same<std::make_integer_sequence<int, 0>, std::integer_sequence<int>>::value, "");
24 static_assert(std::is_same<std::make_integer_sequence<int, 1>, std::integer_sequence<int, 0>>::value, "");
25 static_assert(std::is_same<std::make_integer_sequence<int, 2>, std::integer_sequence<int, 0, 1>>::value, "");
26 static_assert(std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.synopsis/
H A Dhash_type_index.pass.cpp23 static_assert((std::is_base_of<std::unary_function<std::type_index, std::size_t>,
24 std::hash<std::type_index> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/
H A Dcontainer.fail.cpp23 std::back_insert_iterator<std::vector<int> > i = std::vector<int>();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/
H A Dcontainer.fail.cpp23 std::front_insert_iterator<std::list<int> > i = std::list<int>();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/
H A Dbinary.pass.cpp20 : public std::unary_function<int, char>
25 : public std::binary_function<char, int, double>
30 : public std::unary_function<int, int>,
31 public std::binary_function<char, int, double>
38 : public std::unary_function<int, int>,
39 public std::binary_function<char, int, double>
52 static_assert((!std::is_base_of<std::binary_function<int, char, int>,
53 std::reference_wrapper<functor1> >::value), "");
54 static_assert((std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
H A Dtypes.pass.cpp40 static_assert((std::is_same<std::multiset<int>::key_type, int>::value), "");
41 static_assert((std::is_same<std::multiset<int>::value_type, int>::value), "");
42 static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), "");
43 static_assert((std::is_same<std::multiset<int>::value_compare, std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
H A Dtypes.pass.cpp40 static_assert((std::is_same<std::set<int>::key_type, int>::value), "");
41 static_assert((std::is_same<std::set<int>::value_type, int>::value), "");
42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), "");
43 static_assert((std::is_same<std::set<int>::value_compare, std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/std.iterator.tags/
H A Dinput_iterator_tag.pass.cpp19 std::input_iterator_tag tag;
20 static_assert((!std::is_base_of<std::output_iterator_tag,
21 std::input_iterator_tag>::value), "");
H A Doutput_iterator_tag.pass.cpp19 std::output_iterator_tag tag;
20 static_assert((!std::is_base_of<std::input_iterator_tag,
21 std::output_iterator_tag>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/
H A Dtypes.pass.cpp27 std::locale l = std::locale::classic();
29 assert(std::has_facet<std::ctype<char> >(l));
30 const std::ctype<char>& f = std::use_facet<std::ctype<char> >(l);
32 (void)std::ctype<char>::id;
34 static_assert((std::is_same<std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/
H A Dtypes.pass.cpp27 std::locale l = std::locale::classic();
29 assert(std::has_facet<std::ctype<wchar_t> >(l));
30 const std::ctype<wchar_t>& f = std::use_facet<std::ctype<wchar_t> >(l);
32 (void)std::ctype<wchar_t>::id;
34 static_assert((std::is_same<std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/
H A Dtypes.pass.cpp26 static_assert((std::is_base_of<std::locale::facet, std::num_put<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::num_put<wchar_t> >::value), "");
28 static_assert((std::is_same<std::num_put<char>::char_type, char>::value), "");
29 static_assert((std::is_same<std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/
H A Dtypes.pass.cpp26 static_assert((std::is_base_of<std::locale::facet, std::num_get<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::num_get<wchar_t> >::value), "");
28 static_assert((std::is_same<std::num_get<char>::char_type, char>::value), "");
29 static_assert((std::is_same<std
[all...]

Completed in 428 milliseconds

1234567891011>>