HomeSort by relevance Sort by last modified time
    Searched refs:BumpVectorContext (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/Analysis/Support/
BumpVector.h 32 class BumpVectorContext {
35 /// Construct a new BumpVectorContext that creates a new BumpPtrAllocator
36 /// and destroys it when the BumpVectorContext object is destroyed.
37 BumpVectorContext() : Alloc(new llvm::BumpPtrAllocator(), 1) {}
39 BumpVectorContext(BumpVectorContext &&Other) : Alloc(Other.Alloc) {
44 /// Construct a new BumpVectorContext that reuses an existing
46 /// BumpVectorContext object is destroyed.
47 BumpVectorContext(llvm::BumpPtrAllocator &A) : Alloc(&A, 0) {}
49 ~BumpVectorContext() {
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 358 ElementList(BumpVectorContext &C) : Impl(C, 4) {}
366 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); }
368 BumpVectorContext &C) {
491 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent)
653 void addSuccessor(AdjacentBlock Succ, BumpVectorContext &C);
655 void appendStmt(Stmt *statement, BumpVectorContext &C) {
660 BumpVectorContext &C) {
665 BumpVectorContext &C) {
669 void appendBaseDtor(const CXXBaseSpecifier *BS, BumpVectorContext &C) {
673 void appendMemberDtor(FieldDecl *FD, BumpVectorContext &C)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 269 BumpVectorContext BVC;
369 BumpVectorContext &getNodeAllocator() { return BVC; }
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 508 BumpVectorContext &BC;
513 BumpVectorContext &bc)
558 BumpVectorContext BC(A);
CFG.cpp 241 BumpVectorContext ctx;
251 LocalScope(BumpVectorContext ctx, const_iterator P)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 252 BumpVectorContext &Ctx = G.getNodeAllocator();
MemRegion.cpp     [all...]

Completed in 497 milliseconds