Home
last modified time | relevance | path

Searched defs:FormatToken (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Format/
DFormatToken.h113 struct FormatToken { struct
114 FormatToken() {} in FormatToken() function
117 Token Tok;
123 unsigned NewlinesBefore = 0;
127 bool HasUnescapedNewline = false;
130 SourceRange WhitespaceRange;
134 unsigned LastNewlineOffset = 0;
139 unsigned ColumnWidth = 0;
143 unsigned LastLineColumnWidth = 0;
146 bool IsMultiline = false;
[all …]
/external/llvm-project/clang/lib/Format/
DFormatToken.h210 struct FormatToken { struct
211 FormatToken() in FormatToken() function
231 /// FIXME: Make FormatToken for parsing and AnnotatedToken two different argument
233 std::shared_ptr<TokenRole> Role;
236 SourceRange WhitespaceRange;
240 unsigned HasUnescapedNewline : 1;
243 unsigned IsMultiline : 1;
246 unsigned IsFirst : 1;
252 unsigned MustBreakBefore : 1;
255 unsigned IsUnterminatedLiteral : 1;
[all …]
/external/yapf/yapf/yapflib/
Dformat_token.py82 class FormatToken(object): class