HomeSort by relevance Sort by last modified time
    Searched full:compoundstmt (Results 26 - 50 of 104) sorted by null

12 3 4 5

  /external/clang/test/Index/
TestClassDecl.m 28 // CHECK-scan: [14:1 - 16:2] CompoundStmt=
annotate-attribute.cpp 31 // CHECK-NEXT: CompoundStmt= Extent=[12:23 - 12:25]
annotate-tokens.c 76 // CHECK: Punctuation: ";" [5:18 - 5:19] CompoundStmt=
108 // CHECK: Punctuation: "}" [10:1 - 10:2] CompoundStmt=
123 // CHECK: Punctuation: ";" [20:10 - 20:11] CompoundStmt=
124 // CHECK: Punctuation: "}" [21:3 - 21:4] CompoundStmt=
139 // CHECK: Punctuation: "{" [24:14 - 24:15] CompoundStmt=
145 // CHECK: Punctuation: ";" [26:17 - 26:18] CompoundStmt=
151 // CHECK: Punctuation: ";" [29:16 - 29:17] CompoundStmt=
157 // CHECK: Punctuation: ";" [32:15 - 32:16] CompoundStmt=
print-type.cpp 38 // CHECK: CompoundStmt= [type=] [typekind=Invalid] [isPOD=0]
46 // CHECK: CompoundStmt= [type=] [typekind=Invalid] [isPOD=0]
usrs.m 159 // CHECK-source: usrs.m:3:43: CompoundStmt= Extent=[3:43 - 3:60]
193 // CHECK-source: usrs.m:35:17: CompoundStmt= Extent=[35:17 - 39:2]
204 // CHECK-source: usrs.m:40:17: CompoundStmt= Extent=[40:17 - 43:2]
214 // CHECK-source: usrs.m:49:30: CompoundStmt= Extent=[49:30 - 49:43]
235 // CHECK-source: usrs.m:64:14: CompoundStmt= Extent=[64:14 - 64:27]
241 // CHECK-source: usrs.m:65:14: CompoundStmt= Extent=[65:14 - 65:27]
247 // CHECK-source: usrs.m:66:14: CompoundStmt= Extent=[66:14 - 66:27]
255 // CHECK-source: usrs.m:69:14: CompoundStmt= Extent=[69:14 - 69:27]
264 // CHECK-source: usrs.m:73:34: CompoundStmt= Extent=[73:34 - 77:2]
annotate-literals.m 71 // CHECK-LITERALS: Punctuation: "}" [37:1 - 37:2] CompoundStmt=
arc-annotate.m 52 // CHECK: Punctuation: ";" [9:11 - 9:12] CompoundStmt=
cxx11-lambdas.cpp 20 // CHECK-LOAD: cxx11-lambdas.cpp:7:60: CompoundStmt= Extent=[7:60 - 9:6]
print-type.c 23 // CHECK: CompoundStmt= [type=] [typekind=Invalid] [isPOD=0]
recursive-cxx-member-calls.cpp 467 // CHECK-tokens: Punctuation: "{" [45:41 - 45:42] CompoundStmt=
476 // CHECK-tokens: Punctuation: ";" [45:63 - 45:64] CompoundStmt=
477 // CHECK-tokens: Punctuation: "}" [45:65 - 45:66] CompoundStmt=
    [all...]
  /external/clang/test/Misc/
ast-dump-decl.m 45 // CHECK-NEXT: CompoundStmt
136 // CHECK-NEXT: CompoundStmt
ast-dump-decl.c 113 // CHECK-NEXT: CompoundStmt
ast-dump-color.cpp 43 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[MAGENTA:.\[0;1;35m]]CompoundStmt[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:9:27[[RESET]], [[Yellow]]line:16:1[[RESET]]>{{$}}
47 //CHECK: {{^}}[[Blue]]| | `-[[RESET]][[MAGENTA]]CompoundStmt[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:14[[RESET]], [[Yellow]]line:15:3[[RESET]]>{{$}}
75 //CHECK: {{^}}[[Blue]]| | `-[[RESET]][[MAGENTA]]CompoundStmt[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]>{{$}}
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 108 has(compoundStmt(has(stmt().bind("id"))))),
123 has(compoundStmt(has(stmt().bind("id"))))),
  /external/clang/lib/Analysis/
BodyFarm.cpp 58 CompoundStmt *makeCompound(ArrayRef<Stmt*>);
105 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
106 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
217 CompoundStmt *CS = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
328 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
CFG.cpp 82 /// - Before processing statements in scope (e.g. CompoundStmt) create
357 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
926 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
927 for (CompoundStmt::body_iterator BI = CS->body_begin(), BE = CS->body_end()
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h 131 friend class CompoundStmt;
444 /// expressions. For example, CompoundStmt mixes statements, expressions
546 /// CompoundStmt - This represents a group of statements like { stmt stmt }.
548 class CompoundStmt : public Stmt {
552 CompoundStmt(ASTContext &C, ArrayRef<Stmt*> Stmts,
556 explicit CompoundStmt(SourceLocation Loc)
562 explicit CompoundStmt(EmptyShell Empty)
    [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 164 bool VisitCompoundStmt(CompoundStmt *S) {
227 CompoundStmt *CompoundParent;
296 void handlePoolScope(PoolScope &scope, CompoundStmt *compoundS) {
Transforms.cpp 250 CompoundStmt *S = E->getSubStmt();
251 for (CompoundStmt::body_iterator
260 bool VisitCompoundStmt(CompoundStmt *S) {
261 for (CompoundStmt::body_iterator
TransRetainReleaseDealloc.cpp 364 CompoundStmt *CompS = dyn_cast_or_null<CompoundStmt>(*StmtExprChild);
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 526 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S))
545 PathDiagnosticLocation::createBeginBrace(const CompoundStmt *CS,
552 PathDiagnosticLocation::createEndBrace(const CompoundStmt *CS,
562 if (const CompoundStmt *CS =
563 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
    [all...]
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 151 CompoundStmt *CS = cast<StmtExpr>(S)->getSubStmt();
  /external/clang/include/clang/Basic/
StmtNodes.td 13 def CompoundStmt : Stmt;
  /external/clang/docs/
IntroductionToTheClangAST.rst 60 (CompoundStmt 0x48a5a38 <t2.cc:1:14, line:4:1>

Completed in 1466 milliseconds

12 3 4 5