Home
last modified time | relevance | path

Searched refs:ContainerTestAllocator (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/support/
Dcontainer_test_types.h245 class ContainerTestAllocator
271 ContainerTestAllocator() TEST_NOEXCEPT in ContainerTestAllocator() function
274 explicit ContainerTestAllocator(ConstructController* c) in ContainerTestAllocator() function
279 ContainerTestAllocator(ContainerTestAllocator<U, AllowConstructT> other) TEST_NOEXCEPT in ContainerTestAllocator() function
314 friend bool operator==(ContainerTestAllocator, ContainerTestAllocator) {return true;}
315 friend bool operator!=(ContainerTestAllocator x, ContainerTestAllocator y) {return !(x == y);}
320 typedef ContainerTestAllocator<int, int> A1;
322 typedef ContainerTestAllocator<float, int> A2;
451 ContainerTestAllocator<ValueTp, ValueTp> >;
457 ContainerTestAllocator<ValueTp, ValueTp> >;
[all …]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
Dresize_size_value.pass.cpp92 typedef std::forward_list<int, ContainerTestAllocator<int, int>> Container; in main()