Lines Matching refs:TEST_CONSTEXPR

55   TEST_CONSTEXPR static const int destructed_value = -1;
56 TEST_CONSTEXPR static const int moved_value = INT_MAX;
82 TEST_CONSTEXPR test_allocator() TEST_NOEXCEPT = default;
89 TEST_CONSTEXPR explicit test_allocator(int data) TEST_NOEXCEPT : data_(data) {} in test_allocator()
97 TEST_CONSTEXPR explicit test_allocator(int data, int id) TEST_NOEXCEPT : data_(data), id_(id) {} in test_allocator()
144 TEST_CONSTEXPR pointer address(reference x) const { return &x; } in address()
145 TEST_CONSTEXPR const_pointer address(const_reference x) const { return &x; } in address()
165 TEST_CONSTEXPR size_type max_size() const TEST_NOEXCEPT { return UINT_MAX / sizeof(T); } in max_size()
177TEST_CONSTEXPR friend bool operator==(const test_allocator& x, const test_allocator& y) { return x…
178TEST_CONSTEXPR friend bool operator!=(const test_allocator& x, const test_allocator& y) { return !…
180 TEST_CONSTEXPR int get_data() const { return data_; } in get_data()
181 TEST_CONSTEXPR int get_id() const { return id_; } in get_id()
234 TEST_CONSTEXPR pointer address(reference x) const { return &x; } in address()
235 TEST_CONSTEXPR const_pointer address(const_reference x) const { return &x; } in address()
255 TEST_CONSTEXPR size_type max_size() const TEST_NOEXCEPT { return UINT_MAX / sizeof(T); } in max_size()
257TEST_CONSTEXPR friend bool operator==(const non_default_test_allocator& x, const non_default_test_…
261TEST_CONSTEXPR friend bool operator!=(const non_default_test_allocator& x, const non_default_test_…
287 TEST_CONSTEXPR test_allocator() TEST_NOEXCEPT = default;
291 TEST_CONSTEXPR explicit test_allocator(int data) TEST_NOEXCEPT : data_(data) {} in test_allocator()
293 TEST_CONSTEXPR explicit test_allocator(int data, test_allocator_statistics* stats) TEST_NOEXCEPT in test_allocator()
297 TEST_CONSTEXPR explicit test_allocator(int data, int id) : data_(data), id_(id) {} in test_allocator()
317 TEST_CONSTEXPR int get_id() const { return id_; } in get_id()
318 TEST_CONSTEXPR int get_data() const { return data_; } in get_data()
320TEST_CONSTEXPR friend bool operator==(const test_allocator& x, const test_allocator& y) { return x…
321TEST_CONSTEXPR friend bool operator!=(const test_allocator& x, const test_allocator& y) { return !…
369 TEST_CONSTEXPR Tag_X(Ctor_Tag) {} in Tag_X()
371 TEST_CONSTEXPR Tag_X(Ctor_Tag, const Tag_X&) {} in Tag_X()
373 TEST_CONSTEXPR Tag_X(Ctor_Tag, Tag_X&&) {} in Tag_X()
377 TEST_CONSTEXPR Tag_X(Ctor_Tag, Args&&...) {} in Tag_X()
403 TEST_CONSTEXPR TaggingAllocator(const TaggingAllocator<U>&) {} in TaggingAllocator()
469 TEST_CONSTEXPR const T& operator*() const { return block->content; }
470 TEST_CONSTEXPR const T* operator->() const { return &block->content; }
474 TEST_CONSTEXPR const T* get() const { return &block->content; } in get()
479 TEST_CONSTEXPR control_block(Args... args) : content(std::forward<Args>(args)...) {} in control_block()
530TEST_CONSTEXPR explicit limited_allocator(limited_allocator<U, N> const& other) : handle_(other.ha… in limited_allocator()
536 TEST_CONSTEXPR size_type max_size() const { return N; } in max_size()
537 TEST_CONSTEXPR BuffT* getHandle() const { return handle_.get(); } in getHandle()
541 TEST_CONSTEXPR inline bool operator==(limited_allocator<T, N> const& LHS, limited_allocator<U, N> c…
546 TEST_CONSTEXPR inline bool operator!=(limited_allocator<T, N> const& LHS, limited_allocator<U, N> c…