Searched defs:testing (Results 1 - 25 of 467) sorted by last modified time

1234567891011>>

/external/regex-re2/util/
H A Dbenchmark.h8 namespace testing { namespace
24 } // namespace testing
35 ::testing::Benchmark* _benchmark_##f = (new ::testing::Benchmark(#f, f))
38 ::testing::Benchmark* _benchmark_##f = \
39 (new ::testing::Benchmark(#f, f, lo, hi))
H A Dtest.h42 namespace testing { namespace
51 } // namespace testing
/external/qemu/android/base/
H A DLog.cpp27 testing::LogOutput* gLogOutput = NULL;
246 namespace testing { namespace in namespace:android::base
255 } // namespace testing
H A DLog.h200 // to see in the final binaries, but are useful during testing.
368 namespace testing { namespace in namespace:android::base
371 // IMPORTANT: Only use this for unit testing the log facility.
393 } // namespace testing
/external/qemu/android/emulation/
H A DCpuAccelerator.cpp61 bool testing; member in struct:android::__anon29111::GlobalState
305 if (g->probed || g->testing) {
330 if (!g->probed && !g->testing) {
342 g->testing = true;
/external/qemu/android/filesystems/testing/
H A DTestSupport.cpp12 #include "android/filesystems/testing/TestSupport.h"
26 namespace testing { namespace in namespace:android
50 } // namespace testing
H A DTestSupport.h18 namespace testing { namespace in namespace:android
22 } // namespace testing
/external/protobuf/gtest/include/gtest/
H A Dgtest-death-test.h43 namespace testing { namespace
81 // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
169 ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
174 EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
203 // The death testing framework causes this to have interesting semantics,
248 do { statement; } while (::testing::internal::AlwaysFalse())
251 do { statement; } while (::testing::internal::AlwaysFalse())
281 } // namespace testing
H A Dgtest-message.h52 namespace testing { namespace
66 // testing::Message foo;
222 } // namespace testing
H A Dgtest-param-test.h51 // class. It must be derived from testing::TestWithParam<T>, where T is
53 // from testing::Test. T can be any copyable type. If it's a raw pointer,
56 class FooTest : public ::testing::TestWithParam<const char*> {
79 // are all in the testing namespace:
161 namespace testing { namespace
1171 // It is useful when testing code that depends on Boolean flags. Combinations
1178 // class FlagDependentTest : public testing::TestWithParam<bool> {
1213 // : public testing::TestWithParam<tuple<const char*, Color> > {...};
1225 // : public testing::TestWithParam<tuple(bool, bool)> > {
1353 ::testing
[all...]
H A Dgtest-spi.h32 // Utilities for testing Google Test itself and code that uses Google Test
40 namespace testing { namespace
113 } // namespace testing
115 // A set of macros for testing Google Test assertions or code that's expected
144 ::testing::TestPartResultArray gtest_failures;\
145 ::testing::internal::SingleFailureChecker gtest_checker(\
146 &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
148 ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
149 ::testing::ScopedFakeTestPartResultReporter:: \
153 } while (::testing
[all...]
H A Dgtest-test-part.h40 namespace testing { namespace
176 } // namespace testing
H A Dgtest.h84 namespace testing { namespace
196 // testing::AssertionResult IsEven(const char* expr, int n) {
197 // if ((n % 2) == 0) return testing::AssertionSuccess();
202 // return testing::AssertionFailure(msg);
251 // class FooTest : public testing::Test {
1099 // testing::Environment* const foo_env =
1100 // testing::AddGlobalTestEnvironment(new FooEnvironment);
1500 // class FooTest : public ::testing::TestWithParam<int> {
1520 // INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
1584 // Macros for testing exception
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h42 namespace testing { namespace
133 // Factory interface for death tests. May be mocked out for testing.
156 if (::testing::internal::AlwaysTrue()) { \
157 const ::testing::internal::RE& gtest_regex = (regex); \
158 ::testing::internal::DeathTest* gtest_dt; \
159 if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
164 ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
167 case ::testing::internal::DeathTest::OVERSEE_TEST: \
172 case ::testing
[all...]
H A Dgtest-filepath.h45 namespace testing { namespace
199 } // namespace testing
H A Dgtest-internal.h70 // Google Test defines the testing::Message class to allow construction of
72 // streamable to std::ostream can be streamed to a testing::Message.
83 // namespace, but not other namespaces, including the testing
88 // testing::Message must access the custom << operator from the global
100 namespace testing { namespace
160 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
516 // Returns the type ID of ::testing::Test. Always call this instead
517 // of GetTypeId< ::testing::Test>() to get the type ID of
518 // ::testing::Test, as the latter may give the wrong result due to a
780 } // namespace testing
[all...]
H A Dgtest-linked_ptr.h76 namespace testing { namespace
104 // contention in production code, but is acceptable in a testing
240 } // namespace testing
H A Dgtest-param-util-generated.h53 namespace testing { namespace
4799 } // namespace testing
H A Dgtest-param-util.h52 namespace testing { namespace
194 ::testing::internal::linked_ptr<const ParamGeneratorInterface<T> > impl_;
526 ::testing::internal::MakeAndRegisterTestInfo(
634 } // namespace testing
H A Dgtest-port.h562 namespace testing { namespace
718 ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
829 // The testing::internal::posix namespace holds wrappers for common
1044 if (::testing::internal::IsTrue(condition)) \
1055 extern ::testing::internal::Int32 GTEST_FLAG(name)
1057 extern ::testing::internal::String GTEST_FLAG(name)
1063 ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
1065 ::testing::internal::String GTEST_FLAG(name) = (default_val)
1082 } // namespace testing
[all...]
H A Dgtest-string.h51 namespace testing { namespace
346 } // namespace testing
H A Dgtest-type-util.h58 namespace testing { namespace
3317 } // namespace testing
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc69 namespace testing { namespace
223 if (!::testing::internal::IsTrue(expression)) { \
224 DeathTestAbort(::testing::internal::String::Format( \
228 } while (::testing::internal::AlwaysFalse())
244 DeathTestAbort(::testing::internal::String::Format( \
248 } while (::testing::internal::AlwaysFalse())
346 // The textual content of the code this object is testing. This class
1046 while (::testing::internal::AlwaysTrue()) {
1174 } // namespace testing
H A Dgtest-filepath.cc62 namespace testing { namespace
340 } // namespace testing
H A Dgtest-internal-inl.h30 // Utility functions and classes used by the Google C++ testing framework.
66 namespace testing { namespace
78 // library. This is solely for testing GetTestTypeId().
1016 friend class ::testing::UnitTest;
1225 // Google Test user but are required for testing. This class allow our tests
1238 static const Vector<testing::TestPartResult>& test_part_results(
1245 } // namespace testing

Completed in 280 milliseconds

1234567891011>>