Home
last modified time | relevance | path

Searched defs:NoDefaultAllocator (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/std/input.output/string.streams/stringstream.cons/
Dstring.pass.cpp22 struct NoDefaultAllocator : std::allocator<T> struct
24 template<typename U> struct rebind { using other = NoDefaultAllocator<U>; }; argument
25 NoDefaultAllocator(int id_) : id(id_) { } in NoDefaultAllocator() function
26 template<typename U> NoDefaultAllocator(const NoDefaultAllocator<U>& a) : id(a.id) { } in NoDefaultAllocator() function
27 int id;
/external/llvm-project/libcxx/test/std/input.output/string.streams/stringstream.cons/
Dstring.pass.cpp23 struct NoDefaultAllocator : std::allocator<T> struct
25 template<typename U> struct rebind { using other = NoDefaultAllocator<U>; }; argument
26 NoDefaultAllocator(int id_) : id(id_) { } in NoDefaultAllocator() argument
27 template<typename U> NoDefaultAllocator(const NoDefaultAllocator<U>& a) : id(a.id) { } in NoDefaultAllocator() argument
28 int id;