Home
last modified time | relevance | path

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

/external/clang/include/clang/Serialization/
DASTBitCodes.h166 struct PPEntityOffset { struct
174 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset() function
DModule.h315 const PPEntityOffset *PreprocessedEntityOffsets;
/external/clang/lib/Serialization/
DASTReader.cpp2972 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data(); in ReadASTBlock()
2973 assert(Blob.size() % sizeof(PPEntityOffset) == 0); in ReadASTBlock()
2974 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset); in ReadASTBlock()
4858 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in ReadPreprocessedEntity()
4959 template <unsigned PPEntityOffset::*PPLoc>
4966 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
4972 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
4977 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
4982 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()
5003 typedef const PPEntityOffset *pp_iterator; in findPreprocessedEntity()
[all …]
DASTWriter.cpp2239 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; in WritePreprocessorDetail()
2273 PPEntityOffset((*E)->getSourceRange(), Stream.GetCurrentBitNo())); in WritePreprocessorDetail()