• Home
  • Raw
  • Download

Lines Matching refs:Other

266   bool operator<(const ParenState &Other) const {
267 if (Indent != Other.Indent)
268 return Indent < Other.Indent;
269 if (LastSpace != Other.LastSpace)
270 return LastSpace < Other.LastSpace;
271 if (NestedBlockIndent != Other.NestedBlockIndent)
272 return NestedBlockIndent < Other.NestedBlockIndent;
273 if (FirstLessLess != Other.FirstLessLess)
274 return FirstLessLess < Other.FirstLessLess;
275 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
277 if (QuestionColumn != Other.QuestionColumn)
278 return QuestionColumn < Other.QuestionColumn;
279 if (AvoidBinPacking != Other.AvoidBinPacking)
281 if (BreakBeforeParameter != Other.BreakBeforeParameter)
283 if (NoLineBreak != Other.NoLineBreak)
285 if (LastOperatorWrapped != Other.LastOperatorWrapped)
287 if (ColonPos != Other.ColonPos)
288 return ColonPos < Other.ColonPos;
289 if (StartOfFunctionCall != Other.StartOfFunctionCall)
290 return StartOfFunctionCall < Other.StartOfFunctionCall;
291 if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
292 return StartOfArraySubscripts < Other.StartOfArraySubscripts;
293 if (CallContinuation != Other.CallContinuation)
294 return CallContinuation < Other.CallContinuation;
295 if (VariablePos != Other.VariablePos)
296 return VariablePos < Other.VariablePos;
297 if (ContainsLineBreak != Other.ContainsLineBreak)
299 if (ContainsUnwrappedBuilder != Other.ContainsUnwrappedBuilder)
301 if (NestedBlockInlined != Other.NestedBlockInlined)
358 bool operator<(const LineState &Other) const {
359 if (NextToken != Other.NextToken)
360 return NextToken < Other.NextToken;
361 if (Column != Other.Column)
362 return Column < Other.Column;
364 Other.LineContainsContinuedForLoopSection)
366 if (StartOfLineLevel != Other.StartOfLineLevel)
367 return StartOfLineLevel < Other.StartOfLineLevel;
368 if (LowestLevelOnLine != Other.LowestLevelOnLine)
369 return LowestLevelOnLine < Other.LowestLevelOnLine;
370 if (StartOfStringLiteral != Other.StartOfStringLiteral)
371 return StartOfStringLiteral < Other.StartOfStringLiteral;
372 if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
374 return Stack < Other.Stack;