HomeSort by: relevance | last modified time | path
    Searched defs:CFGStmtMap (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CFGStmtMap.h 1 //===--- CFGStmtMap.h - Map from Stmt* to CFGBlock* -----------*- C++ -*-===//
9 // This file defines the CFGStmtMap class, which defines a mapping from
24 class CFGStmtMap {
28 CFGStmtMap(ParentMap *pm, void *m) : PM(pm), M(m) {}
31 ~CFGStmtMap();
35 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
44 return const_cast<CFGStmtMap*>(this)->getBlock(const_cast<Stmt*>(S));
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFGStmtMap.cpp 1 //===--- CFGStmtMap.h - Map from Stmt* to CFGBlock* -----------*- C++ -*-===//
9 // This file defines the CFGStmtMap class, which defines a mapping from
17 #include "clang/Analysis/CFGStmtMap.h"
24 CFGStmtMap::~CFGStmtMap() { delete AsMap(M); }
26 CFGBlock *CFGStmtMap::getBlock(Stmt *S) {
77 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
88 return new CFGStmtMap(PM, SM);

Completed in 25 milliseconds