Home
last modified time | relevance | path

Searched refs:PPEntityOffset (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DModule.h336 const PPEntityOffset *PreprocessedEntityOffsets = nullptr;
H A DASTBitCodes.h178 struct PPEntityOffset { struct
188 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset() argument
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp3206 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data(); in ReadASTBlock()
3207 assert(Blob.size() % sizeof(PPEntityOffset) == 0); in ReadASTBlock()
3208 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset); in ReadASTBlock()
5446 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in ReadPreprocessedEntity()
5555 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
5561 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
5566 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
5571 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()
5593 using pp_iterator = const PPEntityOffset *; in findPreprocessedEntity()
5655 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in isPreprocessedEntityInFileID()
H A DASTWriter.cpp2648 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; in WritePreprocessorDetail()
2682 PPEntityOffset((*E)->getSourceRange(), Stream.GetCurrentBitNo())); in WritePreprocessorDetail()