HomeSort by relevance Sort by last modified time
    Searched defs:allocator (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium/base/allocator/
allocator_shim.h 9 namespace allocator { namespace in namespace:base
18 } // namespace allocator.
  /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/clang/test/SemaCXX/
PR9902.cpp 23 struct allocator {}; struct
27 allocator_traits<allocator<char>>::rebind_alloc<int> a;
  /external/llvm/unittests/ADT/
IntervalMapTest.cpp 21 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
326 UUMap::Allocator allocator; local
469 UUMap::Allocator allocator; local
545 UUMap::Allocator allocator; local
569 UUMap::Allocator allocator; local
613 UUMap::Allocator allocator; local
    [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...]
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;
  /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...]
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;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
allocator.h 39 /** @file allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
60 class allocator;
62 /// allocator<void> specialization.
64 class allocator<void> class
75 { typedef allocator<_Tp1> other; };
79 * @brief The "standard" allocator, as per [20.4].
86 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
99 { typedef allocator<_Tp1> other; }
101 allocator() throw() { } function in class:allocator
103 allocator(const allocator& __a) throw() function in class:allocator
107 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
allocator.h 39 /** @file allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
60 class allocator;
62 /// allocator<void> specialization.
64 class allocator<void> class
75 { typedef allocator<_Tp1> other; };
79 * @brief The "standard" allocator, as per [20.4].
86 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
99 { typedef allocator<_Tp1> other; }
101 allocator() throw() { } function in class:allocator
103 allocator(const allocator& __a) throw() function in class:allocator
107 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
allocator.h 39 /** @file allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
60 class allocator;
62 /// allocator<void> specialization.
64 class allocator<void> class
75 { typedef allocator<_Tp1> other; };
79 * @brief The "standard" allocator, as per [20.4].
86 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
99 { typedef allocator<_Tp1> other; }
101 allocator() throw() { } function in class:allocator
103 allocator(const allocator& __a) throw() function in class:allocator
107 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
PODRedBlackTreeTest.cpp 46 RefPtr<TrackedAllocator> allocator = TrackedAllocator::create(); local
48 RefPtr<PODArena> arena = PODArena::create(allocator);
53 EXPECT_GT(allocator->numRegions(), 1);
55 EXPECT_EQ(allocator->numRegions(), 0);
PODArenaTest.cpp 67 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());
  /hardware/msm7k/libgralloc-qsd8k/
pmemalloc.h 45 * A PMEM allocator that allocates the entire pmem memory from the kernel and
46 * then uses a user-space allocator to suballocate from that. This requires
56 class Allocator {
58 virtual ~Allocator();
83 PmemUserspaceAllocator(Deps& deps, Deps::Allocator& allocator, const char* pmemdev);
110 Deps::Allocator& allocator; member in class:PmemUserspaceAllocator
120 * A PMEM allocator that allocates each individual allocation from the kernel
121 * (using the kernel's allocator). This requires the kernel driver for th
    [all...]
  /external/clang/test/CodeGenCXX/
eh.cpp 93 template <class T> struct allocator { struct in namespace:test6
94 ~allocator() throw() { }
98 allocator<int> 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;
2007-09-10-RecursiveTypeResolution.cpp 28 template < typename _Tp > struct allocator struct in namespace:std
50 template < typename _Tp, typename _Alloc = std::allocator < _Tp > >
exceptions.cpp 7 struct allocator { struct in namespace:test0
8 allocator();
9 allocator(const allocator&);
10 ~allocator();
17 throw allocator();
global-init.cpp 55 struct allocator { allocator(); ~allocator(); }; struct in namespace:test2
56 struct A { A(const allocator &a = allocator()); ~A(); };
  /external/qemu/elff/
elf_file.h 85 /* Gets DWARF objects allocator for this instance. */
86 class ElfAllocator* allocator() const { function in class:ElfFile
519 /* DWARF objects allocator for this instance. */
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ShHandle.h 36 // Memory allocator. Allocates and tracks memory required by the compiler.
38 TPoolAllocator allocator; member in class:TShHandleBase
  /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/host-tools/ndk-stack/elff/
elf_file.h 85 /* Gets DWARF objects allocator for this instance. */
86 class ElfAllocator* allocator() const { function in class:ElfFile
519 /* DWARF objects allocator for this instance. */
  /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/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p8.cpp 79 template <class Tp> class allocator;
82 class allocator<void> class in namespace:redecl::n1
89 class allocator class in namespace:redecl::n1
94 void allocate(allocator<void>::const_pointer = 0);

Completed in 1156 milliseconds

1 2 3