Home | History | Annotate | Download | only in Format

Lines Matching refs:Line

66   LT_ObjCDecl, // An @interface, @implementation, or @protocol line.
68 LT_ObjCProperty // An @property line.
129 /// \brief The total length of the line up to and including this token.
137 /// \brief Penalty for inserting a line break before this token.
165 AnnotatedLine(const UnwrappedLine &Line)
166 : First(Line.Tokens.front()), Level(Line.Level),
167 InPPDirective(Line.InPPDirective),
168 MustBeDeclaration(Line.MustBeDeclaration),
170 assert(!Line.Tokens.empty());
172 for (std::list<FormatToken>::const_iterator I = ++Line.Tokens.begin(),
173 E = Line.Tokens.end();
216 void annotate(AnnotatedLine &Line);
217 void calculateFormattingInformation(AnnotatedLine &Line);
221 unsigned splitPenalty(const AnnotatedLine &Line, const AnnotatedToken &Tok);
223 bool spaceRequiredBetween(const AnnotatedLine &Line,
227 bool spaceRequiredBefore(const AnnotatedLine &Line,
230 bool canBreakBefore(const AnnotatedLine &Line, const AnnotatedToken &Right);