/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/ |
H A D | test_allocator.h | 72 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/ |
D | deduction_tests.cpp | 26 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/ |
D | test_allocator.hpp | 37 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 D | test_allocator.h | 77 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/ |
D | shared_ptr_alloc2_test.cpp | 34 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 D | assign.pass.cpp | 28 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 D | helpers.h | 33 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 D | test_allocator.cc | 20 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 D | format-test.cc | 410 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/ |
D | lexical_cast_test.cpp | 501 void test_allocator() in test_allocator() function
|
/aosp_15_r20/external/eigen/unsupported/test/ |
H A D | cxx11_tensor_thread_pool.cpp | 714 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 D | tests.rs | 1169 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 D | tests.rs | 1169 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 D | tests.rs | 1169 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 D | tests.rs | 1169 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 D | tests.rs | 1169 fn test_allocator() { in test_allocator() function
|
/aosp_15_r20/external/tensorflow/tensorflow/core/runtime_fallback/kernel/ |
H A D | kernel_fallback_execute_compat.cc | 963 static auto* const test_allocator = new TestAllocator; in GetTestAllocator() local
|