Home
last modified time | relevance | path

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

/external/clang/include/clang/Serialization/
DModule.h315 const PPEntityOffset *PreprocessedEntityOffsets;
DASTBitCodes.h166 struct PPEntityOffset { struct
174 PPEntityOffset(SourceRange R, uint32_t BitOffset) in PPEntityOffset() argument
/external/clang/lib/Serialization/
DASTReader.cpp2992 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data(); in ReadASTBlock()
2993 assert(Blob.size() % sizeof(PPEntityOffset) == 0); in ReadASTBlock()
2994 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset); in ReadASTBlock()
4881 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in ReadPreprocessedEntity()
4988 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const { in operator ()()
4994 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const { in operator ()()
4999 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const { in operator ()()
5004 SourceLocation getLoc(const PPEntityOffset &PPE) const { in getLoc()
5025 typedef const PPEntityOffset *pp_iterator; in findPreprocessedEntity()
5086 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex]; in isPreprocessedEntityInFileID()
DASTWriter.cpp2317 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; in WritePreprocessorDetail()
2351 PPEntityOffset((*E)->getSourceRange(), Stream.GetCurrentBitNo())); in WritePreprocessorDetail()