Lines Matching refs:ScratchAlloc
34 class ScratchAlloc {
38 explicit ScratchAlloc(CXIndexDataConsumer &indexCtx);
39 ScratchAlloc(const ScratchAlloc &SA);
41 ~ScratchAlloc();
242 ScratchAlloc SA;
298 friend class ScratchAlloc; variable
313 ScratchAlloc &SA);
327 CXIndexDataConsumer &IdxCtx, ScratchAlloc &SA);
500 ScratchAlloc &SA);
513 inline ScratchAlloc::ScratchAlloc(CXIndexDataConsumer &idxCtx) : IdxCtx(idxCtx) { in ScratchAlloc() function
516 inline ScratchAlloc::ScratchAlloc(const ScratchAlloc &SA) : IdxCtx(SA.IdxCtx) { in ScratchAlloc() function
520 inline ScratchAlloc::~ScratchAlloc() { in ~ScratchAlloc()
527 inline T *ScratchAlloc::allocate() { in allocate()