Home
last modified time | relevance | path

Searched defs:test_allocator (Results 1 – 17 of 17) sorted by relevance

/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dtest_allocator.h72 friend class test_allocator; variable
90 …TEST_CONSTEXPR_CXX14 explicit test_allocator(test_allocator_statistics* stats) TEST_NOEXCEPT : sta… in test_allocator() function
95 TEST_CONSTEXPR explicit test_allocator(int data) TEST_NOEXCEPT : data_(data) {} in test_allocator() function
97 …TEST_CONSTEXPR_CXX14 explicit test_allocator(int data, test_allocator_statistics* stats) TEST_NOEX… in test_allocator() function
103 TEST_CONSTEXPR explicit test_allocator(int data, int id) TEST_NOEXCEPT : data_(data), id_(id) {} in test_allocator() function
105 …TEST_CONSTEXPR_CXX14 explicit test_allocator(int data, int id, test_allocator_statistics* stats) T… in test_allocator() function
111 TEST_CONSTEXPR_CXX14 test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function
121 …TEST_CONSTEXPR_CXX14 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), id_(a.id_)… in test_allocator() function
133 TEST_CONSTEXPR_CXX14 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function
206 friend class test_allocator; variable
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/unordered/test/unordered/
Ddeduction_tests.cpp26 template <typename T> struct test_allocator struct
29 test_allocator() = default; argument
30 template <typename T2> test_allocator(test_allocator<T2> const&) {} in test_allocator() argument
33 bool operator==(test_allocator const&) { return true; } in operator ==() argument
34 bool operator!=(test_allocator const&) { return false; } in operator !=() argument
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/sync/futures/
Dtest_allocator.hpp37 class test_allocator class
55 test_allocator() throw() : data_(-1) {} in test_allocator() function in test_allocator
56 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() function in test_allocator
57 test_allocator(const test_allocator& a) throw() in test_allocator() function in test_allocator
59 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() function in test_allocator
90 class test_allocator<void> class
106 test_allocator() throw() : data_(-1) {} in test_allocator() function in test_allocator
107 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() function in test_allocator
108 test_allocator(const test_allocator& a) throw() in test_allocator() function in test_allocator
110 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() function in test_allocator
/aosp_15_r20/external/libcxx/test/support/
H A Dtest_allocator.h77 template <class U> friend class test_allocator; variable
90 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} in test_allocator() function
93 test_allocator(const test_allocator& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
101 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
112 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function
229 template <class U> friend class test_allocator; variable
240 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {} in test_allocator() function
242 test_allocator(const test_allocator& a) TEST_NOEXCEPT in test_allocator() function
244 template <class U> test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT in test_allocator() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/smart_ptr/test/
Dshared_ptr_alloc2_test.cpp34 template<class T> class test_allocator: public test_allocator_base class
69 explicit test_allocator( int id = 0 ): test_allocator_base( id ) in test_allocator() function in test_allocator
73 template<class U> test_allocator( test_allocator<U> const & r ): test_allocator_base( r ) in test_allocator() function in test_allocator
138 template<> class test_allocator<void>: public test_allocator_base class
151 explicit test_allocator( int id = 0 ): test_allocator_base( id ) in test_allocator() function in test_allocator
155 template<class U> test_allocator( test_allocator<U> const & r ): test_allocator_base( r ) in test_allocator() function in test_allocator
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.assign/
H A Dassign.pass.cpp28 struct test_allocator : std::allocator<T> { struct
33 test_allocator(int _id = -1) : id(_id) {} in test_allocator() argument
38 test_allocator& operator=(test_allocator&& other) { in operator =() argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/syncstream/syncbuf/
H A Dhelpers.h33 struct test_allocator : std::allocator<T> { struct
35 test_allocator(int _id = 0) : id(_id) {} in id() argument
/aosp_15_r20/external/gemmlowp/test/
H A Dtest_allocator.cc20 void test_allocator(Allocator* a, int max_array_size) { in test_allocator() function
42 void test_allocator() { in test_allocator() function
/aosp_15_r20/external/fmtlib/test/
H A Dformat-test.cc410 using test_allocator = allocator_ref<mock_allocator<char>>; in TEST() typedef
427 using test_allocator = allocator_ref<mock_allocator<char>>; in TEST() typedef
471 using test_allocator = max_size_allocator<std::allocator<char>, 160>; in TEST() typedef
479 using test_allocator = max_size_allocator<std::allocator<char>, 160>; in TEST() typedef
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/lexical_cast/test/
Dlexical_cast_test.cpp501 void test_allocator() in test_allocator() function
/aosp_15_r20/external/eigen/unsupported/test/
H A Dcxx11_tensor_thread_pool.cpp714 TestAllocator test_allocator; in EIGEN_DECLARE_TEST() local
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/
H A Dtests.rs1169 fn test_allocator() { in test_allocator() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/
H A Dtests.rs1169 fn test_allocator() { in test_allocator() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/
H A Dtests.rs1169 fn test_allocator() { in test_allocator() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/
H A Dtests.rs1169 fn test_allocator() { in test_allocator() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/
H A Dtests.rs1169 fn test_allocator() { in test_allocator() function
/aosp_15_r20/external/tensorflow/tensorflow/core/runtime_fallback/kernel/
H A Dkernel_fallback_execute_compat.cc963 static auto* const test_allocator = new TestAllocator; in GetTestAllocator() local