Lines Matching refs:CATCH_NULL

354 #   define CATCH_NULL nullptr  macro
356 # define CATCH_NULL NULL macro
569 Ptr() : m_p( CATCH_NULL ){} in Ptr()
585 m_p = CATCH_NULL; in reset()
601 bool operator !() const { return m_p == CATCH_NULL; } in operator !()
602 operator SafeBool::type() const { return SafeBool::makeSafe( m_p != CATCH_NULL ); } in operator SafeBool::type()
958 AssertionResultData() : decomposedExpression( CATCH_NULL ) in AssertionResultData()
973 if( decomposedExpression != CATCH_NULL ) { in reconstructExpression()
982 decomposedExpression = CATCH_NULL; in reconstructExpression()
3155 Option() : nullableValue( CATCH_NULL ) {} in Option()
3160 : nullableValue( _other ? new( storage ) T( *_other ) : CATCH_NULL ) in Option()
3184 nullableValue = CATCH_NULL; in reset()
3196 bool some() const { return nullableValue != CATCH_NULL; } in some()
3197 bool none() const { return nullableValue == CATCH_NULL; } in none()
3199 bool operator !() const { return nullableValue == CATCH_NULL; } in operator !()
3382 int noClasses = objc_getClassList( CATCH_NULL, 0 ); in registerTestMethods()
5835 virtual MultipleReporters* tryAsMulti() { return CATCH_NULL; } in tryAsMulti()
6106 : m_currentTracker( CATCH_NULL ), in TrackerContext()
6114 m_currentTracker = CATCH_NULL; in endRun()
6196 : CATCH_NULL; in findChild()
6289 SectionTracker* section = CATCH_NULL; in acquire()
6338 IndexTracker* tracker = CATCH_NULL; in acquire()
6375 …er = new SectionTracker( NameAndLocation( "{root}", CATCH_INTERNAL_LINEINFO ), *this, CATCH_NULL ); in startRun()
6376 m_currentTracker = CATCH_NULL; in startRun()
6474 exceptionHandlerHandle = CATCH_NULL; in FatalConditionHandler()
6486 exceptionHandlerHandle = CATCH_NULL; in reset()
6502 PVOID FatalConditionHandler::exceptionHandlerHandle = CATCH_NULL;
6582 sigaction(signalDefs[i].id, &oldSigActions[i], CATCH_NULL); in reset()
6585 sigaltstack(&oldSigStack, CATCH_NULL); in reset()
6665 m_activeTestCase( CATCH_NULL ), in RunContext()
6726 m_activeTestCase = CATCH_NULL; in runTest()
6727 m_testCaseTracker = CATCH_NULL; in runTest()
7487 return CATCH_NULL; in create()
7644 static RegistryHub* theRegistryHub = CATCH_NULL; in getTheRegistryHub()
7659 getTheRegistryHub() = CATCH_NULL; in cleanUp()
7795 Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {} in Context()
7846 : CATCH_NULL; in findGeneratorsForCurrentTest()
7867 Context* currentContext = CATCH_NULL;
7880 currentContext = CATCH_NULL; in cleanUpContext()
8242 m_resultData.decomposedExpression = CATCH_NULL; in discardDecomposedExpression()
8675 gettimeofday(&t,CATCH_NULL);
8892 if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, CATCH_NULL, 0) != 0 ) { in isDebuggerActive()
10055 other.m_writer = CATCH_NULL; in ScopedElement()