Searched defs:ConstexprOptional (Results 1 – 2 of 2) sorted by relevance
302 struct ConstexprOptional { struct304 constexpr ConstexprOptional() : _has_value(false), _nothing() { in ConstexprOptional() argument308 constexpr ConstexprOptional(const T& value) // NOLINT(google-explicit-constructor) in ConstexprOptional() argument316 constexpr bool has_value() const { in has_value()320 constexpr const T& value() const { in value()345 operator==(const ConstexprOptional<T>& lhs, const ConstexprOptional<T>& rhs) { argument
567 TEST(JniSafeRegisterNativeMethods, ConstexprOptional) { in TEST() argument