Searched defs:test_case (Results 1 - 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1569 void OnTestCaseStart(const TestCase& test_case) { argument
1570 SendLn(std::string("event=TestCaseStart&name=") + test_case.name());
1573 void OnTestCaseEnd(const TestCase& test_case) { argument
1574 SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed())
1575 + "&elapsed_time=" + StreamableToString(test_case.elapsed_time())
1815 static bool TestCasePassed(const TestCase* test_case) { argument
1816 return test_case->should_run() && test_case->Passed();
1820 static bool TestCaseFailed(const TestCase* test_case) { argument
1821 return test_case
1826 ShouldRunTestCase(const TestCase* test_case) argument
3431 const TestCase* const test_case = impl->current_test_case(); local
4179 PrintTestName(const char * test_case, const char * test) argument
4245 OnTestCaseStart(const TestCase& test_case) argument
4296 OnTestCaseEnd(const TestCase& test_case) argument
4323 const TestCase& test_case = *unit_test.GetTestCase(i); local
4817 PrintXmlTestCase(std::ostream* stream, const TestCase& test_case) argument
5662 const std::vector<TestCase*>::const_iterator test_case = local
5952 TestCase* const test_case = test_cases_[i]; local
6020 const TestCase* const test_case = test_cases_[i]; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h18259 static void ClearTestCaseResult(TestCase* test_case) { argument
18260 test_case->ClearResult();
18392 virtual void OnTestCaseStart(const TestCase& test_case) = 0;
18404 virtual void OnTestCaseEnd(const TestCase& test_case) = 0;
18432 virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
18436 virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}

Completed in 101 milliseconds