| /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/ |
| gmock.h | 78 namespace testing { namespace 106 } // namespace testing
|
| gmock-more-matchers.h | 47 namespace testing { namespace 92 } // namespace testing
|
| gmock-more-actions.h | 47 namespace testing { namespace 162 } // namespace testing
|
| gmock-cardinalities.h | 53 namespace testing { namespace 155 } // namespace testing
|
| gmock-nice-strict.h | 69 namespace testing { namespace 75 ::testing::Mock::AllowUninterestingCalls( 88 ::testing::Mock::AllowUninterestingCalls( 96 ::testing::Mock::AllowUninterestingCalls( 101 ::testing::Mock::UnregisterCallReaction( 113 ::testing::Mock::WarnUninterestingCalls( 126 ::testing::Mock::WarnUninterestingCalls( 134 ::testing::Mock::WarnUninterestingCalls( 139 ::testing::Mock::UnregisterCallReaction( 151 ::testing::Mock::FailUninterestingCalls [all...] |
| gmock-spec-builders.h | 89 namespace testing { namespace 110 // Helper class for testing the Expectation class template. 532 friend class ::testing::internal::ExpectationBase; 533 friend class ::testing::internal::UntypedFunctionMockerBase; 536 friend class ::testing::internal::FunctionMocker; 539 friend class ::testing::internal::TypedExpectation; 729 friend class ::testing::Expectation; 848 friend class ::testing::Sequence; 849 friend class ::testing::internal::ExpectationTester; 1241 // Note: class MockSpec really belongs to the ::testing namespace [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| gtest-matchers.cc | 30 // The Google C++ Testing and Mocking Framework (Google Test) 41 namespace testing { namespace 97 } // namespace testing
|
| gtest-test-part.cc | 31 // The Google C++ Testing and Mocking Framework (Google Test) 36 namespace testing { namespace 104 } // namespace testing
|
| gtest-typed-test.cc | 35 namespace testing { namespace 118 } // namespace testing
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-string.h | 30 // The Google C++ Testing and Mocking Framework (Google Test) 54 namespace testing { namespace 169 } // namespace testing
|
| gtest-filepath.h | 48 namespace testing { namespace 207 } // namespace testing
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
| test_helpers.h | 22 // TODO: Move these to llvm/include/Testing/XRay/... 31 namespace testing { namespace in namespace:llvm::xray 50 MATCHER_P(TSCIs, M, std::string("TSC is ") + ::testing::PrintToString(M)) { 51 return ::testing::Matcher<decltype(arg.TSC)>(M).MatchAndExplain( 55 } // namespace testing
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
| gtest-message.h | 31 // The Google C++ Testing and Mocking Framework (Google Test) 61 void operator<<(const testing::internal::Secret&, int); 63 namespace testing { namespace 77 // testing::Message foo; 119 // namespace, but not other namespaces, including the testing 124 // assertions, testing::Message must access the custom << operator 215 } // namespace testing
|
| gtest-death-test.h | 31 // The Google C++ Testing and Mocking Framework (Google Test) 43 namespace testing { namespace 92 // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); 180 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 185 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) 215 // The death testing framework causes this to have interesting semantics, 313 if (::testing::internal::AlwaysTrue()) { \ 317 } else if (::testing::internal::AlwaysFalse()) { \ 318 ::testing::internal::RE::PartialMatch(".*", (regex)); \ 322 ::testing::Message( [all...] |
| gtest-param-test.h | 31 // in Google C++ Testing and Mocking Framework (Google Test) 48 // class. It is usually derived from testing::TestWithParam<T> (see below for 51 // TestWithParam<T> is itself derived from testing::Test. T can be any 55 class FooTest : public ::testing::TestWithParam<const char*> { 78 // are all in the testing namespace: 150 // A parameterized test fixture must be derived from testing::Test and from 151 // testing::WithParamInterface<T>, where T is the type of the parameter 157 class BaseTest : public ::testing::Test { 162 class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> { 184 namespace testing { namespace [all...] |
| gtest-spi.h | 31 // Utilities for testing Google Test itself and code that uses Google Test 44 namespace testing { namespace 117 } // namespace testing 121 // A set of macros for testing Google Test assertions or code that's expected 150 ::testing::TestPartResultArray gtest_failures;\ 151 ::testing::internal::SingleFailureChecker gtest_checker(\ 152 >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ 154 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ 155 ::testing::ScopedFakeTestPartResultReporter:: \ 159 } while (::testing::internal::AlwaysFalse() [all...] |
| gtest-test-part.h | 43 namespace testing { namespace 180 } // namespace testing
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/ |
| gmock-cardinalities.cc | 44 namespace testing { namespace 155 } // namespace testing
|
| gmock-internal-utils.cc | 46 namespace testing { namespace 93 // use Google Mock with a testing framework other than Google Test. 181 << ::testing::internal::GetCurrentOsStackTraceExceptTop( 182 ::testing::UnitTest::GetInstance(), actual_to_skip); 200 } // namespace testing
|
| gmock.cc | 34 namespace testing { namespace 213 } // namespace testing
|
| gmock-matchers.cc | 44 namespace testing { namespace 462 } // namespace testing
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/ |
| Error.h | 1 //===- llvm/Testing/Support/Error.h ---------------------------------------===// 14 #include "llvm/Testing/Support/SupportHelpers.h" 33 : public testing::MatcherInterface<const ExpectedHolder<T> &> { 35 explicit ValueMatchesMono(const testing::Matcher<T> &Matcher) 39 testing::MatchResultListener *listener) const override { 66 testing::Matcher<T> Matcher; 75 operator testing::Matcher<const ExpectedHolder<T> &>() const { 77 new ValueMatchesMono<T>(testing::SafeMatcherCast<T>(Matcher))); 85 class ErrorMatchesMono : public testing::MatcherInterface<const ErrorHolder &> { 87 explicit ErrorMatchesMono(Optional<testing::Matcher<InfoT &>> Matcher [all...] |
| /src/external/bsd/nsd/dist/ |
| configure | 6717 void testing (void) { time_t clock; char current_time[40]; ctime_r(&clock, current_time); } 6722 testing(); function 7487 int testing (void) { struct tm t; const char *timestr="201201"; return strptime(timestr, "%Y%m", &t) != 0; } 10345 void testing (void) { 10355 testing(); function 10403 void testing (void) {
|
| /src/usr.sbin/timed/timedc/ |
| cmds.c | 400 testing(int argc, char *argv[]) function
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/internal/ |
| gmock-internal-utils.h | 51 namespace testing { namespace 159 static_cast< ::testing::internal::TypeKind>( \ 160 ::testing::internal::KindOf<type>::value) 513 } // namespace testing
|