Lines Matching refs:Other

332   bool operator<(const ParenState &Other) const {
333 if (Indent != Other.Indent)
334 return Indent < Other.Indent;
335 if (LastSpace != Other.LastSpace)
336 return LastSpace < Other.LastSpace;
337 if (NestedBlockIndent != Other.NestedBlockIndent)
338 return NestedBlockIndent < Other.NestedBlockIndent;
339 if (FirstLessLess != Other.FirstLessLess)
340 return FirstLessLess < Other.FirstLessLess;
341 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
343 if (QuestionColumn != Other.QuestionColumn)
344 return QuestionColumn < Other.QuestionColumn;
345 if (AvoidBinPacking != Other.AvoidBinPacking)
347 if (BreakBeforeParameter != Other.BreakBeforeParameter)
349 if (NoLineBreak != Other.NoLineBreak)
351 if (LastOperatorWrapped != Other.LastOperatorWrapped)
353 if (ColonPos != Other.ColonPos)
354 return ColonPos < Other.ColonPos;
355 if (StartOfFunctionCall != Other.StartOfFunctionCall)
356 return StartOfFunctionCall < Other.StartOfFunctionCall;
357 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
358 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
359 if (CallContinuation != Other.CallContinuation)
360 return CallContinuation < Other.CallContinuation;
361 if (VariablePos != Other.VariablePos)
362 return VariablePos < Other.VariablePos;
363 if (ContainsLineBreak != Other.ContainsLineBreak)
365 if (ContainsUnwrappedBuilder != Other.ContainsUnwrappedBuilder)
367 if (NestedBlockInlined != Other.NestedBlockInlined)
427 bool operator<(const LineState &Other) const {
428 if (NextToken != Other.NextToken)
429 return NextToken < Other.NextToken;
430 if (Column != Other.Column)
431 return Column < Other.Column;
433 Other.LineContainsContinuedForLoopSection)
435 if (NoContinuation != Other.NoContinuation)
437 if (StartOfLineLevel != Other.StartOfLineLevel)
438 return StartOfLineLevel < Other.StartOfLineLevel;
439 if (LowestLevelOnLine != Other.LowestLevelOnLine)
440 return LowestLevelOnLine < Other.LowestLevelOnLine;
441 if (StartOfStringLiteral != Other.StartOfStringLiteral)
442 return StartOfStringLiteral < Other.StartOfStringLiteral;
443 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
445 return Stack < Other.Stack;