Lines Matching defs:ParenState
202 struct ParenState { struct
203 ParenState(const FormatToken *Tok, unsigned Indent, unsigned LastSpace, in ParenState() argument
222 const FormatToken *Tok;
226 unsigned Indent;
233 unsigned LastSpace;
237 unsigned NestedBlockIndent;
243 unsigned FirstLessLess = 0;
246 unsigned QuestionColumn = 0;
249 unsigned ColonPos = 0;
252 unsigned StartOfFunctionCall = 0;
256 unsigned StartOfArraySubscripts = 0;
260 unsigned NestedNameSpecifierContinuation = 0;
264 unsigned CallContinuation = 0;
269 unsigned VariablePos = 0;
272 bool IsAligned : 1;
279 bool BreakBeforeClosingBrace : 1;
307 /// \c true if this \c ParenState already contains a line-break. argument
314 /// \c true if this \c ParenState contains multiple segments of a argument
316 bool ContainsUnwrappedBuilder : 1;
342 /// \c true if the current \c ParenState represents an Objective-C argument
348 /// \brief true if the current \c ParenState represents the false branch of argument
360 bool operator<(const ParenState &Other) const { argument