Home
last modified time | relevance | path

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

/external/bcc/tests/cc/
Dcatch.hpp291 # define CATCH_NULL nullptr macro
293 # define CATCH_NULL NULL macro
493 Ptr() : m_p( CATCH_NULL ){} in Ptr()
509 m_p = CATCH_NULL; in reset()
525 bool operator !() const { return m_p == CATCH_NULL; } in operator !()
526 operator SafeBool::type() const { return SafeBool::makeSafe( m_p != CATCH_NULL ); } in operator SafeBool::type()
2726 Option() : nullableValue( CATCH_NULL ) {} in Option()
2731 : nullableValue( _other ? new( storage ) T( *_other ) : CATCH_NULL ) in Option()
2755 nullableValue = CATCH_NULL; in reset()
2767 bool some() const { return nullableValue != CATCH_NULL; } in some()
[all …]