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;
392 CurPool = new IdDeclInfoPool(CurPool);
395 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
/external/clang/include/clang/Sema/
H A DSema.h498 sema::DelayedDiagnosticPool *CurPool; member in class:clang::Sema::DelayedDiagnostics
501 DelayedDiagnostics() : CurPool(nullptr) {}
507 bool shouldDelayDiagnostics() { return CurPool != nullptr; }
511 return CurPool;
518 state.SavedPool = CurPool;
519 CurPool = &pool;
527 CurPool = state.SavedPool;
534 state.SavedPool = CurPool;
535 CurPool = nullptr;
541 assert(CurPool
[all...]

Completed in 92 milliseconds