| /external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.construction/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.construction/Android.mk 19 test_name := utilities/memory/allocator.uses/allocator.uses.construction/tested_elsewhere
|
| /external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/Android.mk 19 test_name := utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator
|
| uses_allocator.pass.cpp | 28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), ""); 29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), ""); 30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), ""); 31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
|
| /external/libcxx/test/utilities/memory/default.allocator/allocator.globals/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/default.allocator/allocator.globals/Android.mk 19 test_name := utilities/memory/default.allocator/allocator.globals/eq
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/ |
| uses_allocator.pass.cpp | 28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), ""); 29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), ""); 30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), ""); 31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
|
| /prebuilts/misc/common/swig/include/2.0.11/std/ |
| std_alloc.i | 4 * @brief The "standard" allocator, as per [20.4]. 9 * The underlying allocator behaves as follows. 18 class allocator 32 allocator() throw(); 34 allocator(const allocator&) throw(); 36 allocator(const allocator<_Tp1>&) throw(); 37 ~allocator() throw(); 65 class allocator<void [all...] |
| /external/clang/test/SemaTemplate/ |
| exception-spec-crash.cpp | 9 class allocator; 12 class allocator<char> {}; class 29 basic_string<allocator<char> > vectorFoo_;
|
| /external/libcxx/test/containers/sequences/deque/deque.cons/ |
| size_value.pass.cpp | 20 template <class T, class Allocator> 24 typedef std::deque<T, Allocator> C; 35 test<int, std::allocator<int> >(0, 5); 36 test<int, std::allocator<int> >(1, 10); 37 test<int, std::allocator<int> >(10, 11); 38 test<int, std::allocator<int> >(1023, -11); 39 test<int, std::allocator<int> >(1024, 25); 40 test<int, std::allocator<int> >(1025, 0); 41 test<int, std::allocator<int> >(2047, 110); 42 test<int, std::allocator<int> >(2048, -500) [all...] |
| /external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.cnstr/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.cnstr/Android.mk 19 test_name := utilities/allocator.adaptor/allocator.adaptor.cnstr/default 23 test_name := utilities/allocator.adaptor/allocator.adaptor.cnstr/converting_move 27 test_name := utilities/allocator.adaptor/allocator.adaptor.cnstr/allocs 31 test_name := utilities/allocator.adaptor/allocator.adaptor.cnstr/cop [all...] |
| /external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/Android.mk 19 test_name := utilities/allocator.adaptor/allocator.adaptor.types/inner_allocator_type 23 test_name := utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_copy_assignment 27 test_name := utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_swap 31 test_name := utilities/allocator.adaptor/allocator.adaptor.types/allocator_pointer [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
| size_value.pass.cpp | 20 template <class T, class Allocator> 24 typedef std::deque<T, Allocator> C; 35 test<int, std::allocator<int> >(0, 5); 36 test<int, std::allocator<int> >(1, 10); 37 test<int, std::allocator<int> >(10, 11); 38 test<int, std::allocator<int> >(1023, -11); 39 test<int, std::allocator<int> >(1024, 25); 40 test<int, std::allocator<int> >(1025, 0); 41 test<int, std::allocator<int> >(2047, 110); 42 test<int, std::allocator<int> >(2048, -500) [all...] |
| /bionic/linker/tests/ |
| linker_allocator_test.cpp | 35 * this one has size below allocator cap which is 2*sizeof(void*) 52 LinkerAllocator<test_struct_nominal> allocator; local 54 test_struct_nominal* ptr1 = allocator.alloc(); 56 test_struct_nominal* ptr2 = allocator.alloc(); 63 allocator.free(ptr1); 64 allocator.free(ptr2); 68 LinkerAllocator<test_struct_small> allocator; local 70 char* ptr1 = reinterpret_cast<char*>(allocator.alloc()); 71 char* ptr2 = reinterpret_cast<char*>(allocator.alloc()); 79 LinkerAllocator<test_struct_larger> allocator; local 102 LinkerAllocator<test_struct_larger> allocator; local [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
| allocator.h | 38 /** @file bits/allocator.h 46 #include <bits/c++allocator.h> // Define the base class to std::allocator. 61 /// allocator<void> specialization. 63 class allocator<void> class 74 { typedef allocator<_Tp1> other; }; 78 // 2103. std::allocator propagate_on_container_move_assignment 84 * @brief The @a standard allocator, as per [20.4]. 92 class allocator: public __allocator_base<_Tp> class in inherits:__allocator_base 105 { typedef allocator<_Tp1> other; } 113 allocator() throw() { } function in class:allocator 115 allocator(const allocator& __a) throw() function in class:allocator 119 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
| allocator.h | 38 /** @file bits/allocator.h 46 #include <bits/c++allocator.h> // Define the base class to std::allocator. 61 /// allocator<void> specialization. 63 class allocator<void> class 74 { typedef allocator<_Tp1> other; }; 78 // 2103. std::allocator propagate_on_container_move_assignment 84 * @brief The @a standard allocator, as per [20.4]. 92 class allocator: public __allocator_base<_Tp> class in inherits:__allocator_base 105 { typedef allocator<_Tp1> other; } 113 allocator() throw() { } function in class:allocator 115 allocator(const allocator& __a) throw() function in class:allocator 119 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator [all...] |
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
| allocator.h | 38 /** @file bits/allocator.h 46 #include <bits/c++allocator.h> // Define the base class to std::allocator. 61 /// allocator<void> specialization. 63 class allocator<void> class 74 { typedef allocator<_Tp1> other; }; 78 // 2103. std::allocator propagate_on_container_move_assignment 84 * @brief The @a standard allocator, as per [20.4]. 92 class allocator: public __allocator_base<_Tp> class in inherits:__allocator_base 105 { typedef allocator<_Tp1> other; } 113 allocator() throw() { } function in class:allocator 115 allocator(const allocator& __a) throw() function in class:allocator 119 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator [all...] |
| /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
| allocator.h | 38 /** @file bits/allocator.h 46 #include <bits/c++allocator.h> // Define the base class to std::allocator. 61 /// allocator<void> specialization. 63 class allocator<void> class 74 { typedef allocator<_Tp1> other; }; 78 // 2103. std::allocator propagate_on_container_move_assignment 84 * @brief The @a standard allocator, as per [20.4]. 92 class allocator: public __allocator_base<_Tp> class in inherits:__allocator_base 105 { typedef allocator<_Tp1> other; } 113 allocator() throw() { } function in class:allocator 115 allocator(const allocator& __a) throw() function in class:allocator 119 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator [all...] |
| /art/compiler/optimizing/ |
| parallel_move_test.cc | 27 explicit TestParallelMoveResolver(ArenaAllocator* allocator) : ParallelMoveResolver(allocator) {} 67 static HParallelMove* BuildParallelMove(ArenaAllocator* allocator, 70 HParallelMove* moves = new (allocator) HParallelMove(allocator); 72 moves->AddMove(new (allocator) MoveOperands( 81 ArenaAllocator allocator(&pool); 84 TestParallelMoveResolver resolver(&allocator); 86 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves))); 91 TestParallelMoveResolver resolver(&allocator); [all...] |
| graph_test.cc | 28 static HBasicBlock* createIfBlock(HGraph* graph, ArenaAllocator* allocator) { 29 HBasicBlock* if_block = new (allocator) HBasicBlock(graph); 31 HInstruction* instr = new (allocator) HIntConstant(4); 33 HInstruction* equal = new (allocator) HEqual(instr, instr); 35 instr = new (allocator) HIf(equal); 40 static HBasicBlock* createGotoBlock(HGraph* graph, ArenaAllocator* allocator) { 41 HBasicBlock* block = new (allocator) HBasicBlock(graph); 43 HInstruction* got = new (allocator) HGoto(); 48 static HBasicBlock* createReturnBlock(HGraph* graph, ArenaAllocator* allocator) { 49 HBasicBlock* block = new (allocator) HBasicBlock(graph) [all...] |
| /external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/Android.mk 19 test_name := utilities/allocator.adaptor/allocator.adaptor.members/construct 23 test_name := utilities/allocator.adaptor/allocator.adaptor.members/inner_allocator 27 test_name := utilities/allocator.adaptor/allocator.adaptor.members/allocate_size 31 test_name := utilities/allocator.adaptor/allocator.adaptor.members/allocate_size_hin [all...] |
| /external/stlport/src/ |
| dll_main.cpp | 114 template class _STLP_CLASS_DECLSPEC allocator<_STLP_PRIV _Slist_node_base*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 118 allocator<_Slist_node_base*> >; 120 allocator<_Slist_node_base*> >; 127 allocator<_Slist_node_base*> >; 132 allocator<_STLP_PRIV _Slist_node_base*> >; 137 template class _STLP_CLASS_DECLSPEC allocator<locale::facet*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 140 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >; 148 template class _STLP_CLASS_DECLSPEC __construct_checker<_STLP_PRIV _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 149 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > 158 template class _STLP_CLASS_DECLSPEC allocator<void*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 161 template class _STLP_CLASS_DECLSPEC allocator<_VoidPtr_Node>; variable in typeref:class:_STLP_CLASS_DECLSPEC 167 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(vector)<void*, allocator<void*> >; variable 172 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(list)<void*, allocator<void*> >; variable 177 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(slist)<void*, allocator<void*> >; variable 183 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(deque)<void*, allocator<void*> >; variable [all...] |
| /ndk/sources/cxx-stl/stlport/src/ |
| dll_main.cpp | 114 template class _STLP_CLASS_DECLSPEC allocator<_STLP_PRIV _Slist_node_base*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 118 allocator<_Slist_node_base*> >; 120 allocator<_Slist_node_base*> >; 127 allocator<_Slist_node_base*> >; 132 allocator<_STLP_PRIV _Slist_node_base*> >; 137 template class _STLP_CLASS_DECLSPEC allocator<locale::facet*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 140 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >; 148 template class _STLP_CLASS_DECLSPEC __construct_checker<_STLP_PRIV _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 149 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > 158 template class _STLP_CLASS_DECLSPEC allocator<void*>; variable in typeref:class:_STLP_CLASS_DECLSPEC 161 template class _STLP_CLASS_DECLSPEC allocator<_VoidPtr_Node>; variable in typeref:class:_STLP_CLASS_DECLSPEC 167 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(vector)<void*, allocator<void*> >; variable 172 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(list)<void*, allocator<void*> >; variable 177 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(slist)<void*, allocator<void*> >; variable 183 template class _STLP_CLASS_DECLSPEC _STLP_PTR_IMPL_NAME(deque)<void*, allocator<void*> >; variable [all...] |
| /external/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
| Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/default.allocator/allocator.members/Android.mk 19 test_name := utilities/memory/default.allocator/allocator.members/address 23 test_name := utilities/memory/default.allocator/allocator.members/construct 27 test_name := utilities/memory/default.allocator/allocator.members/allocate 31 test_name := utilities/memory/default.allocator/allocator.members/max_siz [all...] |
| /external/stlport/stlport/stl/ |
| _string_fwd.h | 31 class _Alloc = allocator<_CharT> > 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| _string_fwd.h | 31 class _Alloc = allocator<_CharT> > 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
| /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
| _string_fwd.h | 31 class _Alloc = allocator<_CharT> > 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|