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

12 3

  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 313 else if (const DeclStmt *DS = dyn_cast<DeclStmt>(S))
MallocSizeofChecker.cpp 102 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...]
NullabilityChecker.cpp 875 if (auto *DS = dyn_cast<DeclStmt>(S)) {
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 368 // (DeclStmt
415 clang::Stmt *Init = new(C) clang::DeclStmt(DGR, Loc, Loc);
773 StmtArray[StmtCtr++] = new(C) clang::DeclStmt(DGR, Loc, Loc);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 884 /// declStmt()
888 DeclStmt> declStmt;
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 78 return new (Context) DeclStmt(DG, StartLoc, EndLoc);
341 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
344 // We found the end of the list or a statement. Scan for another declstmt.
345 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
349 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
    [all...]
JumpDiagnostics.cpp 215 /// \brief Build scope information for a declaration that is part of a DeclStmt.
404 // If this is a declstmt with a VLA definition, it defines a scope from here
406 if (DeclStmt *DS = dyn_cast<DeclStmt>(SubStmt)) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 241 void processStaticInitializer(const DeclStmt *DS,
370 void VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred,
608 /// For a DeclStmt or CXXInitCtorInitializer, walk backward in the current CFG
616 /// CFGElement for the DeclStmt or CXXInitCtorInitializer for which is
CoreEngine.h 102 void HandleStaticInit(const DeclStmt *DS, const CFGBlock *B,
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 357 HandleStaticInit(cast<DeclStmt>(Term), B, Pred);
482 void CoreEngine::HandleStaticInit(const DeclStmt *DS, const CFGBlock *B,
ExprEngineCXX.cpp 117 auto *DS = cast<DeclStmt>(StmtElem->getStmt());
165 if (isa<DeclStmt>(StmtElem->getStmt())) {
BugReporterVisitors.cpp 417 /// Returns true if \p N represents the DeclStmt declaring and initializing
424 const DeclStmt *DS = P->getStmtAs<DeclStmt>();
550 const DeclStmt *DS = dyn_cast<DeclStmt>(S);
    [all...]
PathDiagnostic.cpp 821 const DeclStmt *DS = cast<DeclStmt>(S);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 873 VISIT(DeclStmt);
1117 DECL_VISIT_STMT(DeclStmt) {
1119 clang::DeclStmt::decl_iterator end = stmt->decl_end();
1120 for (clang::DeclStmt::decl_iterator decl = stmt->decl_begin();
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 397 til::SExpr *translateDeclStmt(const DeclStmt *S, CallingContext *Ctx);
  /external/clang/lib/Analysis/
ThreadSafety.cpp 419 /// CFG. It must be called for every assignment or DeclStmt.
558 void VisitDeclStmt(DeclStmt *S);
564 void VarMapBuilder::VisitDeclStmt(DeclStmt *S) {
    [all...]
Consumed.cpp 499 void VisitDeclStmt(const DeclStmt *DelcS);
846 void ConsumedStmtVisitor::VisitDeclStmt(const DeclStmt *DeclS) {
    [all...]
ThreadSafetyCommon.cpp 256 return translateDeclStmt(cast<DeclStmt>(S), Ctx);
587 SExprBuilder::translateDeclStmt(const DeclStmt *S, CallingContext *Ctx) {
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 66 assert(!isa<DeclStmt>(*S) && "Unexpected DeclStmt!");
276 case Stmt::DeclStmtClass: EmitDeclStmt(cast<DeclStmt>(*S)); break;
670 // because it might be a singleton DeclStmt.
    [all...]
CGObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 177 Stmt *VisitDeclStmt(DeclStmt *S);
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 400 bool IsDeclStmtInForeachHeader(DeclStmt *DS);
    [all...]
RewriteModernObjC.cpp 495 bool IsDeclStmtInForeachHeader(DeclStmt *DS);
    [all...]

Completed in 1865 milliseconds

12 3