• Home
  • Raw
  • Download

Lines Matching refs:CATCH_NULL

291 #   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()
2768 bool none() const { return nullableValue == CATCH_NULL; } in none()
2770 bool operator !() const { return nullableValue == CATCH_NULL; } in operator !()
2942 int noClasses = objc_getClassList( CATCH_NULL, 0 ); in registerTestMethods()
5504 : m_currentTracker( CATCH_NULL ), in TrackerContext()
5512 m_currentTracker = CATCH_NULL; in endRun()
5592 : CATCH_NULL; in findChild()
5670 SectionTracker* section = CATCH_NULL; in acquire()
5701 IndexTracker* tracker = CATCH_NULL; in acquire()
5737 m_rootTracker = new SectionTracker( "{root}", *this, CATCH_NULL ); in startRun()
5738 m_currentTracker = CATCH_NULL; in startRun()
5867 m_activeTestCase( CATCH_NULL ), in RunContext()
5925 m_activeTestCase = CATCH_NULL; in runTest()
5926 m_testCaseTracker = CATCH_NULL; in runTest()
6595 return CATCH_NULL; in create()
6725 static RegistryHub* theRegistryHub = CATCH_NULL; in getTheRegistryHub()
6740 getTheRegistryHub() = CATCH_NULL; in cleanUp()
6873 Context() : m_config( CATCH_NULL ), m_runner( CATCH_NULL ), m_resultCapture( CATCH_NULL ) {} in Context()
6919 : CATCH_NULL; in findGeneratorsForCurrentTest()
6940 Context* currentContext = CATCH_NULL;
6953 currentContext = CATCH_NULL; in cleanUpContext()
7708 gettimeofday(&t,CATCH_NULL);
7912 if( sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, CATCH_NULL, 0) != 0 ) { in isDebuggerActive()
8920 other.m_writer = CATCH_NULL; in ScopedElement()