Searched refs:ValueBase (Results 1 – 3 of 3) sorted by relevance
133 struct ValueBase { struct135 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() function137 constexpr ValueBase(int x) : value(x) {} in ValueBase() function139 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function141 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function143 …explicit constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.… in ValueBase() function145 …constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.size())) … in ValueBase() argument146 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =() argument173 constexpr ValueBase() noexcept : value(0) {} in ValueBase() argument174 constexpr ValueBase(ValueBase const& o) noexcept : value(check_value(o.value)) { in ValueBase() argument[all …]
141 struct ValueBase { struct143 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() function145 constexpr ValueBase(int x) : value(x) {} in ValueBase() function147 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function149 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument151 …explicit constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.…153 …constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.size())) …154 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept {181 constexpr ValueBase() noexcept : value(0) {} in ValueBase() argument182 constexpr ValueBase(ValueBase const& o) noexcept : value(check_value(o.value)) { in ValueBase() argument[all …]
68 static class ValueBase { class in JsonValueTest72 static class ValueType extends ValueBase {79 public ValueBase getX() { return new ValueType(); } in getX()