Home
last modified time | relevance | path

Searched defs:SwitchCase (Results 1 – 8 of 8) sorted by relevance

/third_party/flutter/skia/src/sksl/ir/
DSkSLSwitchCase.h19 struct SwitchCase : public Statement { struct
20 SwitchCase(int offset, std::unique_ptr<Expression> value, in SwitchCase() function
31 return std::unique_ptr<Statement>(new SwitchCase(fOffset, in clone() argument
36 String description() const override { in description()
50 std::unique_ptr<Expression> fValue;
51 std::vector<std::unique_ptr<Statement>> fStatements;
53 typedef Statement INHERITED;
/third_party/skia/src/sksl/ir/
DSkSLSwitchCase.h24 SwitchCase(int line, std::unique_ptr<Expression> value, std::unique_ptr<Statement> statement) in SwitchCase() function
/third_party/typescript_eslint/packages/types/src/
Dast-node-types.ts71 SwitchCase = 'SwitchCase', enumerator
Dts-estree.ts1219 export interface SwitchCase extends BaseNode { interface
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/indent-new-do-not-use/
Dindex.ts223 SwitchCase?: number; property
/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint/
DRule.ts320 SwitchCase?: RuleFunction<TSESTree.SwitchCase>; property
/third_party/node/deps/acorn/acorn-walk/dist/
Dwalk.mjs224 base.SwitchCase = function (node, st, c) { class
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/indent/
Dindent-eslint.test.ts6020 options: [2, { VariableDeclarator: { let: 2 }, SwitchCase: 1 }], variable