Home | History | Annotate | Download | only in libclang

Lines Matching refs:ScratchAlloc

30 class ScratchAlloc {
34 explicit ScratchAlloc(IndexingContext &indexCtx);
35 ScratchAlloc(const ScratchAlloc &SA);
37 ~ScratchAlloc();
238 ScratchAlloc SA;
296 friend class ScratchAlloc;
311 ScratchAlloc &SA);
325 IndexingContext &IdxCtx, ScratchAlloc &SA);
488 ScratchAlloc &SA);
501 inline ScratchAlloc::ScratchAlloc(IndexingContext &idxCtx) : IdxCtx(idxCtx) {
504 inline ScratchAlloc::ScratchAlloc(const ScratchAlloc &SA) : IdxCtx(SA.IdxCtx) {
508 inline ScratchAlloc::~ScratchAlloc() {
515 inline T *ScratchAlloc::allocate() {