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

/external/clang/lib/Sema/
H A DIdentifierResolver.cpp44 IdDeclInfoPool *CurPool; member in class:IdentifierResolver::IdDeclInfoMap
48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {}
51 IdDeclInfoPool *Cur = CurPool;
400 CurPool = new IdDeclInfoPool(CurPool);
403 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
/external/clang/include/clang/Sema/
H A DSema.h584 sema::DelayedDiagnosticPool *CurPool; member in class:clang::Sema::DelayedDiagnostics
587 DelayedDiagnostics() : CurPool(nullptr) {}
593 bool shouldDelayDiagnostics() { return CurPool != nullptr; }
597 return CurPool;
604 state.SavedPool = CurPool;
605 CurPool = &pool;
613 CurPool = state.SavedPool;
620 state.SavedPool = CurPool;
621 CurPool = nullptr;
627 assert(CurPool
[all...]

Completed in 106 milliseconds