Home
last modified time | relevance | path

Searched refs:TestResults (Results 1 – 24 of 24) sorted by relevance

/external/angle/src/tests/test_utils/runner/
DTestSuite.h88 struct TestResults struct
90 TestResults();
91 ~TestResults();
181 TestResults mTestResults;
208 bool GetTestResultsFromFile(const char *fileName, TestResults *resultsOut);
DTestSuite_unittest.cpp45 TestResults *actualResults, in runTestSuite()
112 TestResults actual; in TEST_F()
131 TestResults actual; in TEST_F()
150 TestResults actual; in TEST_F()
DTestSuite.cpp232 const TestResults &testResults, in WriteResultsFile()
392 const TestResults &testResults, in WriteOutputFiles()
409 void UpdateCurrentTestResult(const testing::TestResult &resultIn, TestResults *resultsOut) in UpdateCurrentTestResult()
461 TestResults *testResults, in TestEventListener()
506 TestResults *mTestResults;
667 TestResults *resultsOut) in GetSingleTestResultFromJSON()
749 bool GetTestResultsFromJSON(const js::Document &document, TestResults *resultsOut) in GetTestResultsFromJSON()
797 bool MergeTestResults(TestResults *input, TestResults *output, int flakyRetries) in MergeTestResults()
1021 TestResults::TestResults() = default;
1023 TestResults::~TestResults() = default;
[all …]
/external/Reactive-Extensions/RxCpp/Ix/CPP/
D.gitignore10 TestResults
96 TestResults
/external/tensorflow/tensorflow/tools/test/
Drun_and_gather_logs_lib.py72 results = test_log_pb2.TestResults()
77 results.benchmark_type = test_log_pb2.TestResults.BenchmarkType.Value(
/external/grpc-grpc/src/csharp/
D.gitignore17 /TestResults
/external/deqp/external/vulkancts/
DREADME.md141 By default, the test log will be written into the path "TestResults.qpa". If the
189 Test log will be written into TestResults.qpa
203 …p-log-images=disable --deqp-log-shader-sources=disable --deqp-log-filename=/sdcard/TestResults.qpa"
209 Test log will be written into `/sdcard/TestResults.qpa`.
217 1. Full test logs (`TestResults.qpa`) from CTS runs against all driver builds and all fractions
222 Test logs (1) should be named `<submission pkg dir>/TestResults-<driver build type>-<fraction id>-o…
223 for example `TestResults-armeabi-v7a-1-of-8.qpa`. On platforms where multiple different driver
305 TestResults-armeabi-v7a.qpa
306 TestResults-arm64-v8a.qpa
325 codes. Test results are contained in the TestResults.qpa log. Each
/external/grpc-grpc/examples/csharp/HelloworldXamarin/
D.gitignore8 TestResults/
/external/angle/doc/
DdEQP.md58 `out/sln/obj/src/tests/TestResults.qpa`. To view the test log information, you'll need to
77 …the test runner is tricky, but is necessary in order to get a complete TestResults.qpa from the dE…
83 adb pull /sdcard/chromium_tests_root/third_party/angle/third_party/deqp/src/data/TestResults.qpa .
DOrientation.md73 click '**Import existing batch**', loading `TestResults.qpa`. Look for the qpa file in the
/external/Reactive-Extensions/RxCpp/
D.gitignore72 TestResults
/external/python/cpython2/Lib/
Ddoctest.py104 TestResults = namedtuple('TestResults', 'failed attempted') variable
1378 return TestResults(failures, tries)
1518 return TestResults(totalf, totalt)
1921 return TestResults(runner.failures, runner.tries)
2046 return TestResults(runner.failures, runner.tries)
2105 return TestResults(f,t)
2114 return TestResults(f,t)
Dcollections.py741 TestResults = namedtuple('TestResults', 'failed attempted') variable
742 print TestResults(*doctest.testmod())
/external/angle/
D.gitignore112 TestResults.qpa
/external/deqp/scripts/log/
DREADME.md34 `python bottleneck_report.py c:\khronos\build\external\vulkancts\modules\vulkan\TestResults.qpa 5`
/external/python/cpython3/Lib/
Ddoctest.py108 TestResults = namedtuple('TestResults', 'failed attempted') variable
1402 return TestResults(failures, tries)
1550 return TestResults(totalf, totalt)
1966 return TestResults(runner.failures, runner.tries)
2089 return TestResults(runner.failures, runner.tries)
/external/tensorflow/tensorflow/core/util/
Dtest_log.proto173 message TestResults { message
/external/deqp/framework/platform/ios/
DtcuIOSApp.mm309 : m_testProcess (m_state, de::FilePath::join(getAppDocumentsDir(), "TestResults.qpa").getPath())
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateInheritanceTests.cpp118 struct TestResults struct
1021 TestResults results; in iterate()
/external/autotest/server/
Dfrontend.py722 class TestResults(object): class
/external/deqp/external/openglcts/
DREADME.md567 default: 'TestResults.qpa'
/external/python/cpython2/Doc/library/
Ddoctest.rst1564 and return a :term:`named tuple` ``TestResults(failed, attempted)``.
/external/python/cpython3/Doc/library/
Ddoctest.rst1516 and return a :term:`named tuple` ``TestResults(failed, attempted)``.
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst1815 TestResults(failed=0, attempted=7)