Searched defs:ConstexprOptional (Results 1 – 2 of 2) sorted by relevance
301 struct ConstexprOptional { struct303 constexpr ConstexprOptional() : _has_value(false), _nothing() { in ConstexprOptional() function307 constexpr ConstexprOptional(const T& value) // NOLINT(google-explicit-constructor) in ConstexprOptional() function315 constexpr bool has_value() const { in has_value()319 constexpr const T& value() const { in value()344 operator==(const ConstexprOptional<T>& lhs, const ConstexprOptional<T>& rhs) { argument370 constexpr operator ConstexprOptional<T>() const { // NOLINT(google-explicit-constructor) in ConstexprOptional() function
579 TEST(JniSafeRegisterNativeMethods, ConstexprOptional) { in TEST() argument