/external/libcxx/test/std/experimental/memory/memory.resource.aliases/ |
header_regex_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 28 // }}} // namespace std::experimental::pmr 34 namespace pmr = std::experimental::pmr; 38 using StdMR = std::match_results<Iter, pmr::polymorphic_allocator<std::sub_match<Iter>>>; 39 using PmrMR = pmr::match_results<Iter>; 47 test_match_result_typedef<const char*, pmr::cmatch>(); 48 test_match_result_typedef<const wchar_t*, pmr::wcmatch>(); 49 test_match_result_typedef<pmr::string::const_iterator, pmr::smatch>() [all...] |
header_string_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 26 // }}} // namespace std::experimental::pmr 35 namespace pmr = std::experimental::pmr; 40 pmr::polymorphic_allocator<Char>>; 41 using PmrStr = pmr::basic_string<Char>; 49 pmr::polymorphic_allocator<Char>>; 50 using PmrStr = pmr::basic_string<Char, Traits>; 57 test_string_typedef<char, pmr::string>(); 58 test_string_typedef<wchar_t, pmr::wstring>() [all...] |
header_unordered_map_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 25 // }}} // namespace std::experimental::pmr 32 namespace pmr = std::experimental::pmr; 50 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>; 51 using PmrMap = pmr::unordered_map<K, V>; 55 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>; 56 using PmrMap = pmr::unordered_map<K, V, MH>; 60 using StdMap = std::unordered_map<K, V, MH, MP, pmr::polymorphic_allocator<P>>; 61 using PmrMap = pmr::unordered_map<K, V, MH, MP> [all...] |
header_unordered_set_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 25 // }}} // namespace std::experimental::pmr 32 namespace pmr = std::experimental::pmr; 48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; 49 using PmrSet = pmr::unordered_set<V>; 53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; 54 using PmrSet = pmr::unordered_set<V, MH>; 58 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; 59 using PmrSet = pmr::unordered_set<V, MH, MP> [all...] |
header_map_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 25 // }}} // namespace std::experimental::pmr 32 namespace pmr = std::experimental::pmr; 42 using StdMap = std::map<K, V, DC, pmr::polymorphic_allocator<P>>; 43 using PmrMap = pmr::map<K, V>; 47 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; 48 using PmrMap = pmr::map<K, V, OC>; 52 pmr::map<int, int> m; 53 assert(m.get_allocator().resource() == pmr::get_default_resource()) [all...] |
header_set_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 25 // }}} // namespace std::experimental::pmr 32 namespace pmr = std::experimental::pmr; 40 using StdSet = std::set<V, DC, pmr::polymorphic_allocator<V>>; 41 using PmrSet = pmr::set<V>; 45 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; 46 using PmrSet = pmr::set<V, OC>; 50 pmr::set<int> m; 51 assert(m.get_allocator().resource() == pmr::get_default_resource()) [all...] |
header_deque_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 21 // }}} // namespace std::experimental::pmr 28 namespace pmr = std::experimental::pmr; 32 using StdDeque = std::deque<int, pmr::polymorphic_allocator<int>>; 33 using PmrDeque = pmr::deque<int>; 36 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_forward_list_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 21 // }}} // namespace std::experimental::pmr 28 namespace pmr = std::experimental::pmr; 32 using StdForwardList = std::forward_list<int, pmr::polymorphic_allocator<int>>; 33 using PmrForwardList = pmr::forward_list<int>; 36 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_list_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 21 // }}} // namespace std::experimental::pmr 28 namespace pmr = std::experimental::pmr; 32 using StdList = std::list<int, pmr::polymorphic_allocator<int>>; 33 using PmrList = pmr::list<int>; 36 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_vector_synop.pass.cpp | 16 // namespace std { namespace experimental { namespace pmr { 21 // }}} // namespace std::experimental::pmr 28 namespace pmr = std::experimental::pmr; 32 using StdVector = std::vector<int, pmr::polymorphic_allocator<int>>; 33 using PmrVector = pmr::vector<int>; 36 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.aliases/ |
header_regex_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 27 // }}} // namespace std::experimental::pmr 33 namespace pmr = std::experimental::pmr; 37 using StdMR = std::match_results<Iter, pmr::polymorphic_allocator<std::sub_match<Iter>>>; 38 using PmrMR = pmr::match_results<Iter>; 46 test_match_result_typedef<const char*, pmr::cmatch>(); 47 test_match_result_typedef<const wchar_t*, pmr::wcmatch>(); 48 test_match_result_typedef<pmr::string::const_iterator, pmr::smatch>() [all...] |
header_string_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 25 // }}} // namespace std::experimental::pmr 34 namespace pmr = std::experimental::pmr; 39 pmr::polymorphic_allocator<Char>>; 40 using PmrStr = pmr::basic_string<Char>; 48 pmr::polymorphic_allocator<Char>>; 49 using PmrStr = pmr::basic_string<Char, Traits>; 56 test_string_typedef<char, pmr::string>(); 57 test_string_typedef<wchar_t, pmr::wstring>() [all...] |
header_unordered_map_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 24 // }}} // namespace std::experimental::pmr 31 namespace pmr = std::experimental::pmr; 49 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>; 50 using PmrMap = pmr::unordered_map<K, V>; 54 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>; 55 using PmrMap = pmr::unordered_map<K, V, MH>; 59 using StdMap = std::unordered_map<K, V, MH, MP, pmr::polymorphic_allocator<P>>; 60 using PmrMap = pmr::unordered_map<K, V, MH, MP> [all...] |
header_unordered_set_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 24 // }}} // namespace std::experimental::pmr 31 namespace pmr = std::experimental::pmr; 47 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; 48 using PmrSet = pmr::unordered_set<V>; 52 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; 53 using PmrSet = pmr::unordered_set<V, MH>; 57 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; 58 using PmrSet = pmr::unordered_set<V, MH, MP> [all...] |
header_map_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 24 // }}} // namespace std::experimental::pmr 31 namespace pmr = std::experimental::pmr; 41 using StdMap = std::map<K, V, DC, pmr::polymorphic_allocator<P>>; 42 using PmrMap = pmr::map<K, V>; 46 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; 47 using PmrMap = pmr::map<K, V, OC>; 51 pmr::map<int, int> m; 52 assert(m.get_allocator().resource() == pmr::get_default_resource()) [all...] |
header_set_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 24 // }}} // namespace std::experimental::pmr 31 namespace pmr = std::experimental::pmr; 39 using StdSet = std::set<V, DC, pmr::polymorphic_allocator<V>>; 40 using PmrSet = pmr::set<V>; 44 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; 45 using PmrSet = pmr::set<V, OC>; 49 pmr::set<int> m; 50 assert(m.get_allocator().resource() == pmr::get_default_resource()) [all...] |
header_deque_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 20 // }}} // namespace std::experimental::pmr 27 namespace pmr = std::experimental::pmr; 31 using StdDeque = std::deque<int, pmr::polymorphic_allocator<int>>; 32 using PmrDeque = pmr::deque<int>; 35 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_forward_list_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 20 // }}} // namespace std::experimental::pmr 27 namespace pmr = std::experimental::pmr; 31 using StdForwardList = std::forward_list<int, pmr::polymorphic_allocator<int>>; 32 using PmrForwardList = pmr::forward_list<int>; 35 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_list_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 20 // }}} // namespace std::experimental::pmr 27 namespace pmr = std::experimental::pmr; 31 using StdList = std::list<int, pmr::polymorphic_allocator<int>>; 32 using PmrList = pmr::list<int>; 35 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
header_vector_synop.pass.cpp | 15 // namespace std { namespace experimental { namespace pmr { 20 // }}} // namespace std::experimental::pmr 27 namespace pmr = std::experimental::pmr; 31 using StdVector = std::vector<int, pmr::polymorphic_allocator<int>>; 32 using PmrVector = pmr::vector<int>; 35 assert(d.get_allocator().resource() == pmr::get_default_resource());
|
/external/libcxx/include/experimental/ |
string | 20 namespace pmr { 22 // basic_string using polymorphic allocator in namespace pmr 28 // std::experimental::pmr 34 } // namespace pmr
|
/prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/experimental/ |
string | 20 namespace pmr { 22 // basic_string using polymorphic allocator in namespace pmr 28 // std::experimental::pmr 34 } // namespace pmr
|
/prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/experimental/ |
string | 20 namespace pmr { 22 // basic_string using polymorphic allocator in namespace pmr 28 // std::experimental::pmr 34 } // namespace pmr
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/experimental/ |
string | 20 namespace pmr { 22 // basic_string using polymorphic allocator in namespace pmr 28 // std::experimental::pmr 34 } // namespace pmr
|
/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/ |
construct_piecewise_pair.pass.cpp | 34 namespace ex = std::experimental::pmr; 89 using PMR = ex::memory_resource*; 94 test_pmr_uses_allocator<PMR>(t1, t1); 102 test_pmr_uses_allocator<PMR>(t1, t2); 103 test_pmr_uses_allocator<PMR>(t2, t1); 114 test_pmr_uses_allocator<PMR>( t1, std::move(t2)); 115 test_pmr_uses_allocator<PMR>(std::move(t2), t1); 129 test_pmr_uses_allocator<PMR>( t1, std::move(t2)); 130 test_pmr_uses_allocator<PMR>(std::move(t2), t1);
|