HomeSort by relevance Sort by last modified time
    Searched refs:CompoundStmt (Results 1 - 25 of 63) sorted by null

1 2 3

  /frameworks/compile/slang/
slang_rs_ast_replace.h 56 void ReplaceInCompoundStmt(clang::CompoundStmt *CS);
69 void VisitCompoundStmt(clang::CompoundStmt *CS);
slang_rs_ast_replace.cpp 42 void RSASTReplace::ReplaceInCompoundStmt(clang::CompoundStmt *CS) {
46 clang::CompoundStmt::body_iterator bI = CS->body_begin();
47 clang::CompoundStmt::body_iterator bE = CS->body_end();
77 void RSASTReplace::VisitCompoundStmt(clang::CompoundStmt *CS) {
slang_rs_object_ref_count.h 53 clang::CompoundStmt *mCS; // Associated compound statement ({ ... })
59 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) {
150 static clang::CompoundStmt* CreateRetStmtWithTempVar(
283 void VisitCompoundStmt(clang::CompoundStmt *CS);
slang_rs_object_ref_count.cpp 102 // This function constructs a new CompoundStmt from the input StmtList.
103 clang::CompoundStmt* BuildCompoundStmt(clang::ASTContext &C,
118 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
127 clang::CompoundStmt *CS,
131 clang::CompoundStmt::body_iterator bI = CS->body_begin();
132 clang::CompoundStmt::body_iterator bE = CS->body_end();
161 // When S is nullptr, we are appending to the end of the CompoundStmt.
669 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 116 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(Stmt1)) {
162 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt1)) {
166 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt2)) {
429 const CompoundStmt *CompStmt1 = cast<CompoundStmt>(Stmt1);
430 const CompoundStmt *CompStmt2 = cast<CompoundStmt>(Stmt2)
    [all...]
CheckSecuritySyntaxOnly.cpp 81 void VisitCompoundStmt (CompoundStmt *S);
163 void WalkAST::VisitCompoundStmt(CompoundStmt *S) {
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 89 bool VisitCompoundStmt(CompoundStmt *S) {
156 CompoundStmt *S = E->getSubStmt();
157 for (CompoundStmt::body_iterator
166 bool VisitCompoundStmt(CompoundStmt *S) {
186 static bool isBodyEmpty(CompoundStmt *body, ASTContext &Ctx,
TransAutoreleasePool.cpp 164 bool VisitCompoundStmt(CompoundStmt *S) {
227 CompoundStmt *CompoundParent;
296 void handlePoolScope(PoolScope &scope, CompoundStmt *compoundS) {
Transforms.cpp 252 CompoundStmt *S = E->getSubStmt();
253 for (CompoundStmt::body_iterator
262 bool VisitCompoundStmt(CompoundStmt *S) {
TransRetainReleaseDealloc.cpp 354 auto *CompS = dyn_cast_or_null<CompoundStmt>(*StmtExprChild.begin());
  /external/clang/include/clang/AST/
StmtCXX.h 96 CompoundStmt *getTryBlock() {
97 return cast<CompoundStmt>(getStmts()[0]);
99 const CompoundStmt *getTryBlock() const {
100 return cast<CompoundStmt>(getStmts()[0]);
254 CompoundStmt *SubStmt)
280 CompoundStmt *getSubStmt() const {
281 return reinterpret_cast<CompoundStmt *>(SubStmt);
330 /// a CompoundStmt or a TryStmt.
StmtObjC.h 282 const CompoundStmt *getSynchBody() const {
283 return reinterpret_cast<CompoundStmt*>(SubStmts[SYNC_BODY]);
285 CompoundStmt *getSynchBody() {
286 return reinterpret_cast<CompoundStmt*>(SubStmts[SYNC_BODY]);
Stmt.h 90 friend class CompoundStmt;
439 /// expressions. For example, CompoundStmt mixes statements, expressions
549 /// CompoundStmt - This represents a group of statements like { stmt stmt }.
551 class CompoundStmt : public Stmt {
558 CompoundStmt(const ASTContext &C, ArrayRef<Stmt*> Stmts,
562 explicit CompoundStmt(SourceLocation Loc)
568 explicit CompoundStmt(EmptyShell Empty)
    [all...]
Decl.h 36 class CompoundStmt;
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 67 void PrintRawCompoundStmt(CompoundStmt *S);
117 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
144 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
188 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
201 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
228 // Pretty print compoundstmt bodies (very common).
229 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody()))
    [all...]
Stmt.cpp 124 else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
282 CompoundStmt::CompoundStmt(const ASTContext &C, ArrayRef<Stmt*> Stmts,
298 void CompoundStmt::setStmts(const ASTContext &C, ArrayRef<Stmt *> Stmts) {
    [all...]
ExprClassification.cpp 376 const CompoundStmt *S = cast<StmtExpr>(E)->getSubStmt();
  /external/clang/lib/Analysis/
BodyFarm.cpp 55 CompoundStmt *makeCompound(ArrayRef<Stmt*>);
105 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
106 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
225 CompoundStmt *CS = M.makeCompound(Stmts);
337 CompoundStmt *Body = M.makeCompound(Stmts);
CFG.cpp 155 /// - Before processing statements in scope (e.g. CompoundStmt) create
435 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 33 class CompoundStmt;
232 static PathDiagnosticLocation createBeginBrace(const CompoundStmt *CS,
237 static PathDiagnosticLocation createEndBrace(const CompoundStmt *CS,
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 597 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S))
624 PathDiagnosticLocation::createBeginBrace(const CompoundStmt *CS,
631 PathDiagnosticLocation::createEndBrace(const CompoundStmt *CS,
641 if (const CompoundStmt *CS =
642 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 869 VISIT(CompoundStmt);
995 DECL_VISIT_STMT(CompoundStmt) {
997 clang::CompoundStmt::body_iterator end = stmt->body_end();
998 for (clang::CompoundStmt::body_iterator s = stmt->body_begin();
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 305 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
324 Address CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
336 CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
340 for (CompoundStmt::const_body_iterator I = S.body_begin(),
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/v8/tools/clang/plugins/
FindBadConstructsConsumer.cpp 602 if (CompoundStmt* cs = dyn_cast<CompoundStmt>(method->getBody())) {
    [all...]

Completed in 578 milliseconds

1 2 3