Searched defs:BumpVectorContext (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h32 class BumpVectorContext { class in namespace:clang
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) {} function in class:clang::BumpVectorContext
39 /// Construct a new BumpVectorContext that reuses an existing
41 /// BumpVectorContext object is destroyed.
42 BumpVectorContext(llvm::BumpPtrAllocator &A) : Alloc(&A, 0) {} function in class:clang::BumpVectorContext
44 ~BumpVectorContext() {
57 explicit BumpVector(BumpVectorContext &C, unsigned N)
149 void push_back(const_reference Elt, BumpVectorContext
[all...]

Completed in 82 milliseconds