HomeSort by relevance Sort by last modified time
    Searched refs:std (Results 101 - 125 of 35848) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
awk_oct.pass.cpp 22 using std::regex_constants::awk;
24 assert(std::regex_match("\4", std::regex{"\\4", awk}));
25 assert(std::regex_match("\41", std::regex{"\\41", awk}));
26 assert(std::regex_match("\141", std::regex{"\\141", awk}));
27 assert(std::regex_match("\1411", std::regex{"\\1411", awk}));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.syn/
smatch.pass.cpp 19 static_assert((std::is_same<std::match_results<std::string::const_iterator>, std::smatch>::value), "");
sregex_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_iterator<std::string::const_iterator>, std::sregex_iterator>::value), "");
sregex_token_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_token_iterator<std::string::const_iterator>, std::sregex_token_iterator>::value), "");
ssub_match.pass.cpp 19 static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value), "");
wsmatch.pass.cpp 19 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 19 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 19 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/
what.pass.cpp 30 std::future_error f(std::make_error_code(std::future_errc::broken_promise));
31 assert(std::strcmp(f.what(), "The associated promise has been destructed prior "
35 std::future_error f(std::make_error_code(std::future_errc::future_already_retrieved));
36 assert(std::strcmp(f.what(), "The future has already been retrieved from "
40 std::future_error f(std::make_error_code(std::future_errc::promise_already_satisfied))
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
types.pass.cpp 25 static_assert((std::is_same<std::lock_guard<std::mutex>::mutex_type,
26 std::mutex>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/
types.pass.cpp 25 static_assert((std::is_same<std::unique_lock<std::mutex>::mutex_type,
26 std::mutex>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.traits/
uses_allocator.pass.cpp 25 typedef std::tuple<> T;
26 static_assert((std::is_base_of<std::true_type,
27 std::uses_allocator<T, A>>::value), "");
30 typedef std::tuple<int> T;
31 static_assert((std::is_base_of<std::true_type,
32 std::uses_allocator<T, A>>::value), "");
35 typedef std::tuple<char, int> T;
36 static_assert((std::is_base_of<std::true_type
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/test/
test_1.cc 18 // #0 0x00069ae0 in std::(anonymous namespace)::default_terminate () at jni/../../../../gabi++/src/terminate.cc:57
19 // #1 0x00069e48 in std::terminate () at jni/../../../../gabi++/src/terminate.cc:123
22 // #4 0x00066e64 in __cxxabiv1::__cxa_throw (thrown_exc=0x18274c8, tinfo=0x7fa00, dest=0x69c10 <std::bad_cast::~bad_cast()>)
24 // #5 0x00010be0 in std::__1::locale::__imp::use_facet (this=0x80b28, id=28) at jni/../../../libcxx/src/locale.cpp:426
25 // #6 0x00010f50 in std::__1::locale::use_facet (this=0xbe980ab4, x=...) at jni/../../../libcxx/src/locale.cpp:568
26 // #7 0x00009e88 in use_facet<std::__1::ctype<char> > (__l=<optimized out>) at jni/../../../libcxx/include/__locale:172
28 // #9 std::__1::endl<char, std::__1::char_traits<char> > (__os=...) at jni/../../../libcxx/include/ostream:1181
30 // __pf=0x9e20 <std::__1::endl<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)>, this=0x8 (…)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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);
32 (void)std::ctype<char>::id;
34 static_assert((std::is_same<std::ctype<char>::char_type, char>::value), "")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale/locale.cons/
locale_char_pointer_cat.pass.cpp 26 void* operator new(std::size_t s) throw(std::bad_alloc)
29 return std::malloc(s);
35 std::free(p);
38 void check(const std::locale& loc)
40 assert(std::has_facet<std::collate<char> >(loc));
41 assert(std::has_facet<std::collate<wchar_t> >(loc));
43 assert(std::has_facet<std::ctype<char> >(loc))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.replace/
test3.pass.cpp 27 std::regex phone_numbers("\\d{3}-\\d{4}");
28 std::string phone_book("555-1234, 555-2345, 555-3456");
29 std::string r = std::regex_replace(phone_book, phone_numbers,
30 std::string("123-$&"));
34 std::regex phone_numbers("\\d{3}-\\d{4}");
35 std::string phone_book("555-1234, 555-2345, 555-3456");
36 std::string r = std::regex_replace(phone_book, phone_numbers,
37 std::string("123-$&")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.search/
lookahead.pass.cpp 27 assert(!std::regex_search("ab", std::regex("(?=^)b")));
28 assert(!std::regex_search("ab", std::regex("a(?=^)b")));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.construct/
awk_oct.pass.cpp 23 using std::regex_constants::awk;
25 assert(std::regex_match("\4", std::regex("\\4", awk)));
26 assert(std::regex_match("\41", std::regex("\\41", awk)));
27 assert(std::regex_match("\141", std::regex("\\141", awk)));
28 assert(std::regex_match("\1411", std::regex("\\1411", awk)));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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), "");

Completed in 307 milliseconds

1 2 3 45 6 7 8 91011>>