HomeSort by relevance Sort by last modified time
    Searched refs:std (Results 51 - 75 of 52170) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
dtor.pass.cpp 29 static_assert(std::is_trivially_destructible<
30 std::tuple<> >::value, "");
31 static_assert(std::is_trivially_destructible<
32 std::tuple<void*> >::value, "");
33 static_assert(std::is_trivially_destructible<
34 std::tuple<int, float> >::value, "");
35 static_assert(!std::is_trivially_destructible<
36 std::tuple<std::string> >::value, "");
37 static_assert(!std::is_trivially_destructible
    [all...]
  /system/bt/osi/include/
hash_map_utils.h 33 std::unordered_map<std::string, std::string>
40 std::unordered_map<std::string, std::string>& map);
  /external/clang/test/Modules/Inputs/PR27041/
TSchemaHelper.h 1 namespace std { enum float_round_style { denorm_present }; } namespace
  /external/libcxx/test/libcxx/depr/exception.unexpected/
unexpected_disabled_cpp17.fail.cpp 19 using T = std::unexpected_handler; // expected-error {{no type named 'unexpected_handler' in namespace 'std'}}
20 std::unexpected(); // expected-error {{no member named 'unexpected' in namespace 'std'}}
21 std::get_unexpected(); // expected-error {{no member named 'get_unexpected' in namespace 'std'}}
22 std::set_unexpected(f); // expected-error {{no type named 'set_unexpected' in namespace 'std'}}
  /external/libcxx/test/libcxx/numerics/c.math/
fdelayed-template-parsing.sh.cpp 23 assert(std::isfinite(1.0));
24 assert(!std::isinf(1.0));
25 assert(!std::isnan(1.0));
28 using namespace std;
  /external/libcxx/test/std/containers/unord/unord.map/
allocator_mismatch.fail.cpp 17 std::unordered_map<int, int, std::hash<int>, std::less<int>, std::allocator<long> > m;
  /external/libcxx/test/std/containers/unord/unord.multimap/
allocator_mismatch.fail.cpp 17 std::unordered_multimap<int, int, std::hash<int>, std::less<int>, std::allocator<long> > m;
  /external/libcxx/test/std/containers/unord/unord.multiset/
allocator_mismatch.fail.cpp 17 std::unordered_multiset<int, std::hash<int>, std::less<int>, std::allocator<long> > v;
  /external/libcxx/test/std/containers/unord/unord.set/
allocator_mismatch.fail.cpp 17 std::unordered_set<int, std::hash<int>, std::less<int>, std::allocator<long> > v;
  /external/libcxx/test/std/input.output/iostreams.base/
is_error_code_enum_io_errc.pass.cpp 21 static_assert(std::is_error_code_enum <std::io_errc>::value, "");
23 static_assert(std::is_error_code_enum_v<std::io_errc>, "");
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
new_size_align.fail.cpp 13 // void* operator new[](std::size_t, std::align_val_t);
24 ::operator new[](4, std::align_val_t{4}); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
new_size_nothrow.fail.cpp 13 // void* operator new[](std::size_t, std::nothrow_t &);
24 ::operator new[](4, std::nothrow); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
new_size_align.fail.cpp 13 // void* operator new(std::size_t, std::align_val_t);
24 ::operator new(4, std::align_val_t{4}); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
new_size_nothrow.fail.cpp 13 // void* operator new(std::size_t, std::nothrow_t &);
24 ::operator new(4, std::nothrow); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/
types.pass.cpp 27 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);
33 (void)std::ctype<char>::id;
35 static_assert((std::is_same<std::ctype<char>::char_type, char>::value), "")
    [all...]
  /external/libcxx/test/std/re/re.alg/re.alg.search/
invert_neg_word_search.pass.cpp 26 assert(std::regex_search("HelloWorld", std::regex("[^\\W]")));
27 assert(std::regex_search("_", std::regex("[^\\W]")));
lookahead.pass.cpp 27 assert(!std::regex_search("ab", std::regex("(?=^)b")));
28 assert(!std::regex_search("ab", std::regex("a(?=^)b")));
  /external/libcxx/test/std/re/re.syn/
smatch.pass.cpp 20 static_assert((std::is_same<std::match_results<std::string::const_iterator>, std::smatch>::value), "");
sregex_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_iterator<std::string::const_iterator>, std::sregex_iterator>::value), "");
sregex_token_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_token_iterator<std::string::const_iterator>, std::sregex_token_iterator>::value), "");
ssub_match.pass.cpp 20 static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value), "");
wsmatch.pass.cpp 20 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 20 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 20 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");

Completed in 543 milliseconds

1 23 4 5 6 7 8 91011>>