Lines Matching refs:CATCH_NULL

352 #   define CATCH_NULL nullptr  macro
354 # define CATCH_NULL NULL macro
567 Ptr() : m_p( CATCH_NULL ){} in Ptr()
583 m_p = CATCH_NULL; in reset()
599 bool operator !() const { return m_p == CATCH_NULL; } in operator !()
600 operator SafeBool::type() const { return SafeBool::makeSafe( m_p != CATCH_NULL ); } in operator SafeBool::type()
956 AssertionResultData() : decomposedExpression( CATCH_NULL ) in AssertionResultData()
971 if( decomposedExpression != CATCH_NULL ) { in reconstructExpression()
980 decomposedExpression = CATCH_NULL; in reconstructExpression()
3145 Option() : nullableValue( CATCH_NULL ) {} in Option()
3150 : nullableValue( _other ? new( storage ) T( *_other ) : CATCH_NULL ) in Option()
3174 nullableValue = CATCH_NULL; in reset()
3186 bool some() const { return nullableValue != CATCH_NULL; } in some()
3187 bool none() const { return nullableValue == CATCH_NULL; } in none()
3189 bool operator !() const { return nullableValue == CATCH_NULL; } in operator !()
3372 int noClasses = objc_getClassList( CATCH_NULL, 0 ); in registerTestMethods()
5795 virtual MultipleReporters* tryAsMulti() { return CATCH_NULL; } in tryAsMulti()
6066 : m_currentTracker( CATCH_NULL ), in TrackerContext()
6074 m_currentTracker = CATCH_NULL; in endRun()
6156 : CATCH_NULL; in findChild()
6249 SectionTracker* section = CATCH_NULL; in acquire()
6298 IndexTracker* tracker = CATCH_NULL; in acquire()
6335 …er = new SectionTracker( NameAndLocation( "{root}", CATCH_INTERNAL_LINEINFO ), *this, CATCH_NULL ); in startRun()
6336 m_currentTracker = CATCH_NULL; in startRun()
6434 exceptionHandlerHandle = CATCH_NULL; in FatalConditionHandler()
6446 exceptionHandlerHandle = CATCH_NULL; in reset()
6462 PVOID FatalConditionHandler::exceptionHandlerHandle = CATCH_NULL;
6542 sigaction(signalDefs[i].id, &oldSigActions[i], CATCH_NULL); in reset()
6545 sigaltstack(&oldSigStack, CATCH_NULL); in reset()
6625 m_activeTestCase( CATCH_NULL ), in RunContext()
6686 m_activeTestCase = CATCH_NULL; in runTest()
6687 m_testCaseTracker = CATCH_NULL; in runTest()
7427 return CATCH_NULL; in create()
7584 static RegistryHub* theRegistryHub = CATCH_NULL; in getTheRegistryHub()
7599 getTheRegistryHub() = CATCH_NULL; in cleanUp()
7735 Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {} in Context()
7786 : CATCH_NULL; in findGeneratorsForCurrentTest()
7807 Context* currentContext = CATCH_NULL;
7820 currentContext = CATCH_NULL; in cleanUpContext()
8182 m_resultData.decomposedExpression = CATCH_NULL; in discardDecomposedExpression()
8608 gettimeofday(&t,CATCH_NULL);
8825 if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, CATCH_NULL, 0) != 0 ) { in isDebuggerActive()
9988 other.m_writer = CATCH_NULL; in ScopedElement()