Home
last modified time | relevance | path

Searched refs:ValueBase (Results 1 – 1 of 1) sorted by relevance

/external/libcxx/test/support/
Darchetypes.hpp128 struct ValueBase { struct
130 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() argument
132 constexpr ValueBase(int x) : value(x) {} in ValueBase() function
134 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument
136 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument
138 …explicit constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.… in ValueBase() function
140 …constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.size())) … in ValueBase() function
141 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =() argument
166 constexpr ValueBase() noexcept : value(0) {} in ValueBase() function
167 constexpr ValueBase(ValueBase const& o) noexcept : value(check_value(o.value)) { in ValueBase() function
[all …]