Searched refs:ContainerTestAllocator (Results 1 – 2 of 2) sorted by relevance
/external/libcxx/test/support/ |
D | container_test_types.h | 260 class ContainerTestAllocator 286 ContainerTestAllocator() TEST_NOEXCEPT in ContainerTestAllocator() function 289 explicit ContainerTestAllocator(ConstructController* c) in ContainerTestAllocator() function 294 ContainerTestAllocator(ContainerTestAllocator<U, AllowConstructT> other) TEST_NOEXCEPT in ContainerTestAllocator() function 329 friend bool operator==(ContainerTestAllocator, ContainerTestAllocator) {return true;} 330 friend bool operator!=(ContainerTestAllocator x, ContainerTestAllocator y) {return !(x == y);} 335 typedef ContainerTestAllocator<int, int> A1; 337 typedef ContainerTestAllocator<float, int> A2; 468 using vector = std::vector<T, ContainerTestAllocator<T, T> >; 470 using deque = std::deque<T, ContainerTestAllocator<T, T> >; [all …]
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/ |
D | resize_size_value.pass.cpp | 91 typedef std::forward_list<int, ContainerTestAllocator<int, int>> Container; in main()
|