Home
last modified time | relevance | path

Searched refs:ForStatement (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/skia/src/sksl/ir/
DSkSLForStatement.cpp45 std::unique_ptr<Statement> ForStatement::clone() const { in clone()
51 return std::make_unique<ForStatement>( in clone()
61 String ForStatement::description() const { in description()
80 std::unique_ptr<Statement> ForStatement::Convert(const Context& context, int line, in Convert()
136 scope.push_back(ForStatement::Make(context, line, /*initializer=*/nullptr, in Convert()
142 return ForStatement::Make(context, line, std::move(initializer), std::move(test), in Convert()
147 std::unique_ptr<Statement> ForStatement::ConvertWhile(const Context& context, int line, in ConvertWhile()
155 return ForStatement::Convert(context, line, /*initializer=*/nullptr, std::move(test), in ConvertWhile()
159 std::unique_ptr<Statement> ForStatement::Make(const Context& context, int line, in Make()
182 return std::make_unique<ForStatement>(line, std::move(initializer), std::move(test), in Make()
DSkSLForStatement.h30 class ForStatement final : public Statement {
34 ForStatement(int line, in ForStatement() function
/third_party/typescript/src/services/
Dbreakpoints.ts148 case SyntaxKind.ForStatement:
149 return spanInForStatement(node as ForStatement);
317 case SyntaxKind.ForStatement:
494 case SyntaxKind.ForStatement:
503 …function spanInInitializerOfForLike(forLikeStatement: ForStatement | ForOfStatement | ForInStateme…
517 function spanInForStatement(forStatement: ForStatement): TextSpan | undefined {
681 case SyntaxKind.ForStatement:
DdocumentHighlights.ts192 case SyntaxKind.ForStatement:
298 case SyntaxKind.ForStatement:
/third_party/skia/src/sksl/analysis/
DSkSLCanExitWithoutReturningValue.cpp61 const ForStatement& f = stmt.as<ForStatement>(); in visitStatement()
DSkSLCheckProgramUnrolledSize.cpp114 const ForStatement& forStmt = stmt.as<ForStatement>(); in CheckProgramUnrolledSize()
/third_party/typescript/tests/baselines/reference/
DAPISample_linter.js27 case ts.SyntaxKind.ForStatement:
89 case ts.SyntaxKind.ForStatement:
DparserRealSource11.symbols5524 export class ForStatement extends Statement {
5525 >ForStatement : Symbol(ForStatement, Decl(parserRealSource11.ts, 1802, 5))
5529 >cond : Symbol(ForStatement.cond, Decl(parserRealSource11.ts, 1804, 49))
5533 >body : Symbol(ForStatement.body, Decl(parserRealSource11.ts, 1805, 25))
5537 >incr : Symbol(ForStatement.incr, Decl(parserRealSource11.ts, 1806, 25))
5541 >init : Symbol(ForStatement.init, Decl(parserRealSource11.ts, 1809, 21))
5549 >isLoop : Symbol(ForStatement.isLoop, Decl(parserRealSource11.ts, 1811, 9))
5552 >emit : Symbol(ForStatement.emit, Decl(parserRealSource11.ts, 1813, 40))
5561 >this : Symbol(ForStatement, Decl(parserRealSource11.ts, 1802, 5))
5565 >this : Symbol(ForStatement, Decl(parserRealSource11.ts, 1802, 5))
[all …]
DparserRealSource12.types1331 …s[NodeType.For] = ChildrenWalkers.walkForStatementChildren : (preAst: ForStatement, parent: AST, w…
1339 >ChildrenWalkers.walkForStatementChildren : (preAst: ForStatement, parent: AST, walker: IAstWalker)…
1341 >walkForStatementChildren : (preAst: ForStatement, parent: AST, walker: IAstWalker) => void
2431 …export function walkForStatementChildren(preAst: ForStatement, parent: AST, walker: IAstWalker): v…
2432 >walkForStatementChildren : (preAst: ForStatement, parent: AST, walker: IAstWalker) => void
2433 >preAst : ForStatement
2439 >preAst : ForStatement
2445 >preAst : ForStatement
2452 >preAst : ForStatement
2454 >preAst : ForStatement
[all …]
DparserRealSource11.js1806 export class ForStatement extends Statement {
4121 var ForStatement = /** @class */ (function (_super) { class
4122 __extends(ForStatement, _super);
4123 function ForStatement(init) { class in anonymousFunction7ebaa5690600.ForStatement
4128 ForStatement.prototype.isLoop = function () { return true; }; class
4129 ForStatement.prototype.emit = function (emitter, tokenId, startLine) {
4153 ForStatement.prototype.typeCheck = function (typeFlow) {
4156 ForStatement.prototype.addToControlFlow = function (context) {
4210 return ForStatement;
4212 TypeScript.ForStatement = ForStatement;
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.h26 class ForStatement; variable
158 void writeForStatement(const ForStatement& f);
DSkSLMetalCodeGenerator.h28 class ForStatement; variable
243 void writeForStatement(const ForStatement& f);
DSkSLPipelineStageCodeGenerator.cpp101 void writeForStatement(const ForStatement& f);
668 this->writeForStatement(s.as<ForStatement>()); in writeStatement()
722 void PipelineStageCodeGenerator::writeForStatement(const ForStatement& f) { in writeForStatement()
DSkSLSPIRVCodeGenerator.h33 class ForStatement; variable
397 void writeForStatement(const ForStatement& f, OutputStream& out);
/third_party/typescript/src/compiler/transformers/
Des2015.ts169ForStatement = 1 << 11, // Enclosing block-scoped container is a ForStatement
186 …s = TopLevel | Block | IterationStatement | IterationStatementBlock | ForStatement | ForInOrForOfS…
215 ForStatementIncludes = IterationStatement | ForStatement | IterationContainer,
216 ForStatementExcludes = BlockScopeExcludes & ~ForStatement,
461 case SyntaxKind.ForStatement:
462 … return visitForStatement(node as ForStatement, /*outermostLabeledStatement*/ undefined);
2293 …&& (hierarchyFacts & (HierarchyFacts.ForStatement | HierarchyFacts.ForInOrForOfStatement)) === 0));
2368 case SyntaxKind.ForStatement:
2369 return visitForStatement(node as ForStatement, outermostLabeledStatement);
2392 …function visitForStatement(node: ForStatement, outermostLabeledStatement: LabeledStatement | undef…
[all …]
Dgenerators.ts368 case SyntaxKind.ForStatement:
369 return visitForStatement(node as ForStatement);
1220 case SyntaxKind.ForStatement:
1221 return transformAndEmitForStatement(node as ForStatement);
1420 function transformAndEmitForStatement(node: ForStatement) {
1486 function visitForStatement(node: ForStatement) {
/third_party/skia/src/sksl/
DSkSLInliner.cpp260 if (!parentStmt || !(parentStmt->is<IfStatement>() || parentStmt->is<ForStatement>() || in ensureScopedBlocks()
506 const ForStatement& f = statement.as<ForStatement>(); in inlineStatement()
519 return ForStatement::Make(*fContext, line, std::move(initializer), expr(f.test()), in inlineStatement()
865 ForStatement& forStmt = (*stmt)->as<ForStatement>(); in visitStatement()
DSkSLAnalysis.cpp491 if (s.is<ForStatement>()) { in visitStatement()
492 const ForStatement& f = s.as<ForStatement>(); in visitStatement()
742 auto& f = s.template as<ForStatement>(); in visitStatement()
DSkSLAnalysis.h22 class ForStatement; variable
DSkSLDehydrator.cpp479 const ForStatement& f = s->as<ForStatement>(); in write()
/third_party/typescript/tests/cases/compiler/
DAPISample_linter.ts30 case ts.SyntaxKind.ForStatement:
/third_party/typescript/src/services/codefixes/
DfixUnreachableCode.ts46 case SyntaxKind.ForStatement:
/third_party/typescript/src/compiler/transformers/module/
Dsystem.ts1176 case SyntaxKind.ForStatement:
1177 return visitForStatement(node as ForStatement, /*isTopLevel*/ true);
1234 … function visitForStatement(node: ForStatement, isTopLevel: boolean): VisitResult<Statement> {
1486 case SyntaxKind.ForStatement:
1487 return visitForStatement(node as ForStatement, /*isTopLevel*/ false);
/third_party/typescript/src/services/formatting/
Drules.ts436 return context.contextNode.kind === SyntaxKind.ForStatement;
645 case SyntaxKind.ForStatement:
823 case SyntaxKind.ForStatement:
883 return context.currentTokenParent.kind !== SyntaxKind.ForStatement
/third_party/node/deps/v8/src/parsing/
Dparser.h113 using ForStatement = v8::internal::ForStatement*;
393 ForStatement* loop, Statement* init, Expression* cond, Statement* next,

1234