Lines Matching defs:ParenState
197 struct ParenState { struct
198 ParenState(const FormatToken *Tok, unsigned Indent, unsigned LastSpace, in ParenState() argument
217 const FormatToken *Tok;
221 unsigned Indent;
228 unsigned LastSpace;
232 unsigned NestedBlockIndent;
238 unsigned FirstLessLess = 0;
241 unsigned QuestionColumn = 0;
244 unsigned ColonPos = 0;
247 unsigned StartOfFunctionCall = 0;
251 unsigned StartOfArraySubscripts = 0;
255 unsigned NestedNameSpecifierContinuation = 0;
259 unsigned CallContinuation = 0;
264 unsigned VariablePos = 0;
267 bool IsAligned : 1;
274 bool BreakBeforeClosingBrace : 1;
302 /// \c true if this \c ParenState already contains a line-break. argument
309 /// \c true if this \c ParenState contains multiple segments of a argument
311 bool ContainsUnwrappedBuilder : 1;
337 /// \c true if the current \c ParenState represents an Objective-C argument
343 /// \brief true if the current \c ParenState represents the false branch of argument
355 bool operator<(const ParenState &Other) const { argument