Lines Matching full:other

181   /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
360 bool operator<(const ParenState &Other) const {
361 if (Indent != Other.Indent)
362 return Indent < Other.Indent;
363 if (LastSpace != Other.LastSpace)
364 return LastSpace < Other.LastSpace;
365 if (NestedBlockIndent != Other.NestedBlockIndent)
366 return NestedBlockIndent < Other.NestedBlockIndent;
367 if (FirstLessLess != Other.FirstLessLess)
368 return FirstLessLess < Other.FirstLessLess;
369 if (IsAligned != Other.IsAligned)
371 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
373 if (BreakBeforeClosingParen != Other.BreakBeforeClosingParen)
375 if (QuestionColumn != Other.QuestionColumn)
376 return QuestionColumn < Other.QuestionColumn;
377 if (AvoidBinPacking != Other.AvoidBinPacking)
379 if (BreakBeforeParameter != Other.BreakBeforeParameter)
381 if (NoLineBreak != Other.NoLineBreak)
383 if (LastOperatorWrapped != Other.LastOperatorWrapped)
385 if (ColonPos != Other.ColonPos)
386 return ColonPos < Other.ColonPos;
387 if (StartOfFunctionCall != Other.StartOfFunctionCall)
388 return StartOfFunctionCall < Other.StartOfFunctionCall;
389 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
390 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
391 if (CallContinuation != Other.CallContinuation)
392 return CallContinuation < Other.CallContinuation;
393 if (VariablePos != Other.VariablePos)
394 return VariablePos < Other.VariablePos;
395 if (ContainsLineBreak != Other.ContainsLineBreak)
397 if (ContainsUnwrappedBuilder != Other.ContainsUnwrappedBuilder)
399 if (NestedBlockInlined != Other.NestedBlockInlined)
401 if (IsCSharpGenericTypeConstraint != Other.IsCSharpGenericTypeConstraint)
403 if (IsChainedConditional != Other.IsChainedConditional)
405 if (IsWrappedConditional != Other.IsWrappedConditional)
407 if (UnindentOperator != Other.UnindentOperator)
464 bool operator<(const LineState &Other) const {
465 if (NextToken != Other.NextToken)
466 return NextToken < Other.NextToken;
467 if (Column != Other.Column)
468 return Column < Other.Column;
469 if (NoContinuation != Other.NoContinuation)
471 if (StartOfLineLevel != Other.StartOfLineLevel)
472 return StartOfLineLevel < Other.StartOfLineLevel;
473 if (LowestLevelOnLine != Other.LowestLevelOnLine)
474 return LowestLevelOnLine < Other.LowestLevelOnLine;
475 if (StartOfStringLiteral != Other.StartOfStringLiteral)
476 return StartOfStringLiteral < Other.StartOfStringLiteral;
477 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
479 return Stack < Other.Stack;