Home
last modified time | relevance | path

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

/external/llvm-project/libcxx/test/support/
Darchetypes.h141 struct ValueBase { struct
143 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() argument
145 constexpr ValueBase(int x) : value(x) {} in ValueBase() function
147 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument
149 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument
181 constexpr ValueBase() noexcept : value(0) {} in ValueBase() argument
182 constexpr ValueBase(ValueBase const& o) noexcept : value(check_value(o.value)) { in ValueBase() function
184 constexpr ValueBase(ValueBase && o) noexcept : value(check_value(o.value)) { in ValueBase() argument
/external/libcxx/test/support/
Darchetypes.hpp133 struct ValueBase { struct
135 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() argument
137 constexpr ValueBase(int x) : value(x) {} in ValueBase() function
139 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function
141 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument
143 …explicit constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.… in ValueBase() function
145 …constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.size())) … in ValueBase() function
146 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =()
151 int value;
155 constexpr static int check_value(int const& val) { in check_value()
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DJsonValueTest.java68 static class ValueBase { class in JsonValueTest