Lines Matching refs:R

411   bool operator==(const FormatStyle &R) const {
412 return AccessModifierOffset == R.AccessModifierOffset &&
413 AlignAfterOpenBracket == R.AlignAfterOpenBracket &&
414 AlignOperands == R.AlignOperands &&
415 AlignEscapedNewlinesLeft == R.AlignEscapedNewlinesLeft &&
416 AlignTrailingComments == R.AlignTrailingComments &&
418 R.AllowAllParametersOfDeclarationOnNextLine &&
420 R.AllowShortFunctionsOnASingleLine &&
421 AllowShortBlocksOnASingleLine == R.AllowShortBlocksOnASingleLine &&
423 R.AllowShortIfStatementsOnASingleLine &&
424 AllowShortLoopsOnASingleLine == R.AllowShortLoopsOnASingleLine &&
426 R.AlwaysBreakAfterDefinitionReturnType &&
428 R.AlwaysBreakTemplateDeclarations &&
430 R.AlwaysBreakBeforeMultilineStrings &&
431 BinPackParameters == R.BinPackParameters &&
432 BinPackArguments == R.BinPackArguments &&
433 BreakBeforeBinaryOperators == R.BreakBeforeBinaryOperators &&
434 BreakBeforeTernaryOperators == R.BreakBeforeTernaryOperators &&
435 BreakBeforeBraces == R.BreakBeforeBraces &&
437 R.BreakConstructorInitializersBeforeComma &&
438 ColumnLimit == R.ColumnLimit &&
440 R.ConstructorInitializerAllOnOneLineOrOnePerLine &&
442 R.ConstructorInitializerIndentWidth &&
443 DerivePointerAlignment == R.DerivePointerAlignment &&
445 R.ExperimentalAutoDetectBinPacking &&
446 IndentCaseLabels == R.IndentCaseLabels &&
447 IndentWrappedFunctionNames == R.IndentWrappedFunctionNames &&
448 IndentWidth == R.IndentWidth && Language == R.Language &&
449 MaxEmptyLinesToKeep == R.MaxEmptyLinesToKeep &&
451 R.KeepEmptyLinesAtTheStartOfBlocks &&
452 NamespaceIndentation == R.NamespaceIndentation &&
453 ObjCBlockIndentWidth == R.ObjCBlockIndentWidth &&
454 ObjCSpaceAfterProperty == R.ObjCSpaceAfterProperty &&
455 ObjCSpaceBeforeProtocolList == R.ObjCSpaceBeforeProtocolList &&
456 PenaltyBreakComment == R.PenaltyBreakComment &&
457 PenaltyBreakFirstLessLess == R.PenaltyBreakFirstLessLess &&
458 PenaltyBreakString == R.PenaltyBreakString &&
459 PenaltyExcessCharacter == R.PenaltyExcessCharacter &&
460 PenaltyReturnTypeOnItsOwnLine == R.PenaltyReturnTypeOnItsOwnLine &&
461 PointerAlignment == R.PointerAlignment &&
462 SpacesBeforeTrailingComments == R.SpacesBeforeTrailingComments &&
463 Cpp11BracedListStyle == R.Cpp11BracedListStyle &&
464 Standard == R.Standard && TabWidth == R.TabWidth &&
465 UseTab == R.UseTab && SpacesInParentheses == R.SpacesInParentheses &&
466 SpacesInSquareBrackets == R.SpacesInSquareBrackets &&
467 SpacesInAngles == R.SpacesInAngles &&
468 SpaceInEmptyParentheses == R.SpaceInEmptyParentheses &&
469 SpacesInContainerLiterals == R.SpacesInContainerLiterals &&
470 SpacesInCStyleCastParentheses == R.SpacesInCStyleCastParentheses &&
471 SpaceAfterCStyleCast == R.SpaceAfterCStyleCast &&
472 SpaceBeforeParens == R.SpaceBeforeParens &&
473 SpaceBeforeAssignmentOperators == R.SpaceBeforeAssignmentOperators &&
474 ContinuationIndentWidth == R.ContinuationIndentWidth &&
475 CommentPragmas == R.CommentPragmas &&
476 ForEachMacros == R.ForEachMacros;