HomeSort by relevance Sort by last modified time
    Searched defs:BatchResult (Results 1 - 3 of 3) sorted by null

  /external/deqp/executor/
xeBatchResult.cpp 74 // BatchResult
76 BatchResult::BatchResult (void)
80 BatchResult::~BatchResult (void)
84 bool BatchResult::hasTestCaseResult (const char* casePath) const
89 ConstTestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath) const
96 TestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath)
103 TestCaseResultPtr BatchResult::createTestCaseResult (const char* casePath)
xeBatchResult.hpp 102 class BatchResult
105 BatchResult (void);
106 ~BatchResult (void);
122 BatchResult (const BatchResult& other);
123 BatchResult& operator= (const BatchResult& other);
  /external/deqp/scripts/
run_nightly.py 114 class BatchResult:
133 batchResult = BatchResult(batchResultName if batchResultName != None else os.path.basename(filename))
134 batchResult.results = readTestCaseResultsFromCSV(filename)
135 return batchResult
160 for batchResult in batchResults:
161 for result in batchResult.results:
170 def genResultMap (batchResult):
172 for result in batchResult.results:
218 for batchResult in batchResults
    [all...]

Completed in 427 milliseconds