Lines Matching refs:CATCH_NULL

261 #   define CATCH_NULL nullptr  macro
263 # define CATCH_NULL NULL macro
463 Ptr() : m_p( CATCH_NULL ){} in Ptr()
479 m_p = CATCH_NULL; in reset()
495 bool operator !() const { return m_p == CATCH_NULL; } in operator !()
496 operator SafeBool::type() const { return SafeBool::makeSafe( m_p != CATCH_NULL ); } in operator SafeBool::type()
2685 Option() : nullableValue( CATCH_NULL ) {} in Option()
2690 : nullableValue( _other ? new( storage ) T( *_other ) : CATCH_NULL ) in Option()
2714 nullableValue = CATCH_NULL; in reset()
2726 bool some() const { return nullableValue != CATCH_NULL; } in some()
2727 bool none() const { return nullableValue == CATCH_NULL; } in none()
2729 bool operator !() const { return nullableValue == CATCH_NULL; } in operator !()
2901 int noClasses = objc_getClassList( CATCH_NULL, 0 ); in registerTestMethods()
3824 BoundArgFunction() : functionObj( CATCH_NULL ) {} in BoundArgFunction()
3826 …tion const& other ) : functionObj( other.functionObj ? other.functionObj->clone() : CATCH_NULL ) {} in BoundArgFunction()
3828 …ArgFunction<ConfigT>* newFunctionObj = other.functionObj ? other.functionObj->clone() : CATCH_NULL; in operator =()
3844 return functionObj != CATCH_NULL; in isSet()
5286 : m_currentTracker( CATCH_NULL ), in TrackerContext()
5294 m_currentTracker = CATCH_NULL; in endRun()
5374 : CATCH_NULL; in findChild()
5452 SectionTracker* section = CATCH_NULL; in acquire()
5483 IndexTracker* tracker = CATCH_NULL; in acquire()
5519 m_rootTracker = new SectionTracker( "{root}", *this, CATCH_NULL ); in startRun()
5520 m_currentTracker = CATCH_NULL; in startRun()
5649 m_activeTestCase( CATCH_NULL ), in RunContext()
5702 m_activeTestCase = CATCH_NULL; in runTest()
5703 m_testCaseTracker = CATCH_NULL; in runTest()
6366 return CATCH_NULL; in create()
6496 static RegistryHub* theRegistryHub = CATCH_NULL; in getTheRegistryHub()
6511 getTheRegistryHub() = CATCH_NULL; in cleanUp()
6644 Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {} in Context()
6690 : CATCH_NULL; in findGeneratorsForCurrentTest()
6711 Context* currentContext = CATCH_NULL;
6724 currentContext = CATCH_NULL; in cleanUpContext()
7463 gettimeofday(&t,CATCH_NULL);
7667 if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, CATCH_NULL, 0) != 0 ) { in isDebuggerActive()
8675 other.m_writer = CATCH_NULL; in ScopedElement()