Home
last modified time | relevance | path

Searched refs:switchStmt (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/src/sksl/analysis/
DSkSLCanExitWithoutReturningValue.cpp96 for (const std::unique_ptr<Statement>& switchStmt : s.cases()) { in visitStatement() local
99 const SwitchCase& sc = switchStmt->as<SwitchCase>(); in visitStatement()
/third_party/skia/src/sksl/
DSkSLInliner.cpp904 SwitchStatement& switchStmt = (*stmt)->as<SwitchStatement>(); in visitStatement() local
905 if (switchStmt.symbols()) { in visitStatement()
906 fSymbolTableStack.push_back(switchStmt.symbols()); in visitStatement()
909 this->visitExpression(&switchStmt.value()); in visitStatement()
910 for (const std::unique_ptr<Statement>& switchCase : switchStmt.cases()) { in visitStatement()