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

1 2 3 4 5 6 7 8 91011

  /art/test/130-hprof/src-ex/
Allocator.java 17 // Simple allocator that returns a boot class path object.
18 public class Allocator {
  /external/skia/include/android/
SkBRDAllocator.h 15 * Abstract subclass of SkBitmap's allocator.
16 * Allows the allocator to indicate if the memory it allocates
19 class SkBRDAllocator : public SkBitmap::Allocator {
23 * Indicates if the memory allocated by this allocator is
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
alloc.pass.cpp 21 template <class T, class Allocator>
23 test(const Allocator& a)
25 std::deque<T, Allocator> d(a);
32 test<int>(std::allocator<int>());
default.pass.cpp 21 template <class T, class Allocator>
25 std::deque<T, Allocator> d;
28 std::deque<T, Allocator> d1 = {};
35 test<int, std::allocator<int> >();
size.pass.cpp 21 template <class T, class Allocator>
26 typedef std::deque<T, Allocator> C;
30 C d(n, Allocator());
43 template <class T, class Allocator>
47 typedef std::deque<T, Allocator> C;
63 template <class T, class Allocator>
65 test3(unsigned n, Allocator const &alloc = Allocator())
68 typedef std::deque<T, Allocator> C;
78 template <class T, class Allocator>
    [all...]
  /external/libcxx/test/std/re/re.results/re.results.all/
get_allocator.pass.cpp 12 // class match_results<BidirectionalIterator, Allocator>
21 template <class CharT, class Allocator>
23 test(const Allocator& a)
25 std::match_results<const CharT*, Allocator> m(a);
  /external/libcxx/test/std/re/re.results/re.results.const/
allocator.pass.cpp 12 // class match_results<BidirectionalIterator, Allocator>
14 // match_results(const Allocator& a = Allocator());
21 template <class CharT, class Allocator>
23 test(const Allocator& a)
25 std::match_results<const CharT*, Allocator> m(a);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
alloc.pass.cpp 21 template <class T, class Allocator>
23 test(const Allocator& a)
25 std::deque<T, Allocator> d(a);
32 test<int>(std::allocator<int>());
default.pass.cpp 21 template <class T, class Allocator>
25 std::deque<T, Allocator> d;
28 std::deque<T, Allocator> d1 = {};
35 test<int, std::allocator<int> >();
size.pass.cpp 21 template <class T, class Allocator>
26 typedef std::deque<T, Allocator> C;
30 C d(n, Allocator());
43 template <class T, class Allocator>
47 typedef std::deque<T, Allocator> C;
63 template <class T, class Allocator>
65 test3(unsigned n, Allocator const &alloc = Allocator())
68 typedef std::deque<T, Allocator> C;
78 template <class T, class Allocator>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.all/
get_allocator.pass.cpp 12 // class match_results<BidirectionalIterator, Allocator>
21 template <class CharT, class Allocator>
23 test(const Allocator& a)
25 std::match_results<const CharT*, Allocator> m(a);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/
allocator.pass.cpp 12 // class match_results<BidirectionalIterator, Allocator>
14 // match_results(const Allocator& a = Allocator());
21 template <class CharT, class Allocator>
23 test(const Allocator& a)
25 std::match_results<const CharT*, Allocator> m(a);
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 1 //==- llvm/Support/RecyclingAllocator.h - Recycling Allocator ----*- C++ -*-==//
22 /// RecyclingAllocator - This class wraps an Allocator, adding the
33 /// Allocator - The wrapped allocator.
35 AllocatorType Allocator;
38 ~RecyclingAllocator() { Base.clear(Allocator); }
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
55 Allocator.PrintStats()
    [all...]
  /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/v8/src/
splay-tree-inl.h 14 template<typename Config, class Allocator>
15 SplayTree<Config, Allocator>::~SplayTree() {
21 template<typename Config, class Allocator>
22 bool SplayTree<Config, Allocator>::Insert(const Key& key,
46 template<typename Config, class Allocator>
47 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) {
61 template<typename Config, class Allocator>
62 bool SplayTree<Config, Allocator>::FindInternal(const Key& key) {
70 template<typename Config, class Allocator>
71 bool SplayTree<Config, Allocator>::Contains(const Key& key)
    [all...]
  /art/runtime/base/
allocator.cc 17 #include "allocator.h"
28 class MallocAllocator FINAL : public Allocator {
47 class NoopAllocator FINAL : public Allocator {
67 Allocator* Allocator::GetMallocAllocator() {
71 Allocator* Allocator::GetNoopAllocator() {
  /external/libcxx/test/std/containers/sequences/vector.bool/
types.pass.cpp 14 // template <class Allocator>
15 // class vector<bool, Allocator
19 // typedef Allocator allocator_type;
38 template <class Allocator>
42 typedef std::vector<bool, Allocator> C;
45 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
46 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
66 test<std::allocator<bool> >()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
types.pass.cpp 14 // template <class Allocator>
15 // class vector<bool, Allocator
19 // typedef Allocator allocator_type;
38 template <class Allocator>
42 typedef std::vector<bool, Allocator> C;
45 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
46 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
66 test<std::allocator<bool> >()
    [all...]
  /external/libcxx/test/std/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
42 template <class T, class Allocator>
46 typedef std::vector<T, Allocator> C;
49 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
50 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
51 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
52 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
53 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 11 #include "llvm/Support/Allocator.h"
52 BumpPtrAllocator Allocator;
56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1x = DUT.allocate(Cap, Allocator);
97 Object *A2y = DUT.allocate(Cap, Allocator);
101 Object *A4 = DUT.allocate(Cap, Allocator);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::vector<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /external/libcxx/test/libcxx/experimental/containers/sequences/dynarray/dynarray.cons/
alloc.pass.cpp 38 template <class T, class Allocator>
39 void check_allocator ( const dynarray<T> &dyn, const Allocator &alloc ) {
44 template <class T, class Allocator>
45 void test ( const std::initializer_list<T> &vals, const Allocator &alloc ) {
55 template <class T, class Allocator>
56 void test ( const T &val, const Allocator &alloc1, const Allocator &alloc2 ) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
alloc.pass.cpp 38 template <class T, class Allocator>
39 void check_allocator ( const dynarray<T> &dyn, const Allocator &alloc ) {
44 template <class T, class Allocator>
45 void test ( const std::initializer_list<T> &vals, const Allocator &alloc ) {
55 template <class T, class Allocator>
56 void test ( const T &val, const Allocator &alloc1, const Allocator &alloc2 ) {
  /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 SCCInfo(Allocator<SCCInfo> allocator) : node(this, allocator)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorybuffer.h 33 \tparam Allocator type for allocating memory buffer.
36 template <typename Allocator = CrtAllocator>
40 GenericMemoryBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {}
57 mutable internal::Stack<Allocator> stack_;

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011