• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/

Lines Matching defs:bool

271   explicit AssertionResult(bool success) : success_(success) {}
274 operator bool() const { return success_; } // NOLINT
313 bool success_;
385 static bool HasFatalFailure();
388 static bool HasNonfatalFailure();
392 static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
422 static bool HasSameFixtureClass();
524 bool Passed() const { return !Failed(); }
527 bool Failed() const;
530 bool HasFatalFailure() const;
533 bool HasNonfatalFailure() const;
580 static bool ValidateTestProperty(const TestProperty& test_property);
669 bool should_run() const { return should_run_; }
723 bool should_run_; // True iff this test should run
724 bool is_disabled_; // True iff this test is disabled
725 bool matches_filter_; // True if this test matches the
773 bool should_run() const { return should_run_; }
791 bool Passed() const { return !Failed(); }
794 bool Failed() const { return failed_test_count() > 0; }
820 void set_should_run(bool should) { should_run_ = should; }
846 static bool TestPassed(const TestInfo* test_info) {
851 static bool TestFailed(const TestInfo* test_info) {
856 static bool TestDisabled(const TestInfo* test_info) {
861 static bool ShouldRunTest(const TestInfo* test_info) {
888 bool should_run_;
1065 bool EventForwardingEnabled() const;
1159 bool Passed() const;
1163 bool Failed() const;
1345 template <bool lhs_is_null_literal>
1678 // like writing 'WithParamInterface<bool>::GetParam()' for a test that
2067 // void Test1() { Foo<bool> foo; }
2069 // will NOT generate a compiler error, as Foo<bool>::Bar() is never
2072 // void Test2() { Foo<bool> foo; foo.Bar(); }
2076 bool StaticAssertTypeEq() {