Lines Matching defs:small_iter_allocator
24 class small_iter_allocator {
31 small_iter_allocator() TEST_NOEXCEPT {}
34 small_iter_allocator(small_iter_allocator<U>) TEST_NOEXCEPT {}
39 friend bool operator==(small_iter_allocator, small_iter_allocator) { return true; }
40 friend bool operator!=(small_iter_allocator, small_iter_allocator) { return false; }
68 static_assert(sizeof(std::deque<int, small_iter_allocator<int> >) == 12, "");
74 static_assert(sizeof(std::deque<char, small_iter_allocator<char> >) == 12, "");
80 static_assert(TEST_ALIGNOF(std::deque<int, small_iter_allocator<int> >) == 2, "");
86 static_assert(TEST_ALIGNOF(std::deque<char, small_iter_allocator<char> >) == 2, "");
94 static_assert(sizeof(std::deque<int, small_iter_allocator<int> >) == 12, "");
100 static_assert(sizeof(std::deque<char, small_iter_allocator<char> >) == 12, "");
106 static_assert(TEST_ALIGNOF(std::deque<int, small_iter_allocator<int> >) == 2, "");
112 static_assert(TEST_ALIGNOF(std::deque<char, small_iter_allocator<char> >) == 2, "");