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 94 class BatchResult:
113 batchResult = BatchResult(batchResultName if batchResultName != None else os.path.basename(filename))
114 batchResult.results = readTestCaseResultsFromCSV(filename)
115 return batchResult
140 for batchResult in batchResults:
141 for result in batchResult.results:
150 def genResultMap (batchResult):
152 for result in batchResult.results:
198 for batchResult in batchResults
    [all...]

Completed in 105 milliseconds