HomeSort by: relevance | last modified time | path
    Searched refs:CompoundStatement (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statement.h 30 class CompoundStatement;
132 CompoundStatement *isCompoundStatement() { return stmt == STMTcompound ? (CompoundStatement*)this : NULL; }
216 class CompoundStatement : public Statement
221 static CompoundStatement *create(const Loc &loc, Statement *s1, Statement *s2);
222 CompoundStatement *syntaxCopy();
229 class CompoundDeclarationStatement : public CompoundStatement
748 class CompoundAsmStatement : public CompoundStatement
statement_rewrite_walker.d 49 override void visit(CompoundStatement s)
63 visit(cast(CompoundStatement)s);
statementsem.d 236 Statement s = new CompoundStatement(cs.loc, a);
240 override void visit(CompoundStatement cs)
242 //printf("CompoundStatement::semantic(this = %p, sc = %p)\n", cs, sc);
332 Statement _body = new CompoundStatement(Loc.initial, a);
342 handler = new CompoundStatement(Loc.initial, handler, ts);
376 auto _body = new CompoundStatement(Loc.initial, a);
407 * 'semantic' may return another CompoundStatement
472 ss.statement = new CompoundStatement(ss.loc, a);
495 ss.statement = new CompoundStatement(ss.loc, ss.statement, sfinally);
606 Statement s = new CompoundStatement(fs.loc, ainit)
    [all...]
sapply.d 69 override void visit(CompoundStatement s)
semantic3.d 604 funcdecl.fbody = new CompoundStatement(Loc.initial, new Statements());
733 funcdecl.fbody = new CompoundStatement(Loc.initial, s, funcdecl.fbody);
788 funcdecl.fbody = new CompoundStatement(funcdecl.loc, funcdecl.fbody, s);
799 funcdecl.fbody = new CompoundStatement(Loc.initial, funcdecl.fbody, s);
1095 freq = new CompoundStatement(Loc.initial, freq, fpreinv);
1108 fens = new CompoundStatement(Loc.initial, fpostinv, fens);
1134 Statement sbody = new CompoundStatement(Loc.initial, a);
1170 sbody = new CompoundStatement(Loc.initial, sbody, s);
1455 auto handler = new CompoundStatement(ctor.loc, ss, ts);
1471 ctor.fbody = new CompoundStatement(ctor.loc, s, ctor.fbody)
    [all...]
statement.d 307 override void visit(CompoundStatement s)
373 inout(CompoundStatement) isCompoundStatement() { return stmt == STMT.Compound ? cast(typeof(return))this : null; }
546 extern (C++) class CompoundStatement : Statement
551 * Construct a `CompoundStatement` using an already existing
571 * Construct a `CompoundStatement` from an array of `Statement`s
587 static CompoundStatement create(const ref Loc loc, Statement s1, Statement s2)
589 return new CompoundStatement(loc, s1, s2);
592 override CompoundStatement syntaxCopy()
594 return new CompoundStatement(loc, Statement.arraySyntaxCopy(statements));
634 extern (C++) final class CompoundDeclarationStatement : CompoundStatement
    [all...]
cond.d 368 s1.push(createForeach(aloc, pparams[0], new CompoundStatement(aloc, sfe)));
370 Type ety = new TypeTypeof(aloc, wrapAndCall(aloc, new CompoundStatement(aloc, s1)));
424 aggr = wrapAndCall(aloc, new CompoundStatement(aloc, s2));
foreachvar.d 177 void visitCompound(CompoundStatement s)
visitor.h 20 class CompoundStatement;
423 virtual void visit(CompoundStatement *s) { visit((Statement *)s); }
426 virtual void visit(CompoundDeclarationStatement *s) { visit((CompoundStatement *)s); }
427 virtual void visit(CompoundAsmStatement *s) { visit((CompoundStatement *)s); }
func.d 134 s1 = new CompoundStatement(s.loc, new ExpStatement(s.loc, s.exp), gs);
175 handler = new CompoundStatement(Loc.initial, handler, ts);
2356 Statement s3 = new CompoundStatement(loc, s2, fail);
2412 frequire = new CompoundStatement(loc, s);
2437 s.push(new ScopeStatement(rloc, new CompoundStatement(rloc, sdecl, r.ensure), rloc));
2444 fensure = new CompoundStatement(loc, s);
2498 frequire = new CompoundStatement(loc, s1, s2);
2541 fensure = new CompoundStatement(loc, s1, s2);
2608 sf = new CompoundStatement(sf.loc, s2, sf);
clone.d 370 fop.fbody = new CompoundStatement(loc, s1, s2);
1087 func.fbody = new CompoundStatement(loc, stmts);
1321 postblitCalls.push(new ScopeGuardStatement(loc, TOK.onScopeFailure, new CompoundStatement(loc, dtors)));
1414 dd.fbody = (stc & STC.disable) ? null : new CompoundStatement(loc, postblitCalls);
1529 * A `CompoundStatement` containing the body of the copy constructor.
1544 return new CompoundStatement(loc, s1);
parsetimevisitor.d 129 void visit(AST.CompoundStatement s) { visit(cast(AST.Statement)s); }
132 void visit(AST.CompoundDeclarationStatement s) { visit(cast(AST.CompoundStatement)s); }
133 void visit(AST.CompoundAsmStatement s) { visit(cast(AST.CompoundStatement)s); }
transitivevisitor.d 52 override void visit(AST.CompoundStatement s)
54 //printf("Visiting CompoundStatement\n");
836 AST.CompoundStatement cs = f.fbody.isCompoundStatement();
blockexit.d 123 override void visit(CompoundStatement cs)
125 //printf("CompoundStatement.blockExit(%p) %d result = x%X\n", cs, cs.statements.dim, result);
cparse.d 372 s = new AST.CompoundStatement(loc, statements);
514 s = new AST.CompoundStatement(loc, statements);
537 s = new AST.CompoundStatement(loc, statements);
2012 body = new AST.CompoundStatement(locFunc, s, body);
initsem.d 258 fd.fbody = new CompoundStatement(i.loc, new Statements());
parse.d 5242 f.fbody = new AST.CompoundStatement(Loc.initial, cast(AST.Statement)null);
5887 s = new AST.CompoundStatement(loc, statements);
6209 s = new AST.CompoundStatement(loc, statements);
6244 s = new AST.CompoundStatement(loc, statements);
hdrgen.d 190 override void visit(CompoundStatement s)
1685 CompoundStatement cs = f.fbody.isCompoundStatement();
ob.d 400 void visitCompound(CompoundStatement s)
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Mutations.cpp 84 if (isa<CompoundStatement>(S->getParent())) {
85 // A child of CompoundStatement can just be safely removed.
Nodes.cpp 330 syntax::Leaf *syntax::CompoundStatement::getLbrace() {
334 std::vector<syntax::Statement *> syntax::CompoundStatement::getStatements() {
343 syntax::Leaf *syntax::CompoundStatement::getRbrace() {
Synthesis.cpp 136 case syntax::NodeKind::CompoundStatement:
137 return new (A.getAllocator()) syntax::CompoundStatement;
BuildTree.cpp 793 new (allocator()) syntax::CompoundStatement, S);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h 345 class CompoundStatement final : public Statement {
347 CompoundStatement() : Statement(NodeKind::CompoundStatement) {}
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 1082 void visit (CompoundStatement *s)

Completed in 71 milliseconds

1 2