Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dstatement.c1731 CompoundAsmStatement::CompoundAsmStatement(Loc loc, Statements *s, StorageClass stc) in CompoundAsmStatement() function
1737 CompoundAsmStatement *CompoundAsmStatement::syntaxCopy() in syntaxCopy()
1746 return new CompoundAsmStatement(loc, a, stc); in syntaxCopy()
1749 Statements *CompoundAsmStatement::flatten(Scope *) in flatten()
H A Dstatement.h761 class CompoundAsmStatement : public CompoundStatement
766 CompoundAsmStatement(Loc loc, Statements *s, StorageClass stc);
767 CompoundAsmStatement *syntaxCopy();
H A Dblockexit.c483 void visit(CompoundAsmStatement *s) in blockExit()
H A Dvisitor.h57 class CompoundAsmStatement; variable
351 virtual void visit(CompoundAsmStatement *s) { visit((CompoundStatement *)s); } in visit()
H A Dstatementsem.c3714 void visit(CompoundAsmStatement *cas) in visit()
H A Dparse.c5842 s = new CompoundAsmStatement(loc, statements, stc); in parseStatement()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dstatement.h748 class CompoundAsmStatement : public CompoundStatement
753 CompoundAsmStatement *syntaxCopy();
H A Dstatement.d2010 extern (C++) final class CompoundAsmStatement : CompoundStatement
2020 override CompoundAsmStatement syntaxCopy() in syntaxCopy()
2027 return new CompoundAsmStatement(loc, a, stc); in syntaxCopy()
H A Dblockexit.d505 override void visit(CompoundAsmStatement s) in blockExit()
H A Dvisitor.h57 class CompoundAsmStatement; variable
427 virtual void visit(CompoundAsmStatement *s) { visit((CompoundStatement *)s); } in visit()
H A Dparsetimevisitor.d133 void visit(AST.CompoundAsmStatement s) { visit(cast(AST.CompoundStatement)s); } in ParseTimeVisitor()
H A Dstatementsem.d3908 override void visit(CompoundAsmStatement cas) in package()
H A Dparse.d6902 auto s = new AST.CompoundAsmStatement(loc, statements, stc); in parseAsm()