HomeSort by relevance Sort by last modified time
    Searched refs:DeclStmt (Results 26 - 50 of 63) sorted by null

12 3

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 232 void processStaticInitializer(const DeclStmt *DS,
357 void VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred,
CoreEngine.h 100 void HandleStaticInit(const DeclStmt *DS, const CFGBlock *B,
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 313 else if (const DeclStmt *DS = dyn_cast<DeclStmt>(S))
MallocSizeofChecker.cpp 103 TypeCallPair VisitDeclStmt(const DeclStmt *S) {
BasicObjCFoundationChecks.cpp 925 if (const DeclStmt *DS = dyn_cast<DeclStmt>(Element)) {
    [all...]
CStringChecker.cpp 33 check::PreStmt<DeclStmt>,
63 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 73 return new (Context) DeclStmt(DG, StartLoc, EndLoc);
317 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
320 // We found the end of the list or a statement. Scan for another declstmt.
321 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
325 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
    [all...]
JumpDiagnostics.cpp 211 /// \brief Build scope information for a declaration that is part of a DeclStmt.
371 // If this is a declstmt with a VLA definition, it defines a scope from here
373 if (DeclStmt *DS = dyn_cast<DeclStmt>(SubStmt)) {
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 351 HandleStaticInit(cast<DeclStmt>(Term), B, Pred);
465 void CoreEngine::HandleStaticInit(const DeclStmt *DS, const CFGBlock *B,
ExprEngineCXX.cpp 129 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StmtElem->getStmt())) {
BugReporterVisitors.cpp 421 /// Returns true if \p N represents the DeclStmt declaring and initializing
428 const DeclStmt *DS = P->getStmtAs<DeclStmt>();
554 const DeclStmt *DS = dyn_cast<DeclStmt>(S);
    [all...]
PathDiagnostic.cpp 820 const DeclStmt *DS = cast<DeclStmt>(S);
    [all...]
ExprEngineC.cpp 443 void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred,
445 // Assumption: The CFG has one DeclStmt per Decl.
    [all...]
ExprEngine.cpp     [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 890 VISIT(DeclStmt);
1133 DECL_VISIT_STMT(DeclStmt) {
1135 clang::DeclStmt::decl_iterator end = stmt->decl_end();
1136 for (clang::DeclStmt::decl_iterator decl = stmt->decl_begin();
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 458 // (DeclStmt "int rsIntIter")
492 StmtArray[StmtCtr++] = new(C) clang::DeclStmt(DGR, Loc, Loc);
861 StmtArray[StmtCtr++] = new(C) clang::DeclStmt(DGR, Loc, Loc);
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 288 til::SExpr *translateDeclStmt(const DeclStmt *S, CallingContext *Ctx);
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 154 return translateDeclStmt(cast<DeclStmt>(S), Ctx);
405 SExprBuilder::translateDeclStmt(const DeclStmt *S, CallingContext *Ctx) {
ThreadSafety.cpp     [all...]
Consumed.cpp 499 void VisitDeclStmt(const DeclStmt *DelcS);
846 void ConsumedStmtVisitor::VisitDeclStmt(const DeclStmt *DeclS) {
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 63 assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!");
211 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
691 // because it might be a singleton DeclStmt.
    [all...]
CGObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 56 // Statement names (DeclStmt, ImplicitCastExpr, etc)
303 void VisitDeclStmt(const DeclStmt *Node);
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 504 bool IsDeclStmtInForeachHeader(DeclStmt *DS);
    [all...]
RewriteObjC.cpp 409 bool IsDeclStmtInForeachHeader(DeclStmt *DS);
    [all...]

Completed in 457 milliseconds

12 3