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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/memory/default.allocator/
allocator_types.pass.cpp 15 // class allocator
26 // template <class U> struct rebind {typedef allocator<U> other;};
36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
39 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
41 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
43 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/
allocator_types.pass.cpp 15 // class allocator
26 // template <class U> struct rebind {typedef allocator<U> other;};
36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
39 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
41 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
43 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
  /external/stlport/src/
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /ndk/sources/cxx-stl/stlport/src/
sstream.cpp 27 template class _STLP_CLASS_DECLSPEC basic_stringbuf<char, char_traits<char>, allocator<char> >;
28 template class _STLP_CLASS_DECLSPEC basic_ostringstream<char, char_traits<char>, allocator<char> >;
29 template class _STLP_CLASS_DECLSPEC basic_istringstream<char, char_traits<char>, allocator<char> >;
30 template class _STLP_CLASS_DECLSPEC basic_stringstream<char, char_traits<char>, allocator<char> >;
33 template class _STLP_CLASS_DECLSPEC basic_stringbuf<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
34 template class _STLP_CLASS_DECLSPEC basic_ostringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
35 template class _STLP_CLASS_DECLSPEC basic_istringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
36 template class _STLP_CLASS_DECLSPEC basic_stringstream<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >;
  /prebuilts/ndk/5/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...]
  /prebuilts/ndk/6/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...]
  /prebuilts/ndk/7/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...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/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/chromium_org/gpu/command_buffer/common/
id_allocator_test.cc 25 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->InUse(id2))
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/public/web/
WebMemoryUsageInfo.h 34 WebMemoryUsageInfo(const WebString& allocator, size_t allocated)
35 : allocatorName(allocator)
  /external/libcxx/test/utilities/memory/default.allocator/allocator.globals/
eq.pass.cpp 12 // allocator:
16 // operator==(const allocator<T1>&, const allocator<T2>&) throw();
20 // operator!=(const allocator<T1>&, const allocator<T2>&) throw();
27 std::allocator<int> a1;
28 std::allocator<int> a2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.globals/
eq.pass.cpp 12 // allocator:
16 // operator==(const allocator<T1>&, const allocator<T2>&) throw();
20 // operator!=(const allocator<T1>&, const allocator<T2>&) throw();
27 std::allocator<int> a1;
28 std::allocator<int> a2;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/Android.mk
19 test_name := utilities/memory/allocator.traits/allocator.traits.types/size_type
23 test_name := utilities/memory/allocator.traits/allocator.traits.types/difference_type
27 test_name := utilities/memory/allocator.traits/allocator.traits.types/const_pointer
31 test_name := utilities/memory/allocator.traits/allocator.traits.types/pointe
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
66 class allocator;
68 /// allocator<void> specialization.
70 class allocator<void> class
81 { typedef allocator<_Tp1> other; };
85 * @brief The @a standard allocator, as per [20.4].
92 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
105 { typedef allocator<_Tp1> other; }
107 allocator() throw() { } function in class:allocator
109 allocator(const allocator& __a) throw() function in class:allocator
113 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
66 class allocator;
68 /// allocator<void> specialization.
70 class allocator<void> class
81 { typedef allocator<_Tp1> other; };
85 * @brief The @a standard allocator, as per [20.4].
92 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
105 { typedef allocator<_Tp1> other; }
107 allocator() throw() { } function in class:allocator
109 allocator(const allocator& __a) throw() function in class:allocator
113 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
64 class allocator;
66 /// allocator<void> specialization.
68 class allocator<void> class
79 { typedef allocator<_Tp1> other; };
83 * @brief The @a standard allocator, as per [20.4].
89 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
102 { typedef allocator<_Tp1> other; }
104 allocator() throw() { } function in class:allocator
106 allocator(const allocator& __a) throw() function in class:allocator
110 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
66 class allocator;
68 /// allocator<void> specialization.
70 class allocator<void> class
81 { typedef allocator<_Tp1> other; };
85 * @brief The @a standard allocator, as per [20.4].
92 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
105 { typedef allocator<_Tp1> other; }
107 allocator() throw() { } function in class:allocator
109 allocator(const allocator& __a) throw() function in class:allocator
113 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
allocator.h 39 /** @file bits/allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
64 class allocator;
66 /// allocator<void> specialization.
68 class allocator<void> class
79 { typedef allocator<_Tp1> other; };
83 * @brief The @a standard allocator, as per [20.4].
89 class allocator: public __glibcxx_base_allocator<_Tp> class in inherits:__glibcxx_base_allocator
102 { typedef allocator<_Tp1> other; }
104 allocator() throw() { } function in class:allocator
106 allocator(const allocator& __a) throw() function in class:allocator
110 allocator(const allocator<_Tp1>&) throw() { } function in class:allocator
    [all...]
  /external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
Android.mk 17 test_makefile := external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/Android.mk
19 test_name := utilities/memory/allocator.traits/allocator.traits.members/construct
23 test_name := utilities/memory/allocator.traits/allocator.traits.members/allocate_hint
27 test_name := utilities/memory/allocator.traits/allocator.traits.members/allocate
31 test_name := utilities/memory/allocator.traits/allocator.traits.members/destro
    [all...]

Completed in 1067 milliseconds

1 2 3 4 5 6 7 8 91011>>