Lines Matching refs:CATCH_NULL

347 #   define CATCH_NULL nullptr  macro
349 # define CATCH_NULL NULL macro
563 Ptr() : m_p( CATCH_NULL ){} in Ptr()
579 m_p = CATCH_NULL; in reset()
595 bool operator !() const { return m_p == CATCH_NULL; } in operator !()
596 operator SafeBool::type() const { return SafeBool::makeSafe( m_p != CATCH_NULL ); } in operator SafeBool::type()
950 AssertionResultData() : decomposedExpression( CATCH_NULL ) in AssertionResultData()
965 if( decomposedExpression != CATCH_NULL ) { in reconstructExpression()
974 decomposedExpression = CATCH_NULL; in reconstructExpression()
3126 Option() : nullableValue( CATCH_NULL ) {} in Option()
3131 : nullableValue( _other ? new( storage ) T( *_other ) : CATCH_NULL ) in Option()
3155 nullableValue = CATCH_NULL; in reset()
3167 bool some() const { return nullableValue != CATCH_NULL; } in some()
3168 bool none() const { return nullableValue == CATCH_NULL; } in none()
3170 bool operator !() const { return nullableValue == CATCH_NULL; } in operator !()
3353 int noClasses = objc_getClassList( CATCH_NULL, 0 ); in registerTestMethods()
5768 virtual MultipleReporters* tryAsMulti() { return CATCH_NULL; } in tryAsMulti()
6028 : m_currentTracker( CATCH_NULL ), in TrackerContext()
6036 m_currentTracker = CATCH_NULL; in endRun()
6118 : CATCH_NULL; in findChild()
6211 SectionTracker* section = CATCH_NULL; in acquire()
6260 IndexTracker* tracker = CATCH_NULL; in acquire()
6297 …er = new SectionTracker( NameAndLocation( "{root}", CATCH_INTERNAL_LINEINFO ), *this, CATCH_NULL ); in startRun()
6298 m_currentTracker = CATCH_NULL; in startRun()
6396 exceptionHandlerHandle = CATCH_NULL; in FatalConditionHandler()
6408 exceptionHandlerHandle = CATCH_NULL; in reset()
6424 PVOID FatalConditionHandler::exceptionHandlerHandle = CATCH_NULL;
6504 sigaction(signalDefs[i].id, &oldSigActions[i], CATCH_NULL); in reset()
6507 sigaltstack(&oldSigStack, CATCH_NULL); in reset()
6564 m_activeTestCase( CATCH_NULL ), in RunContext()
6625 m_activeTestCase = CATCH_NULL; in runTest()
6626 m_testCaseTracker = CATCH_NULL; in runTest()
7343 return CATCH_NULL; in create()
7500 static RegistryHub* theRegistryHub = CATCH_NULL; in getTheRegistryHub()
7515 getTheRegistryHub() = CATCH_NULL; in cleanUp()
7648 Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {} in Context()
7699 : CATCH_NULL; in findGeneratorsForCurrentTest()
7720 Context* currentContext = CATCH_NULL;
7733 currentContext = CATCH_NULL; in cleanUpContext()
8085 m_resultData.decomposedExpression = CATCH_NULL; in discardDecomposedExpression()
8511 gettimeofday(&t,CATCH_NULL);
8721 if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, CATCH_NULL, 0) != 0 ) { in isDebuggerActive()
9879 other.m_writer = CATCH_NULL; in ScopedElement()