HomeSort by relevance Sort by last modified time
    Searched defs:test_allocator (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/skia/tests/
SmallAllocatorTest.cpp 30 template<uint32_t kMaxObjects, size_t kBytes> void test_allocator(skiatest::Reporter* reporter) { function
48 test_allocator<5, 20>(reporter);
49 test_allocator<10, 40>(reporter);
50 test_allocator<20, 80>(reporter);
55 test_allocator<50, 20>(reporter);
56 test_allocator<100, 20>(reporter);
  /external/libcxx/test/support/
test_allocator.h 36 class test_allocator class in inherits:test_alloc_base
41 template <class U> friend class test_allocator;
52 template <class U> struct rebind {typedef test_allocator<U> other;};
54 test_allocator() throw() : data_(0) {++count;} function in class:test_allocator
55 explicit test_allocator(int i) throw() : data_(i) {++count;} function in class:test_allocator
56 test_allocator(const test_allocator& a) throw() function in class:test_allocator
58 template <class U> test_allocator(const test_allocator<U>& a) throw() function in class:test_allocator
60 ~test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;
96 class test_allocator<void> class in inherits:test_alloc_base
112 test_allocator() throw() : data_(-1) {} function in class:test_allocator
113 explicit test_allocator(int i) throw() : data_(i) {} function in class:test_allocator
114 test_allocator(const test_allocator& a) throw() function in class:test_allocator
116 template <class U> test_allocator(const test_allocator<U>& a) throw() function in class:test_allocator
    [all...]
  /external/libcxx/test/thread/futures/
test_allocator.h 31 class test_allocator class in inherits:test_alloc_base
36 template <class U> friend class test_allocator;
47 template <class U> struct rebind {typedef test_allocator<U> other;};
49 test_allocator() throw() : data_(-1) {} function in class:test_allocator
50 explicit test_allocator(int i) throw() : data_(i) {} function in class:test_allocator
51 test_allocator(const test_allocator& a) throw() function in class:test_allocator
53 template <class U> test_allocator(const test_allocator<U>& a) throw() function in class:test_allocator
55 ~test_allocator() throw() {data_ = 0;
89 class test_allocator<void> class in inherits:test_alloc_base
105 test_allocator() throw() : data_(-1) {} function in class:test_allocator
106 explicit test_allocator(int i) throw() : data_(i) {} function in class:test_allocator
107 test_allocator(const test_allocator& a) throw() function in class:test_allocator
109 template <class U> test_allocator(const test_allocator<U>& a) throw() function in class:test_allocator
    [all...]

Completed in 612 milliseconds