Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Darchetypes.hpp133 struct ValueBase { struct
135 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() function
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() argument
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 =() argument
173 constexpr ValueBase() noexcept : value(0) {} in ValueBase() argument
174 constexpr ValueBase(ValueBase const& o) noexcept : value(check_value(o.value)) { in ValueBase() function
[all …]
/external/v8/src/wasm/
Dfunction-body-decoder-impl.h454 struct ValueBase { struct
459 static ValueBase Unreachable(const byte* pc) { return {pc, kWasmVar}; } in Unreachable() argument
461 static ValueBase New(const byte* pc, ValueType type) { return {pc, type}; } in New() argument
577 struct ValueWithNamedConstructors : public ValueBase {
579 CONCRETE_NAMED_CONSTRUCTOR(ConcreteType, ValueBase, Unreachable)
580 CONCRETE_NAMED_CONSTRUCTOR(ConcreteType, ValueBase, New)
2495 using Value = ValueBase;
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc103 using Value = ValueBase;