Home | History | Annotate | Download | only in tuple.tuple

Lines Matching defs:alloc_first

17 struct alloc_first
25 alloc_first() : data_(0) {}
26 alloc_first(int d) : data_(d) {}
27 alloc_first(std::allocator_arg_t, const A1<int>& a)
34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d)
41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d)
48 ~alloc_first() {data_ = -1;}
50 friend bool operator==(const alloc_first& x, const alloc_first& y)
52 friend bool operator< (const alloc_first& x, const alloc_first& y)
56 bool alloc_first::allocator_constructed = false;