HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 51 - 75 of 1347) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/6/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/7/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/8/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/9/sources/cxx-stl/EH/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;
  /external/chromium_org/third_party/skia/tests/
GrAllocatorTest.cpp 26 static void check_allocator_helper(GrTAllocator<C>* allocator, int cnt, int popCnt,
29 // Adds cnt items to the allocator, tests the cnts and iterators, pops popCnt items and checks
30 // again. Finally it resets the allocator and checks again.
31 static void check_allocator(GrTAllocator<C>* allocator, int cnt, int popCnt,
33 SkASSERT(allocator);
34 SkASSERT(allocator->empty());
38 allocator->push_back(C(i));
40 allocator->push_back() = C(i);
43 check_allocator_helper(allocator, cnt, popCnt, reporter);
44 allocator->reset()
    [all...]
NameAllocatorTest.cpp 137 GrGLNameAllocator allocator(1, 1 + range);
139 allocator.allocateName();
141 REPORTER_ASSERT(reporter, 0 == allocator.allocateName());
144 allocator.free(allocator.firstName() - 1);
145 allocator.free(allocator.endName());
146 REPORTER_ASSERT(reporter, 0 == allocator.allocateName());
150 allocator.free(i);
154 allocator.free(i)
    [all...]
  /external/stlport/src/
string.cpp 33 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_t> > >
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
string.cpp 33 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_t> > >
    [all...]
  /art/compiler/utils/
allocation.h 28 void* operator new(size_t size, ArenaAllocator* allocator) {
29 return allocator->Alloc(size, kArenaAllocMisc);
  /external/clang/test/CodeCompletion/
templates.cpp 3 class allocator { class in namespace:std
8 template<typename T, typename Alloc = std::allocator<T> >
21 // CHECK-CC1: allocator<<#typename T#>>
  /external/libcxx/test/utilities/allocator.adaptor/
Android.mk 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/Android.mk
19 test_name := utilities/allocator.adaptor/types
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
container_fwd.hpp 52 ,class Allocator = std::allocator<T> >
57 ,class Allocator = std::allocator<T> >
62 ,class Allocator = std::allocator<T> >
67 ,class Allocator = std::allocator<T> >
72 ,class Allocator = std::allocator<T>
    [all...]
  /external/chromium_org/v8/src/
list.h 32 explicit List(AllocationPolicy allocator = AllocationPolicy()) {
33 Initialize(0, allocator);
36 AllocationPolicy allocator = AllocationPolicy())) {
37 Initialize(capacity, allocator);
49 AllocationPolicy allocator = AllocationPolicy())) {
50 return allocator.New(static_cast<int>(size));
57 INLINE(void operator delete(void* p, AllocationPolicy allocator)) {
87 void Add(const T& element, AllocationPolicy allocator = AllocationPolicy());
91 AllocationPolicy allocator = AllocationPolicy());
95 AllocationPolicy allocator = AllocationPolicy())
    [all...]
  /art/compiler/optimizing/
register_allocator_test.cc 31 // Note: the register allocator tests rely on the fact that constants have live
36 ArenaAllocator allocator(&pool);
37 HGraphBuilder builder(&allocator);
43 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, kX86);
46 RegisterAllocator register_allocator(&allocator, codegen, liveness);
52 * Unit testing of RegisterAllocator::ValidateIntervals. Register allocator
57 ArenaAllocator allocator(&pool);
58 HGraph* graph = new (&allocator) HGraph(&allocator);
59 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, kX86)
    [all...]
optimizing_unit_test.h 41 ArenaAllocator* allocator,
43 LiveInterval* interval = new (allocator) LiveInterval(allocator, Primitive::kPrimInt);
live_interval_test.cc 27 ArenaAllocator allocator(&pool);
31 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
37 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
44 ArenaAllocator allocator(&pool);
48 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
58 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
72 ArenaAllocator allocator(&pool);
76 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
86 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
100 ArenaAllocator allocator(&pool)
    [all...]
  /external/skia/tests/
NameAllocatorTest.cpp 137 GrGLNameAllocator allocator(1, 1 + range);
139 allocator.allocateName();
141 REPORTER_ASSERT(reporter, 0 == allocator.allocateName());
144 allocator.free(allocator.firstName() - 1);
145 allocator.free(allocator.endName());
146 REPORTER_ASSERT(reporter, 0 == allocator.allocateName());
150 allocator.free(i);
154 allocator.free(i)
    [all...]
  /external/chromium_org/base/allocator/
allocator_shim.cc 5 #include "base/allocator/allocator_shim.h"
8 #include "base/allocator/allocator_extension_thunks.h"
27 TCMALLOC, // TCMalloc is the default allocator.
28 WINHEAP, // Windows Heap (standard Windows allocator).
30 } Allocator;
32 // This is the default allocator. This value can be changed at startup by
35 // allocator.
39 static Allocator allocator = WINHEAP; variable
41 static Allocator allocator = TCMALLOC variable
339 namespace allocator { namespace in namespace:base
    [all...]
allocator_shim.h 11 namespace allocator { namespace in namespace:base
24 } // namespace allocator.
  /external/chromium_org/skia/ext/
image_operations.h 105 SkBitmap::Allocator* allocator = NULL);
112 SkBitmap::Allocator* allocator = NULL);
122 SkBitmap::Allocator* allocator = NULL);
128 SkBitmap::Allocator* allocator = NULL);
  /external/clang/test/Analysis/
NewDelete-custom.cpp 10 void *allocator(std::size_t size);
12 void *operator new[](std::size_t size) throw() { return allocator(size); }
13 void *operator new(std::size_t size) throw() { return allocator(size); }
14 void *operator new(std::size_t size, std::nothrow_t& nothrow) throw() { return allocator(size); }
  /external/libcxx/test/utilities/memory/allocator.traits/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/allocator.traits/Android.mk
19 test_name := utilities/memory/allocator.traits/rebind_traits
23 test_name := utilities/memory/allocator.traits/allocator_type
27 test_name := utilities/memory/allocator.traits/value_type
  /external/libcxx/test/utilities/memory/default.allocator/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/default.allocator/Android.mk
19 test_name := utilities/memory/default.allocator/allocator_types
23 test_name := utilities/memory/default.allocator/allocator_pointers
27 test_name := utilities/memory/default.allocator/allocator_void
  /external/clang/test/SemaCXX/
PR9902.cpp 24 struct allocator {}; struct
28 allocator_traits<allocator<char>>::rebind_alloc<int> a;
  /external/libcxx/test/utilities/allocator.adaptor/scoped.adaptor.operators/
Android.mk 17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/scoped.adaptor.operators/Android.mk
19 test_name := utilities/allocator.adaptor/scoped.adaptor.operators/eq

Completed in 1360 milliseconds

1 23 4 5 6 7 8 91011>>