Lines Matching refs:Offset
72 /// Technically, a source location is simply an offset into the manager's view
75 /// actually maintains two blocks of input buffers. One, starting at offset
77 /// starting at the highest possible offset and growing downwards, contains
108 /// \brief Return the offset into the manager's global input view.
128 /// \brief Return a source location with the specified offset from this
130 SourceLocation getLocWithOffset(int Offset) const {
131 assert(((getOffset()+Offset) & MacroIDBit) == 0 && "offset overflow");
133 L.ID = ID+Offset;
296 /// Offset pair. The first element is the FileID, the second is the
297 /// offset from the start of the buffer of the location.