Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/support/
H A Dcontainer_test_types.h259 class ContainerTestAllocator
285 ContainerTestAllocator() TEST_NOEXCEPT in ContainerTestAllocator() function
288 explicit ContainerTestAllocator(ConstructController* c) in ContainerTestAllocator() function
293 ContainerTestAllocator(ContainerTestAllocator<U, AllowConstructT> other) TEST_NOEXCEPT in ContainerTestAllocator() function
328 friend bool operator==(ContainerTestAllocator, ContainerTestAllocator) {return true;}
329 friend bool operator!=(ContainerTestAllocator x, ContainerTestAllocator y) {return !(x == y);}
334 typedef ContainerTestAllocator<int, int> A1;
336 typedef ContainerTestAllocator<float, int> A2;
467 using vector = std::vector<T, ContainerTestAllocator<T, T> >;
469 using deque = std::deque<T, ContainerTestAllocator<T, T> >;
[all …]
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
H A Dresize_size_value.pass.cpp91 typedef std::forward_list<int, ContainerTestAllocator<int, int>> Container; in main()