Home | History | Annotate | Download | only in Basic

Lines Matching refs:Offset

29   /// FileOffset - The offset in this file that the line entry occurs at.
42 /// IncludeOffset - This is the offset of the virtual include stack location,
66 inline bool operator<(const LineEntry &E, unsigned Offset) {
67 return E.FileOffset < Offset;
70 inline bool operator<(unsigned Offset, const LineEntry &E) {
71 return Offset < E.FileOffset;
86 /// by the offset they occur in the file.
107 void AddLineNote(int FID, unsigned Offset,
109 void AddLineNote(int FID, unsigned Offset,
115 /// it. If there is no line entry before Offset in FID, return null.
116 const LineEntry *FindNearestLineEntry(int FID, unsigned Offset);