Home
last modified time | relevance | path

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

/external/clang/include/clang/Serialization/
DASTBitCodes.h164 struct PPEntityOffset { struct
172 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset() argument
DModule.h273 const PPEntityOffset *PreprocessedEntityOffsets;
/external/clang/lib/Serialization/
DASTReader.cpp2535 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data(); in ReadASTBlock()
2536 assert(Blob.size() % sizeof(PPEntityOffset) == 0); in ReadASTBlock()
2537 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset); in ReadASTBlock()
4145 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in ReadPreprocessedEntity()
4246 template <unsigned PPEntityOffset::*PPLoc>
4253 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
4259 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
4264 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
4269 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()
4292 typedef const PPEntityOffset *pp_iterator; in findBeginPreprocessedEntity()
[all …]
DASTWriter.cpp2098 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; in WritePreprocessorDetail()
2131 PreprocessedEntityOffsets.push_back(PPEntityOffset((*E)->getSourceRange(), in WritePreprocessorDetail()