Home
last modified time | relevance | path

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

/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dswitch-exhaustiveness-check.ts139 for (const switchCase of node.cases) { constant
140 if (switchCase.test === null) {
145 caseTypes.add(getNodeType(switchCase.test));
/third_party/flutter/skia/src/sksl/
DSkSLParser.h209 ASTNode::ID switchCase();
DSkSLParser.cpp1235 ASTNode::ID Parser::switchCase() { in switchCase() function in SkSL::Parser
1283 ASTNode::ID c = this->switchCase(); in switchStatement()
/third_party/typescript_eslint/packages/scope-manager/src/referencer/
DReferencer.ts658 for (const switchCase of node.cases) { constant
659 this.visit(switchCase);
/third_party/skia/src/sksl/
DSkSLDSLParser.h201 skstd::optional<dsl::DSLCase> switchCase();
DSkSLInliner.cpp910 for (const std::unique_ptr<Statement>& switchCase : switchStmt.cases()) { in visitStatement() local
912 this->visitStatement(&switchCase->as<SwitchCase>().statement()); in visitStatement()
DSkSLDSLParser.cpp997 skstd::optional<DSLCase> DSLParser::switchCase() { in switchCase() function in SkSL::DSLParser
1044 skstd::optional<DSLCase> c = this->switchCase(); in switchStatement()