Home
last modified time | relevance | path

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

/third_party/skia/src/sksl/ir/
DSkSLSwitchStatement.cpp129 auto startIter = iter; in BlockForCase() local
148 caseStmts.reserve_back(std::distance(startIter, iter) + 1); in BlockForCase()
151 while (startIter != iter) { in BlockForCase()
152 caseStmts.push_back(std::move((*startIter)->as<SwitchCase>().statement())); in BlockForCase()
153 ++startIter; in BlockForCase()
159 SkASSERT((*startIter)->as<SwitchCase>().statement().get() == stripBreakStmt); in BlockForCase()
160 move_all_but_break((*startIter)->as<SwitchCase>().statement(), &caseStmts); in BlockForCase()