Searched defs:allocator (Results 1 - 25 of 151) sorted by relevance

1234567

/external/chromium/base/allocator/
H A Dallocator_shim.h9 namespace allocator { namespace in namespace:base
18 } // namespace allocator.
/external/chromium_org/base/allocator/
H A Dallocator_extension.h10 #include "base/allocator/allocator_extension_thunks.h"
15 namespace allocator { namespace in namespace:base
17 // Request the allocator to report value of its waste memory size.
26 // Request that the allocator print a human-readable description of the current
27 // state of the allocator into a null-terminated string in the memory segment
34 // Request that the allocator release any free memory it knows about to the
39 // These settings allow specifying a callback used to implement the allocator
41 // once. These will typically called in an allocator-specific initialization
56 } // namespace allocator
H A Dallocator_shim.h11 namespace allocator { namespace in namespace:base
24 } // namespace allocator.
H A Dallocator_extension_thunks.h11 namespace allocator { namespace in namespace:base
15 // new allocator extension from a specific allocator implementation to base.
33 } // namespace allocator
H A Dallocator_extension.cc5 #include "base/allocator/allocator_extension.h"
10 namespace allocator { namespace in namespace:base
55 } // namespace allocator
H A Dallocator_extension_thunks.cc5 #include "base/allocator/allocator_extension_thunks.h"
10 namespace allocator { namespace in namespace:base
51 } // namespace allocator
/external/clang/test/CodeCompletion/
H A Dtemplates.cpp3 class allocator { class in namespace:std
8 template<typename T, typename Alloc = std::allocator<T> >
21 // CHECK-CC1: allocator<<#typename T#>>
/external/chromium_org/third_party/WebKit/public/web/
H A DWebMemoryUsageInfo.h34 WebMemoryUsageInfo(const WebString& allocator, size_t allocated) argument
35 : allocatorName(allocator)
/external/clang/test/SemaCXX/
H A DPR9902.cpp24 struct allocator {}; struct
28 allocator_traits<allocator<char>>::rebind_alloc<int> a;
/external/llvm/unittests/ADT/
H A DIntervalMapTest.cpp21 UUMap::Allocator allocator; local
22 UUMap map(allocator);
55 UUMap::Allocator allocator; local
56 UUMap map(allocator);
142 UUMap::Allocator allocator; local
143 UUMap map(allocator);
212 UUMap::Allocator allocator; local
213 UUMap map(allocator);
326 UUMap::Allocator allocator; local
327 UUMap map(allocator);
469 UUMap::Allocator allocator; local
545 UUMap::Allocator allocator; local
569 UUMap::Allocator allocator; local
613 UUMap::Allocator allocator; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dlpad-linetable.cpp14 class allocator class in namespace:std
19 { typedef allocator<_Tp1> other; };
20 ~allocator() throw() { }
37 template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
H A Deh.cpp93 template <class T> struct allocator { struct in namespace:test6
94 ~allocator() throw() { }
98 allocator<int> a;
/external/chromium_org/gpu/command_buffer/common/
H A Did_allocator_test.cc25 IdAllocator *allocator = id_allocator(); local
27 EXPECT_FALSE(allocator->InUse(1));
30 ResourceId id1 = allocator->AllocateID();
31 EXPECT_TRUE(allocator->InUse(id1));
35 ResourceId id2 = allocator->AllocateID();
36 EXPECT_TRUE(allocator->InUse(id2));
40 allocator->FreeID(id1);
41 EXPECT_FALSE(allocator->InUse(id1));
44 allocator->FreeID(id2);
45 EXPECT_FALSE(allocator
50 IdAllocator *allocator = id_allocator(); local
74 IdAllocator* allocator = id_allocator(); local
92 IdAllocator* allocator = id_allocator(); local
104 IdAllocator* allocator = id_allocator(); local
114 IdAllocator* allocator = id_allocator(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODRedBlackTreeTest.cpp45 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
48 RefPtr<PODIntegerArena> arena = PODIntegerArena::create(allocator);
53 EXPECT_GT(allocator->numRegions(), 1);
55 EXPECT_EQ(allocator->numRegions(), 0);
H A DPODArenaTest.cpp67 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
68 RefPtr<PODArena> arena = PODArena::create(allocator);
72 EXPECT_GT(allocator->numRegions(), 1);
78 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
80 RefPtr<PODArena> arena = PODArena::create(allocator);
83 EXPECT_GT(allocator->numRegions(), 0);
85 EXPECT_TRUE(allocator->isEmpty());
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dfakeportallocatorfactory.h28 // This file defines a fake port allocator factory used for testing.
42 talk_base::RefCountedObject<FakePortAllocatorFactory>* allocator = local
44 return allocator;
H A Dportallocatorfactory.cc45 talk_base::RefCountedObject<PortAllocatorFactory>* allocator = local
47 return allocator;
70 scoped_ptr<cricket::BasicPortAllocator> allocator(
82 allocator->AddRelay(relay_server);
89 return allocator.release();
/external/chromium_org/third_party/skia/src/core/
H A DSkScaledImageCache.h157 SkBitmap::Allocator* allocator() const { return fAllocator; }; function in class:SkScaledImageCache
175 // the allocator is NULL or one that matches discardables
/external/chromium_org/v8/src/
H A Dhydrogen-dce.cc58 HeapStringAllocator allocator; local
59 StringStream stream(&allocator);
H A Dlist.h53 explicit List(AllocationPolicy allocator = AllocationPolicy()) {
54 Initialize(0, allocator);
57 AllocationPolicy allocator = AllocationPolicy())) {
58 Initialize(capacity, allocator);
70 AllocationPolicy allocator = AllocationPolicy())) {
71 return allocator.New(static_cast<int>(size));
78 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { argument
104 void Add(const T& element, AllocationPolicy allocator = AllocationPolicy());
108 AllocationPolicy allocator = AllocationPolicy());
112 AllocationPolicy allocator
[all...]
H A Dv8.h108 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) { argument
110 array_buffer_allocator_ = allocator;
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_external_bitmap_impl.cc18 SharedMemoryAllocationFunction allocator) {
19 g_memory_allocator = allocator;
17 SetSharedMemoryAllocationFunction( SharedMemoryAllocationFunction allocator) argument
/external/skia/src/core/
H A DSkScaledImageCache.h157 SkBitmap::Allocator* allocator() const { return fAllocator; }; function in class:SkScaledImageCache
175 // the allocator is NULL or one that matches discardables
/external/stlport/src/
H A Dlocale_impl.h35 _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;
H A Dstring.cpp33 template class _STLP_CLASS_DECLSPEC allocator<char>; variable in typeref:class:_STLP_CLASS_DECLSPEC
37 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<char*, char, allocator<char> >;
38 template class _STLP_CLASS_DECLSPEC _String_base<char, allocator<char> >;
43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, allocator<char> > >;
55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >;
63 template class _STLP_CLASS_DECLSPEC allocator<wchar_t>; variable in typeref:class:_STLP_CLASS_DECLSPEC
67 template class _STLP_CLASS_DECLSPEC _String_base<wchar_t, allocator<wchar_t> >;
72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
73 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_
[all...]

Completed in 4434 milliseconds

1234567