Searched refs:bare_allocator (Results 1 – 12 of 12) sorted by relevance
/external/libcxx/test/support/ |
D | min_allocator.h | 22 class bare_allocator 27 bare_allocator() TEST_NOEXCEPT {} in bare_allocator() function 30 bare_allocator(bare_allocator<U>) TEST_NOEXCEPT {} in bare_allocator() function 42 friend bool operator==(bare_allocator, bare_allocator) {return true;} 43 friend bool operator!=(bare_allocator x, bare_allocator y) {return !(x == y);} 136 struct cpp03_allocator : bare_allocator<T> 159 struct cpp03_overload_allocator : bare_allocator<T>
|
/external/libcxx/test/std/thread/futures/futures.promise/ |
D | alloc_ctor.pass.cpp | 55 std::promise<int> p(std::allocator_arg, bare_allocator<void>()); in main() 60 std::promise<int&> p(std::allocator_arg, bare_allocator<void>()); in main() 65 std::promise<void> p(std::allocator_arg, bare_allocator<void>()); in main()
|
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | alloc.pass.cpp | 27 std::function<int(int)> f(std::allocator_arg, bare_allocator<int>()); in main()
|
D | alloc_nullptr.pass.cpp | 26 std::function<int(int)> f(std::allocator_arg, bare_allocator<int>(), nullptr); in main()
|
D | alloc_rfunction.pass.cpp | 67 std::function<int(int)> f2(std::allocator_arg, bare_allocator<A>(), std::move(f)); in main()
|
D | alloc_function.pass.cpp | 118 bare_allocator<DummyClass> alloc; in main()
|
D | alloc_F.pass.cpp | 113 bare_allocator<DummyClass> bare_alloc; in main()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
D | allocate_shared.pass.cpp | 80 std::shared_ptr<A> p = std::allocate_shared<A>(bare_allocator<void>(), i, c); in main()
|
D | allocate_shared_cxx03.pass.cpp | 114 test<bare_allocator<void> >(); in main()
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
D | nullptr_t_deleter_allocator.pass.cpp | 54 std::shared_ptr<A> p(nullptr, test_deleter<A>(1), bare_allocator<void>()); in main()
|
D | pointer_deleter_allocator.pass.cpp | 57 std::shared_ptr<A> p(ptr, test_deleter<A>(3), bare_allocator<void>()); in main()
|
/external/libcxx/test/std/thread/futures/futures.task/futures.task.members/ |
D | ctor_func_alloc.pass.cpp | 105 bare_allocator<void>(), A(5)); in main()
|