Home
last modified time | relevance | path

Searched refs:DelayedDeleteExprs (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp3705 DelayedDeleteExprs.push_back(getGlobalDeclID(F, Record[I++])); in ReadASTBlock()
3707 DelayedDeleteExprs.push_back(Count); in ReadASTBlock()
3709 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock()
3711 DelayedDeleteExprs.push_back(IsArrayForm); in ReadASTBlock()
8346 for (unsigned Idx = 0, N = DelayedDeleteExprs.size(); Idx != N;) { in ReadMismatchingDeleteExpressions()
8347 FieldDecl *FD = cast<FieldDecl>(GetDecl(DelayedDeleteExprs[Idx++])); in ReadMismatchingDeleteExpressions()
8348 uint64_t Count = DelayedDeleteExprs[Idx++]; in ReadMismatchingDeleteExpressions()
8351 SourceLocation::getFromRawEncoding(DelayedDeleteExprs[Idx++]); in ReadMismatchingDeleteExpressions()
8352 const bool IsArrayForm = DelayedDeleteExprs[Idx++]; in ReadMismatchingDeleteExpressions()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTReader.h907 SmallVector<uint64_t, 8> DelayedDeleteExprs; variable