Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h357 const PPEntityOffset *PreprocessedEntityOffsets = nullptr;
H A DASTBitCodes.h177 struct PPEntityOffset { struct
187 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset() argument
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp3521 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data(); in ReadASTBlock()
3522 assert(Blob.size() % sizeof(PPEntityOffset) == 0); in ReadASTBlock()
3523 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset); in ReadASTBlock()
5974 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in ReadPreprocessedEntity()
6097 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
6103 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
6108 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
6113 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()
6135 using pp_iterator = const PPEntityOffset *; in findPreprocessedEntity()
6197 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in isPreprocessedEntityInFileID()
H A DASTWriter.cpp2361 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; in WritePreprocessorDetail()
2397 PPEntityOffset((*E)->getSourceRange(), Offset)); in WritePreprocessorDetail()