Home | History | Annotate | Download | only in support

Lines Matching refs:ContainerTestAllocator

21 // * test-allocator: 'ContainerTestAllocator' - This test allocator is used to
60 * using Alloc = ContainerTestAllocator<ValueTp, ValueTp>;
238 // ContainerTestAllocator
241 // ContainerTestAllocator - A STL allocator type that only allows 'construct'
242 // and 'destroy' to be called for 'AllowConstructT' types. ContainerTestAllocator
245 class ContainerTestAllocator
271 ContainerTestAllocator() TEST_NOEXCEPT
274 explicit ContainerTestAllocator(ConstructController* c)
279 ContainerTestAllocator(ContainerTestAllocator<U, AllowConstructT> other) TEST_NOEXCEPT
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> >;
463 ContainerTestAllocator<ValueTp, ValueTp> >;
469 ContainerTestAllocator<ValueTp, ValueTp> >;
474 ContainerTestAllocator<Value, Value> >;
478 std::set<Value, std::less<Value>, ContainerTestAllocator<Value, Value> >;
483 ContainerTestAllocator<Value, Value> >;
487 std::multiset<Value, std::less<Value>, ContainerTestAllocator<Value, Value> >;