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

1 2

  /external/clang/include/clang/Analysis/
CFGStmtMap.h 24 class ParentMap;
28 ParentMap *PM;
31 CFGStmtMap(ParentMap *pm, void *m) : PM(pm), M(m) {}
38 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
AnalysisContext.h 36 class ParentMap;
89 OwningPtr<ParentMap> PM;
156 ParentMap &getParentMap();
232 ParentMap &getParentMap() const {
  /external/clang/include/clang/AST/
ParentMap.h 1 //===--- ParentMap.h - Mappings from Stmts to their Parents -----*- C++ -*-===//
10 // This file defines the ParentMap class.
21 class ParentMap {
24 ParentMap(Stmt* ASTRoot);
25 ~ParentMap();
  /external/clang/lib/AST/
ParentMap.cpp 1 //===--- ParentMap.cpp - Mappings from Stmts to their Parents ---*- C++ -*-===//
10 // This file defines the ParentMap class.
14 #include "clang/AST/ParentMap.h"
35 ParentMap::ParentMap(Stmt* S) : Impl(0) {
43 ParentMap::~ParentMap() {
47 void ParentMap::addStmt(Stmt* S) {
53 Stmt* ParentMap::getParent(Stmt* S) const {
59 Stmt *ParentMap::getParentIgnoreParens(Stmt *S) const
    [all...]
Android.mk 50 ParentMap.cpp \
  /external/clang/lib/ARCMigrate/
TransGCCalls.cpp 23 ParentMap &PMap;
28 GCCollectableCallsChecker(MigrationContext &ctx, ParentMap &map)
Transforms.h 14 #include "clang/AST/ParentMap.h"
47 ParentMap PMap;
55 ParentMap &getParentMap() { return PMap; }
TransRetainReleaseDealloc.cpp 23 #include "clang/AST/ParentMap.h"
39 OwningPtr<ParentMap> StmtMap;
55 StmtMap.reset(new ParentMap(body));
TransUnbridgedCasts.cpp 39 #include "clang/AST/ParentMap.h"
52 OwningPtr<ParentMap> StmtMap;
60 StmtMap.reset(new ParentMap(body));
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 16 #include "clang/AST/ParentMap.h"
31 // If 'S' isn't in the map, walk the ParentMap to see if one of its ancestors
78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
AnalysisDeclContext.cpp 18 #include "clang/AST/ParentMap.h"
186 ParentMap &AnalysisDeclContext::getParentMap() {
188 PM.reset(new ParentMap(getBody()));
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 24 #include "clang/AST/ParentMap.h"
48 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM);
63 ParentMap *PM = 0;
85 // Bail out if we didn't get the CFG or the ParentMap.
207 const ParentMap &PM) {
DeadStoresChecker.cpp 24 #include "clang/AST/ParentMap.h"
92 ParentMap& Parents;
101 BugReporter& br, AnalysisDeclContext* ac, ParentMap& parents,
374 ParentMap &pmap = mgr.getParentMap(D);
RetainCountChecker.cpp 21 #include "clang/AST/ParentMap.h"
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 104 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap);
541 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
549 while (MachineDomTreeNode *Parent = ParentMap[Node]) {
561 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap;
576 ParentMap[Child] = Node;
589 ExitScopeIfDone(Node, OpenChildren, ParentMap);
MachineLICM.cpp 232 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap);
667 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> &ParentMap) {
675 while (MachineDomTreeNode *Parent = ParentMap[Node]) {
693 DenseMap<MachineDomTreeNode*, MachineDomTreeNode*> ParentMap;
729 ParentMap[Child] = Node;
768 ExitScopeIfDone(Node, OpenChildren, ParentMap);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 185 ParentMap &getParentMap(Decl const *D) {
ExplodedGraph.h 140 ParentMap &getParentMap() const {return getLocationContext()->getParentMap();}
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 33 class ParentMap;
PathDiagnostic.h 36 class ParentMap;
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 18 #include "clang/AST/ParentMap.h"
106 ParentMap &PM = progPoint.getLocationContext()->getParentMap();
BugReporter.cpp 22 #include "clang/AST/ParentMap.h"
189 OwningPtr<ParentMap> PM;
210 ParentMap& getParentMap() { return LC->getParentMap(); }
270 static bool IsNested(const Stmt *S, ParentMap &PM) {
292 ParentMap &P = getParentMap();
    [all...]
PathDiagnostic.cpp 20 #include "clang/AST/ParentMap.h"
254 ParentMap *PM = 0;
ExprEngine.cpp 24 #include "clang/AST/ParentMap.h"
259 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
874 const ParentMap &PM = Pred->getLocationContext()->getParentMap();
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp 18 #include "clang/AST/ParentMap.h"
69 ParentMap *PropParentMap; // created lazily.
    [all...]

Completed in 705 milliseconds

1 2