• Home
  • Raw
  • Download

Lines Matching refs:GPUTestExpectationsParser

121           expectation(GPUTestExpectationsParser::kGpuTestPass)  in TokenInfo()
126 GPUTestExpectationsParser::GPUTestExpectation expectationIn) in TokenInfo()
131 : TokenInfo(nameIn, conditionIn, GPUTestExpectationsParser::kGpuTestPass) in TokenInfo()
136 GPUTestExpectationsParser::GPUTestExpectation expectation;
182 {"pass", GPUTestConfig::kConditionNone, GPUTestExpectationsParser::kGpuTestPass},
183 {"fail", GPUTestConfig::kConditionNone, GPUTestExpectationsParser::kGpuTestFail},
184 {"flaky", GPUTestConfig::kConditionNone, GPUTestExpectationsParser::kGpuTestFlaky},
185 {"timeout", GPUTestConfig::kConditionNone, GPUTestExpectationsParser::kGpuTestTimeout},
186 {"skip", GPUTestConfig::kConditionNone, GPUTestExpectationsParser::kGpuTestSkip},
298 GPUTestExpectationsParser::GPUTestExpectationsParser() in GPUTestExpectationsParser() function in angle::GPUTestExpectationsParser
300 GPUTestExpectationsParser::kGpuTestPass | GPUTestExpectationsParser::kGpuTestFail | in GPUTestExpectationsParser()
301 GPUTestExpectationsParser::kGpuTestFlaky | GPUTestExpectationsParser::kGpuTestTimeout | in GPUTestExpectationsParser()
302 GPUTestExpectationsParser::kGpuTestSkip) in GPUTestExpectationsParser()
311 GPUTestExpectationsParser::~GPUTestExpectationsParser() = default;
313 bool GPUTestExpectationsParser::loadTestExpectationsImpl(const GPUTestConfig *config, in loadTestExpectationsImpl()
335 bool GPUTestExpectationsParser::loadTestExpectations(const GPUTestConfig &config, in loadTestExpectations()
341 bool GPUTestExpectationsParser::loadAllTestExpectations(const std::string &data) in loadAllTestExpectations()
346 bool GPUTestExpectationsParser::loadTestExpectationsFromFileImpl(const GPUTestConfig *config, in loadTestExpectationsFromFileImpl()
361 bool GPUTestExpectationsParser::loadTestExpectationsFromFile(const GPUTestConfig &config, in loadTestExpectationsFromFile()
367 bool GPUTestExpectationsParser::loadAllTestExpectationsFromFile(const std::string &path) in loadAllTestExpectationsFromFile()
372 int32_t GPUTestExpectationsParser::getTestExpectationImpl(const GPUTestConfig *config, in getTestExpectationImpl()
413 int32_t GPUTestExpectationsParser::getTestExpectation(const std::string &testName) in getTestExpectation()
418 int32_t GPUTestExpectationsParser::getTestExpectationWithConfig(const GPUTestConfig &config, in getTestExpectationWithConfig()
424 const std::vector<std::string> &GPUTestExpectationsParser::getErrorMessages() const in getErrorMessages()
429 std::vector<std::string> GPUTestExpectationsParser::getUnusedExpectationsMessages() const in getUnusedExpectationsMessages()
432 std::vector<GPUTestExpectationsParser::GPUTestExpectationEntry> unusedExpectations = in getUnusedExpectationsMessages()
443 bool GPUTestExpectationsParser::parseLine(const GPUTestConfig *config, in parseLine()
620 bool GPUTestExpectationsParser::checkTokenCondition(const GPUTestConfig &config, in checkTokenCondition()
644 bool GPUTestExpectationsParser::detectConflictsBetweenEntries() in detectConflictsBetweenEntries()
665 std::vector<GPUTestExpectationsParser::GPUTestExpectationEntry>
666 GPUTestExpectationsParser::getUnusedExpectations() const in getUnusedExpectations()
668 std::vector<GPUTestExpectationsParser::GPUTestExpectationEntry> unusedExpectations; in getUnusedExpectations()
679 void GPUTestExpectationsParser::pushErrorMessage(const std::string &message, size_t lineNumber) in pushErrorMessage()
684 void GPUTestExpectationsParser::pushErrorMessage(const std::string &message, in pushErrorMessage()
692 GPUTestExpectationsParser::GPUTestExpectationEntry::GPUTestExpectationEntry() in GPUTestExpectationEntry()