HomeSort by relevance Sort by last modified time
    Searched refs:CompoundStmt (Results 1 - 25 of 64) 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_object_ref_count.h 49 clang::CompoundStmt *mCS; // Associated compound statement ({ ... })
53 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) {
145 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.cpp 95 // This function constructs a new CompoundStmt from the input StmtList.
96 static clang::CompoundStmt* BuildCompoundStmt(clang::ASTContext &C,
111 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
120 clang::CompoundStmt *CS,
124 clang::CompoundStmt::body_iterator bI = CS->body_begin();
125 clang::CompoundStmt::body_iterator bE = CS->body_end();
154 // When S is NULL, we are appending to the end of the CompoundStmt.
195 // This should always be a CompoundStmt.
219 // current outermost CompoundStmt
    [all...]
  /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]);
248 CompoundStmt *SubStmt)
274 CompoundStmt *getSubStmt() const {
275 return reinterpret_cast<CompoundStmt *>(SubStmt);
StmtObjC.h 281 const CompoundStmt *getSynchBody() const {
282 return reinterpret_cast<CompoundStmt*>(SubStmts[SYNC_BODY]);
284 CompoundStmt *getSynchBody() {
285 return reinterpret_cast<CompoundStmt*>(SubStmts[SYNC_BODY]);
Stmt.h 135 friend class CompoundStmt;
439 /// expressions. For example, CompoundStmt mixes statements, expressions
547 /// CompoundStmt - This represents a group of statements like { stmt stmt }.
549 class CompoundStmt : public Stmt {
553 CompoundStmt(const ASTContext &C, ArrayRef<Stmt*> Stmts,
557 explicit CompoundStmt(SourceLocation Loc)
563 explicit CompoundStmt(EmptyShell Empty)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 144 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt1)) {
148 if (const CompoundStmt *CompStmt = dyn_cast<CompoundStmt>(Stmt2)) {
412 const CompoundStmt *CompStmt1 = cast<CompoundStmt>(Stmt1);
413 const CompoundStmt *CompStmt2 = cast<CompoundStmt>(Stmt2);
418 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin();
419 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin()
    [all...]
CheckSecuritySyntaxOnly.cpp 80 void VisitCompoundStmt (CompoundStmt *S);
163 void WalkAST::VisitCompoundStmt(CompoundStmt *S) {
  /external/clang/lib/AST/
StmtPrinter.cpp 65 void PrintRawCompoundStmt(CompoundStmt *S);
115 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
142 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
186 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
199 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
226 // Pretty print compoundstmt bodies (very common).
227 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody()))
    [all...]
  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 89 bool VisitCompoundStmt(CompoundStmt *S) {
158 CompoundStmt *S = E->getSubStmt();
159 for (CompoundStmt::body_iterator
168 bool VisitCompoundStmt(CompoundStmt *S) {
188 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 256 CompoundStmt *S = E->getSubStmt();
257 for (CompoundStmt::body_iterator
266 bool VisitCompoundStmt(CompoundStmt *S) {
TransRetainReleaseDealloc.cpp 364 CompoundStmt *CompS = dyn_cast_or_null<CompoundStmt>(*StmtExprChild);
  /external/lldb/source/Expression/
ASTStructExtractor.cpp 66 CompoundStmt *body_compound_stmt = dyn_cast<CompoundStmt>(body_stmt);
75 for (CompoundStmt::const_body_iterator bi = body_compound_stmt->body_begin(), be = body_compound_stmt->body_end();
ASTResultSynthesizer.cpp 155 CompoundStmt *compound_stmt = dyn_cast<CompoundStmt>(function_body);
203 CompoundStmt *compound_stmt = dyn_cast<CompoundStmt>(method_body);
224 ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body,
  /external/lldb/include/lldb/Core/
ClangForward.h 39 class CompoundStmt;
  /external/lldb/include/lldb/Expression/
ASTResultSynthesizer.h 153 bool SynthesizeBodyResult(clang::CompoundStmt *Body,
  /external/clang/lib/Analysis/
BodyFarm.cpp 57 CompoundStmt *makeCompound(ArrayRef<Stmt*>);
107 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
108 return new (C) CompoundStmt(C, Stmts, SourceLocation(), SourceLocation());
229 CompoundStmt *CS = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
340 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
CFG.cpp 83 /// - Before processing statements in scope (e.g. CompoundStmt) create
358 CFGBlock *VisitCompoundStmt(CompoundStmt *C);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 33 class CompoundStmt;
228 static PathDiagnosticLocation createBeginBrace(const CompoundStmt *CS,
233 static PathDiagnosticLocation createEndBrace(const CompoundStmt *CS,
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 600 if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(S))
627 PathDiagnosticLocation::createBeginBrace(const CompoundStmt *CS,
634 PathDiagnosticLocation::createEndBrace(const CompoundStmt *CS,
644 if (const CompoundStmt *CS =
645 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 272 if (CompoundStmt* cs = dyn_cast<CompoundStmt>(method->getBody())) {
  /external/chromium_org/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 210 case Stmt::CompoundStmtClass: EmitCompoundStmt(cast<CompoundStmt>(*S)); break;
228 llvm::Value* CodeGenFunction::EmitCompoundStmt(const CompoundStmt &S, bool GetLast,
240 CodeGenFunction::EmitCompoundStmtWithoutScope(const CompoundStmt &S,
244 for (CompoundStmt::const_body_iterator I = S.body_begin(),
    [all...]

Completed in 546 milliseconds

1 2 3