Home
last modified time | relevance | path

Searched defs:ConstexprOptional (Results 1 – 2 of 2) sorted by relevance

/aosp12/libnativehelper/include_platform_header_only/nativehelper/detail/
H A Dsignature_checker.h301 struct ConstexprOptional { struct
303 constexpr ConstexprOptional() : _has_value(false), _nothing() { in ConstexprOptional() function
307 constexpr ConstexprOptional(const T& value) // NOLINT(google-explicit-constructor) in ConstexprOptional() function
315 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) { argument
370 constexpr operator ConstexprOptional<T>() const { // NOLINT(google-explicit-constructor) in ConstexprOptional() function
/aosp12/libnativehelper/tests/
H A DJniSafeRegisterNativeMethods_test.cpp579 TEST(JniSafeRegisterNativeMethods, ConstexprOptional) { in TEST() argument