Home
last modified time | relevance | path

Searched defs: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() function
132 constexpr ValueBase(int x) : value(x) {} in ValueBase() function
134 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function
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() argument
141 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =()
146 int value;
148 constexpr static int check_value(int const& val) { in check_value()
[all …]