Home | History | Annotate | Download | only in Format

Lines Matching refs:Lines

13 /// break long lines in tokens.
41 /// \brief Returns the number of lines in this token in the original code.
183 // Rearranges the whitespace between Lines[LineIndex-1] and Lines[LineIndex],
184 // so that all whitespace between the lines is accounted to Lines[LineIndex]
186 // - Lines[LineIndex] points to the text after that whitespace
187 // - Lines[LineIndex-1] shrinks by its trailing whitespace
189 // between the end of the text of Lines[LineIndex-1] and Lines[LineIndex]
192 // Lines[LineIndex] starts (note that the decoration, if present, is not
201 // Contains the text of the lines of the block comment, excluding the leading
203 // trailing whitespace between the lines. Note that the decoration (if
205 SmallVector<StringRef, 16> Lines;
208 // front of Lines[i]. Note that this can include "* " sequences, which we
209 // regard as whitespace when all lines have a "*" prefix.
213 // Note that this excludes a leading "* " or "*" in case all lines have
215 // The first line's target column is always positive. The remaining lines'
224 // IndentAtLineBreak is a uniform position for all lines in a block comment,
238 // Either "* " if all lines begin with a "*", or empty.