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

12 3 4 5 6 7 8 91011>>

  /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/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/ndk/r11/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/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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;
  /external/libcxx/test/std/containers/associative/map/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::map<int, int, std::less<int>, std::allocator<long> > m;
  /external/libcxx/test/std/containers/associative/multimap/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::multimap<int, int, std::less<int>, std::allocator<long> > m;
  /external/libcxx/test/std/containers/associative/multiset/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::multiset<int, std::less<int>, std::allocator<long> > ms;
  /external/libcxx/test/std/containers/associative/set/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::set<int, std::less<int>, std::allocator<long> > s;
  /external/libcxx/test/std/strings/basic.string/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::basic_string<char, std::char_traits<char>, std::allocator<int> > s;
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc.fail.cpp 24 std::function<int(int)> f(std::allocator_arg, std::allocator<int>());
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_alloc.i 4 * @brief The "standard" allocator, as per [20.4].
9 * The underlying allocator behaves as follows.
18 class allocator
32 allocator() throw();
34 allocator(const allocator&) throw();
36 allocator(const allocator<_Tp1>&) throw();
37 ~allocator() throw();
65 class allocator<void
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 28 static_assert((!std::uses_allocator<int, std::allocator<int> >::value), "");
29 static_assert(( std::uses_allocator<std::vector<int>, std::allocator<int> >::value), "");
30 static_assert((!std::uses_allocator<A, std::allocator<int> >::value), "");
31 static_assert((!std::uses_allocator<B, std::allocator<int> >::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::map<int, int, std::less<int>, std::allocator<long> > m;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::multimap<int, int, std::less<int>, std::allocator<long> > m;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::multiset<int, std::less<int>, std::allocator<long> > ms;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::set<int, std::less<int>, std::allocator<long> > s;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::basic_string<char, std::char_traits<char>, std::allocator<int> > s;
  /art/runtime/gc/
allocator_type.h 27 kAllocatorTypeBumpPointer, // Use BumpPointer allocator, has entrypoints.
28 kAllocatorTypeTLAB, // Use TLAB allocator, has entrypoints.
29 kAllocatorTypeRosAlloc, // Use RosAlloc allocator, has entrypoints.
30 kAllocatorTypeDlMalloc, // Use dlmalloc allocator, has entrypoints.
31 kAllocatorTypeNonMoving, // Special allocator for non moving objects, doesn't have entrypoints.
38 inline constexpr bool IsTLABAllocator(AllocatorType allocator) {
39 return allocator == kAllocatorTypeTLAB || allocator == kAllocatorTypeRegionTLAB;
  /external/clang/test/SemaTemplate/
exception-spec-crash.cpp 9 class allocator;
12 class allocator<char> {}; class
29 basic_string<allocator<char> > vectorFoo_;
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
size_value.pass.cpp 21 template <class T, class Allocator>
25 typedef std::deque<T, Allocator> C;
36 test<int, std::allocator<int> >(0, 5);
37 test<int, std::allocator<int> >(1, 10);
38 test<int, std::allocator<int> >(10, 11);
39 test<int, std::allocator<int> >(1023, -11);
40 test<int, std::allocator<int> >(1024, 25);
41 test<int, std::allocator<int> >(1025, 0);
42 test<int, std::allocator<int> >(2047, 110);
43 test<int, std::allocator<int> >(2048, -500)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
size_value.pass.cpp 20 template <class T, class Allocator>
24 typedef std::deque<T, Allocator> C;
35 test<int, std::allocator<int> >(0, 5);
36 test<int, std::allocator<int> >(1, 10);
37 test<int, std::allocator<int> >(10, 11);
38 test<int, std::allocator<int> >(1023, -11);
39 test<int, std::allocator<int> >(1024, 25);
40 test<int, std::allocator<int> >(1025, 0);
41 test<int, std::allocator<int> >(2047, 110);
42 test<int, std::allocator<int> >(2048, -500)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
size_value.pass.cpp 20 template <class T, class Allocator>
24 typedef std::deque<T, Allocator> C;
35 test<int, std::allocator<int> >(0, 5);
36 test<int, std::allocator<int> >(1, 10);
37 test<int, std::allocator<int> >(10, 11);
38 test<int, std::allocator<int> >(1023, -11);
39 test<int, std::allocator<int> >(1024, 25);
40 test<int, std::allocator<int> >(1025, 0);
41 test<int, std::allocator<int> >(2047, 110);
42 test<int, std::allocator<int> >(2048, -500)
    [all...]
  /system/core/libmemunreachable/
LeakFolding.h 24 LeakFolding(Allocator<void> allocator, HeapWalker& heap_walker)
25 : allocator_(allocator), heap_walker_(heap_walker),
26 leak_map_(allocator), leak_graph_(allocator), leak_scc_(allocator) {}
36 bool Leaked(allocator::vector<Leak>& leaked,
41 Allocator<void> allocator_;
57 explicit SCCInfo(Allocator<SCCInfo> allocator) : node(this, allocator)
    [all...]

Completed in 1018 milliseconds

12 3 4 5 6 7 8 91011>>