Lines Matching full:other
176 /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
355 bool operator<(const ParenState &Other) const {
356 if (Indent != Other.Indent)
357 return Indent < Other.Indent;
358 if (LastSpace != Other.LastSpace)
359 return LastSpace < Other.LastSpace;
360 if (NestedBlockIndent != Other.NestedBlockIndent)
361 return NestedBlockIndent < Other.NestedBlockIndent;
362 if (FirstLessLess != Other.FirstLessLess)
363 return FirstLessLess < Other.FirstLessLess;
364 if (IsAligned != Other.IsAligned)
366 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
368 if (BreakBeforeClosingParen != Other.BreakBeforeClosingParen)
370 if (QuestionColumn != Other.QuestionColumn)
371 return QuestionColumn < Other.QuestionColumn;
372 if (AvoidBinPacking != Other.AvoidBinPacking)
374 if (BreakBeforeParameter != Other.BreakBeforeParameter)
376 if (NoLineBreak != Other.NoLineBreak)
378 if (LastOperatorWrapped != Other.LastOperatorWrapped)
380 if (ColonPos != Other.ColonPos)
381 return ColonPos < Other.ColonPos;
382 if (StartOfFunctionCall != Other.StartOfFunctionCall)
383 return StartOfFunctionCall < Other.StartOfFunctionCall;
384 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
385 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
386 if (CallContinuation != Other.CallContinuation)
387 return CallContinuation < Other.CallContinuation;
388 if (VariablePos != Other.VariablePos)
389 return VariablePos < Other.VariablePos;
390 if (ContainsLineBreak != Other.ContainsLineBreak)
392 if (ContainsUnwrappedBuilder != Other.ContainsUnwrappedBuilder)
394 if (NestedBlockInlined != Other.NestedBlockInlined)
396 if (IsCSharpGenericTypeConstraint != Other.IsCSharpGenericTypeConstraint)
398 if (IsChainedConditional != Other.IsChainedConditional)
400 if (IsWrappedConditional != Other.IsWrappedConditional)
402 if (UnindentOperator != Other.UnindentOperator)
462 bool operator<(const LineState &Other) const {
463 if (NextToken != Other.NextToken)
464 return NextToken < Other.NextToken;
465 if (Column != Other.Column)
466 return Column < Other.Column;
467 if (NoContinuation != Other.NoContinuation)
469 if (StartOfLineLevel != Other.StartOfLineLevel)
470 return StartOfLineLevel < Other.StartOfLineLevel;
471 if (LowestLevelOnLine != Other.LowestLevelOnLine)
472 return LowestLevelOnLine < Other.LowestLevelOnLine;
473 if (StartOfStringLiteral != Other.StartOfStringLiteral)
474 return StartOfStringLiteral < Other.StartOfStringLiteral;
475 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
477 return Stack < Other.Stack;