HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 26 - 50 of 764) sorted by null

12 3 4 5 6 7 8 91011>>

  /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;
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [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...]
  /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/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.cpp 36 void* Operation::operator new(size_t size, android::LinearAllocator* allocator)
38 return allocator->alloc(size);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTCFDictionary.cpp 33 CFDataRef QTCFPropertyListCreateXMLData(CFAllocatorRef allocator, CFPropertyListRef propertyList)
36 typedef CFDataRef (* pfnCFPropertyListCreateXMLData)(CFAllocatorRef allocator, CFPropertyListRef propertyList);
45 return pCFPropertyListCreateXMLData(allocator, propertyList);
49 CFDictionaryRef QTCFDictionaryCreateCopyWithDataCallback(CFAllocatorRef allocator, CFDictionaryRef dictionary, QTCFDictonaryCreateFromDataCallback callback)
57 CFDictionaryRef outputDictionary = callback(allocator, CFDataGetBytePtr(data), CFDataGetLength(data));
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/
types.pass.cpp 12 // template <class T, class Alloc = allocator<T> >
31 static_assert((std::is_same<std::list<int>::allocator_type, std::allocator<int> >::value), "");
32 static_assert((std::is_same<std::list<int>::reference, std::allocator<int>::reference>::value), "");
33 static_assert((std::is_same<std::list<int>::const_reference, std::allocator<int>::const_reference>::value), "");
34 static_assert((std::is_same<std::list<int>::pointer, std::allocator<int>::pointer>::value), "");
35 static_assert((std::is_same<std::list<int>::const_pointer, std::allocator<int>::const_pointer>::value), "");
  /external/clang/test/SemaCXX/
PR9902.cpp 24 struct allocator {}; struct
28 allocator_traits<allocator<char>>::rebind_alloc<int> a;
  /external/stlport/test/compiler/
eh.cc 1 #include <list> /* required, to expose allocator */
14 typedef allocator<BigStruct> BigStructAllocType;
35 allocator<BigStruct> all;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
49 typename _Alloc = std::allocator<_CharT>,
58 std::allocator<char>, __rc_string_base> __rc_string;
65 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
75 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
51 typename _Alloc = std::allocator<_CharT>,
60 std::allocator<char>, __rc_string_base> __rc_string;
67 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
77 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
83 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
51 typename _Alloc = std::allocator<_CharT>,
60 std::allocator<char>, __rc_string_base> __rc_string;
67 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
77 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
83 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
49 typename _Alloc = std::allocator<_CharT>,
58 std::allocator<char>, __rc_string_base> __rc_string;
65 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
75 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
49 typename _Alloc = std::allocator<_CharT>,
58 std::allocator<char>, __rc_string_base> __rc_string;
65 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
75 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
49 typename _Alloc = std::allocator<_CharT>,
58 std::allocator<char>, __rc_string_base> __rc_string;
65 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
75 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
49 typename _Alloc = std::allocator<_CharT>,
58 std::allocator<char>, __rc_string_base> __rc_string;
65 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
75 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
81 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
51 typename _Alloc = std::allocator<_CharT>,
60 std::allocator<char>, __rc_string_base> __rc_string;
67 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
77 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
83 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
vstring_fwd.h 38 #include <bits/allocator.h>
51 typename _Alloc = std::allocator<_CharT>,
60 std::allocator<char>, __rc_string_base> __rc_string;
67 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
77 std::allocator<char16_t>, __rc_string_base> __u16rc_string;
83 std::allocator<char32_t>, __rc_string_base> __u32rc_string;
  /external/stlport/stlport/stl/
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 56 // Malloc-based allocator. Typically slower than default alloc below.
86 // New-based allocator. Typically slower than default alloc below.
96 // Allocator adaptor to check size arguments for debugging.
98 // NDEBUG, but it's far better to just use the underlying allocator
145 // Default node allocator.
175 /* macro to convert the allocator for initialization
179 * not used implicitly to convert allocator parameter, so let us do it explicitly */
191 // Another allocator adaptor: _Alloc_traits. This serves two
193 // either SGI-style allocators or standard-conforming allocator.
270 class allocator //: public _AllocatorAux<_Tp class in inherits:__stlport_class
364 class _STLP_CLASS_DECLSPEC allocator<void> { class
388 _STLP_EXPORT_TEMPLATE_CLASS allocator<char>; variable
390 _STLP_EXPORT_TEMPLATE_CLASS allocator<wchar_t>; variable
393 _STLP_EXPORT_TEMPLATE_CLASS allocator<void*>; variable
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
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());

Completed in 821 milliseconds

12 3 4 5 6 7 8 91011>>