/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/default.allocator/allocator.members/ |
max_size.pass.cpp | 12 // allocator: 24 const std::allocator<int> a;
|
/external/stlport/src/ |
locale_impl.h | 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; variable 39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; 53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; 72 basic_string<char, char_traits<char>, allocator<char> > name;
|
message_facets.h | 44 allocator<pair<_STLP_CONST nl_catd_type, locale> > > map_type; 79 allocator<pair<_STLP_CONST messages_base::catalog, nl_catd_type> > > map_type; 81 allocator<pair<_STLP_CONST nl_catd_type, messages_base::catalog> > > rmap_type;
|
/external/webkit/Source/WebCore/platform/text/cf/ |
StringImplCF.cpp | 53 return CFSTR("WTF::String-based allocator"); 109 // allocator that are mutable, and those typically are only created by callers who 110 // make a new string using the old string's allocator, such as some of the call 126 static CFAllocatorRef allocator() function in namespace:WTF::StringWrapperCFAllocator 128 static CFAllocatorRef allocator = create(); local 129 return allocator; 136 CFAllocatorRef allocator = (m_length && isMainThread()) ? StringWrapperCFAllocator::allocator() : 0; local 137 if (!allocator) 140 // Put pointer to the StringImpl in a global so the allocator can store it with the CFString [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
locale_impl.h | 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; variable 39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; 53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; 72 basic_string<char, char_traits<char>, allocator<char> > name;
|
message_facets.h | 44 allocator<pair<_STLP_CONST nl_catd_type, locale> > > map_type; 79 allocator<pair<_STLP_CONST messages_base::catalog, nl_catd_type> > > map_type; 81 allocator<pair<_STLP_CONST nl_catd_type, messages_base::catalog> > > rmap_type;
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_allocator_testlib.cc | 44 SecondaryAllocator> Allocator; 46 static Allocator allocator; member in namespace:__anon7117 57 allocator.SwallowCache(&cache); 63 allocator.Init(); 76 void *p = allocator.Allocate(&cache, size, 8); 85 allocator.Deallocate(&cache, p); 92 void *p = allocator.Allocate(&cache, size, 8, false); 104 p = allocator.Reallocate(&cache, p, size, 8); 114 void *p = allocator.Allocate(&cache, size, alignment) [all...] |
/external/libvpx/libvpx/nestegg/halloc/src/ |
halloc.c | 4 * Hierarchical memory allocator, 1.2.1 44 #define allocator halloc_allocator macro 62 /* set up default allocator */ 63 if (! allocator) 66 assert(allocator); 75 p = allocator(0, len + sizeof_hblock); 93 p = allocator(p, len + sizeof_hblock); 106 allocator(p, 0); 178 assert(! allocator); 190 allocator = realloc [all...] |
/external/clang/test/CodeGenCXX/ |
global-init.cpp | 55 struct allocator { allocator(); ~allocator(); }; struct in namespace:test2 56 struct A { A(const allocator &a = allocator()); ~A(); };
|
mangle-subst-std.cpp | 24 template<typename> struct allocator { }; struct in namespace:std 28 void f(std::allocator<char>, std::allocator<int>) { } 40 typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > string; 95 typedef basic_string<char, std::char_traits<char>, std::allocator<char> > not_string;
|
exceptions.cpp | 7 struct allocator { struct in namespace:test0 8 allocator(); 9 allocator(const allocator&); 10 ~allocator(); 17 throw allocator();
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
PoolAlloc.h | 15 // This header defines an allocator that can be used to efficiently 27 // Individual classes can use this allocator by supplying their own 30 // STL containers can use this allocator by using the pool_allocator 31 // class as the allocator (second) template argument. 220 // with everyone using the same global allocator. 232 // This STL compatible allocator is intended to be used as the allocator 256 pool_allocator() : allocator(GlobalPoolAllocator) { } 257 pool_allocator(TPoolAllocator& a) : allocator(a) { } 258 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { 297 TPoolAllocator& allocator; member in class:pool_allocator [all...] |
Compiler.cpp | 56 TScopedPoolAllocator(TPoolAllocator* allocator, bool pushPop) 57 : mAllocator(allocator), mPushPopAllocator(pushPop) { 73 allocator.push(); 74 SetGlobalPoolAllocator(&allocator); 79 allocator.popAll(); 94 TScopedPoolAllocator scopedAlloc(&allocator, false); 108 TScopedPoolAllocator scopedAlloc(&allocator, true);
|
/external/chromium/base/ |
stack_container.h | 14 // This allocator can be used with STL containers to provide a stack buffer 19 // STL likes to make copies of allocators, so the allocator itself can't hold 21 // StackAllocator::Source which contains the data. Copying the allocator 23 // based on our allocator will share the same stack buffer. 33 class StackAllocator : public std::allocator<T> { 35 typedef typename std::allocator<T>::pointer pointer; 36 typedef typename std::allocator<T>::size_type size_type; 38 // Backing store for the allocator. The container owner is responsible for 39 // maintaining this for as long as any containers using this allocator are 68 // Used by containers when they want to refer to an allocator of type U [all...] |
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
PODArena.h | 47 // The arena is configured with an allocator, which is responsible 49 class Allocator : public RefCounted<Allocator> { 54 virtual ~Allocator() { } 55 friend class WTF::RefCounted<Allocator>; 58 // The Arena's default allocator, which uses fastMalloc and 60 class FastMallocAllocator : public Allocator { 80 // Creates a new PODArena configured with the given Allocator. 81 static PassRefPtr<PODArena> create(PassRefPtr<Allocator> allocator) [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
httpportallocator.h | 99 HttpPortAllocator* allocator, 119 virtual HttpPortAllocator* allocator() { function in class:cricket::HttpPortAllocatorSession 121 BasicPortAllocatorSession::allocator());
|
/external/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_iostream_string.h | 18 * The only diference rely on the allocator used to instanciate the basic_string. 20 * that could occur when requesting a big float ouput for instance. This allocator 41 class __iostring_allocator : public allocator<_CharT> { 47 typedef allocator<_CharT> _Base; 76 * As the __iostring_allocator allocator will only be used in the basic_string implementation 99 * A consequence of the non standard conformant allocator is that a string using it 100 * must always be presized to the allocator static buffer size because the basic_string implementation 101 * do not manage an allocator returning always the same memory adress as long as the 132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
|
/frameworks/native/include/binder/ |
MemoryDealer.h | 50 SimpleBestFitAllocator* allocator() const;
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.cons/ |
default.pass.cpp | 31 std::list<int> l((std::allocator<int>()));
|
default_stack_alloc.pass.cpp | 28 std::list<int> l((std::allocator<int>()));
|