Home
last modified time | relevance | path

Searched refs:CompoundStatement (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/include/clang/Tooling/Syntax/
H A DNodes.h29 CompoundStatement enumerator
74 return NodeKind::CompoundStatement <= N->kind() && in classof()
75 N->kind() <= NodeKind::CompoundStatement; in classof()
80 class CompoundStatement final : public Statement {
82 CompoundStatement() : Statement(NodeKind::CompoundStatement) {} in CompoundStatement() function
84 return N->kind() == NodeKind::CompoundStatement; in classof()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.rmic/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/tools/tree/
H A DCompoundStatement.java40 class CompoundStatement extends Statement { class
46 public CompoundStatement(long where, Statement args[]) { in CompoundStatement() method in CompoundStatement
52 args[i] = new CompoundStatement(where, new Statement[0]); in CompoundStatement()
100 count += ((CompoundStatement)s).args.length; in inline()
127 Statement a[] = ((CompoundStatement)s).args; in inline()
145 CompoundStatement s = (CompoundStatement)clone(); in copyInline()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/lib/Tooling/Syntax/
H A DNodes.cpp21 case NodeKind::CompoundStatement: in operator <<()
27 syntax::Leaf *syntax::CompoundStatement::lbrace() { in lbrace()
32 syntax::Leaf *syntax::CompoundStatement::rbrace() { in rbrace()
/dports/math/geogram/geogram-1.7.7/src/bin/fpg/
H A DAST.cpp152 CompoundStatement *compound = dynamic_cast<CompoundStatement*>( then_branch ); in ConditionalStatement()
156 this->then_branch = new CompoundStatement( slist ); in ConditionalStatement()
161 compound = dynamic_cast<CompoundStatement*>( else_branch ); in ConditionalStatement()
166 this->else_branch = new CompoundStatement( slist ); in ConditionalStatement()
244 ACCEPT(CompoundStatement) in ACCEPT()
376 CompoundStatement*
377 CompoundStatement::clone( Clone_context *context ) { in clone()
378 return update_location( this, new CompoundStatement( statements->clone( context ) ) ); in clone()
/dports/lang/cocor/cocor-1.7_3/samples/
H A Dclang1.atg28 CompoundStatement .
37 CompoundStatement = "BEGIN"
41 Statement = SYNC [ CompoundStatement | Assignment
/dports/lang/gcc9/gcc-9.4.0/gcc/d/dmd/
H A Dstatement.c221 void visit(CompoundStatement *) {} in hasCode()
526 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
532 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
541 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
548 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
550 return new CompoundStatement(loc, s1, s2); in create()
553 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
562 return new CompoundStatement(loc, a); in syntaxCopy()
587 Statement *CompoundStatement::last() in last()
606 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
H A Dstatement.h34 class CompoundStatement; variable
97 virtual CompoundStatement *isCompoundStatement() { return NULL; } in isCompoundStatement()
175 class CompoundStatement : public Statement
180 CompoundStatement(Loc loc, Statements *s);
181 CompoundStatement(Loc loc, Statement *s1);
182 CompoundStatement(Loc loc, Statement *s1, Statement *s2);
183 static CompoundStatement *create(Loc loc, Statement *s1, Statement *s2);
189 CompoundStatement *isCompoundStatement() { return this; } in isCompoundStatement()
193 class CompoundDeclarationStatement : public CompoundStatement
762 class CompoundAsmStatement : public CompoundStatement
/dports/devel/avr-gcc/gcc-10.2.0/gcc/d/dmd/
H A Dstatement.c222 void visit(CompoundStatement *) {} in hasCode()
534 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
540 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
549 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
556 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
558 return new CompoundStatement(loc, s1, s2); in create()
561 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
570 return new CompoundStatement(loc, a); in syntaxCopy()
595 Statement *CompoundStatement::last() in last()
614 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
H A Dstatement.h34 class CompoundStatement; variable
97 virtual CompoundStatement *isCompoundStatement() { return NULL; } in isCompoundStatement()
175 class CompoundStatement : public Statement
180 CompoundStatement(Loc loc, Statements *s);
181 CompoundStatement(Loc loc, Statement *s1);
182 CompoundStatement(Loc loc, Statement *s1, Statement *s2);
183 static CompoundStatement *create(Loc loc, Statement *s1, Statement *s2);
189 CompoundStatement *isCompoundStatement() { return this; } in isCompoundStatement()
193 class CompoundDeclarationStatement : public CompoundStatement
761 class CompoundAsmStatement : public CompoundStatement
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/d/dmd/
H A Dstatement.c222 void visit(CompoundStatement *) {} in hasCode()
534 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
540 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
549 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
556 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
558 return new CompoundStatement(loc, s1, s2); in create()
561 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
570 return new CompoundStatement(loc, a); in syntaxCopy()
595 Statement *CompoundStatement::last() in last()
614 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
H A Dstatement.h34 class CompoundStatement; variable
97 virtual CompoundStatement *isCompoundStatement() { return NULL; } in isCompoundStatement()
175 class CompoundStatement : public Statement
180 CompoundStatement(Loc loc, Statements *s);
181 CompoundStatement(Loc loc, Statement *s1);
182 CompoundStatement(Loc loc, Statement *s1, Statement *s2);
183 static CompoundStatement *create(Loc loc, Statement *s1, Statement *s2);
189 CompoundStatement *isCompoundStatement() { return this; } in isCompoundStatement()
193 class CompoundDeclarationStatement : public CompoundStatement
761 class CompoundAsmStatement : public CompoundStatement
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/d/dmd/
H A Dstatement.c221 void visit(CompoundStatement *) {} in hasCode()
526 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
532 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
541 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
548 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
550 return new CompoundStatement(loc, s1, s2); in create()
553 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
562 return new CompoundStatement(loc, a); in syntaxCopy()
587 Statement *CompoundStatement::last() in last()
606 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/d/dmd/
H A Dstatement.c222 void visit(CompoundStatement *) {} in hasCode()
534 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
540 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
549 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
556 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
558 return new CompoundStatement(loc, s1, s2); in create()
561 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
570 return new CompoundStatement(loc, a); in syntaxCopy()
595 Statement *CompoundStatement::last() in last()
614 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/d/dmd/
H A Dstatement.c221 void visit(CompoundStatement *) {} in hasCode()
526 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
532 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
541 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
548 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
550 return new CompoundStatement(loc, s1, s2); in create()
553 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
562 return new CompoundStatement(loc, a); in syntaxCopy()
587 Statement *CompoundStatement::last() in last()
606 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.h59 CompoundStatement, enumerator
146 N->kind() <= NodeKind::CompoundStatement; in classof()
303 class CompoundStatement final : public Statement {
305 CompoundStatement() : Statement(NodeKind::CompoundStatement) {} in CompoundStatement() function
307 return N->kind() == NodeKind::CompoundStatement; in classof()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/include/clang/Tooling/Syntax/
H A DNodes.h59 CompoundStatement, enumerator
146 N->kind() <= NodeKind::CompoundStatement; in classof()
303 class CompoundStatement final : public Statement {
305 CompoundStatement() : Statement(NodeKind::CompoundStatement) {} in CompoundStatement() function
307 return N->kind() == NodeKind::CompoundStatement; in classof()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/d/dmd/
H A Dstatement.c239 void visit(CompoundStatement *) {} in hasCode()
562 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
568 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
577 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
584 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
586 return new CompoundStatement(loc, s1, s2); in create()
589 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
594 Statements *CompoundStatement::flatten(Scope *) in flatten()
616 Statement *CompoundStatement::last() in last()
635 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
/dports/lang/gcc11/gcc-11.2.0/gcc/d/dmd/
H A Dstatement.c239 void visit(CompoundStatement *) {} in hasCode()
562 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
568 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
577 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
584 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
586 return new CompoundStatement(loc, s1, s2); in create()
589 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
594 Statements *CompoundStatement::flatten(Scope *) in flatten()
616 Statement *CompoundStatement::last() in last()
635 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/d/dmd/
H A Dstatement.c239 void visit(CompoundStatement *) {} in hasCode()
562 CompoundStatement::CompoundStatement(Loc loc, Statements *s) in CompoundStatement() function
568 CompoundStatement::CompoundStatement(Loc loc, Statement *s1, Statement *s2) in CompoundStatement() function
577 CompoundStatement::CompoundStatement(Loc loc, Statement *s1) in CompoundStatement() function
584 CompoundStatement *CompoundStatement::create(Loc loc, Statement *s1, Statement *s2) in create()
586 return new CompoundStatement(loc, s1, s2); in create()
589 Statement *CompoundStatement::syntaxCopy() in syntaxCopy()
594 Statements *CompoundStatement::flatten(Scope *) in flatten()
616 Statement *CompoundStatement::last() in last()
635 : CompoundStatement(loc, s) in CompoundDeclarationStatement()
[all …]

12345678910>>...23