Skip to content
Snippets Groups Projects
Select Git revision
  • f0760ec6ab5f62184fbfb1a8640ac03bb0bbc6cc
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • release/201811
  • release/201808
  • wip/patches_poly_2017/cedryk_doucet/abderahmane_bouziane
  • releases/beta1
  • android/release_464
  • android/release_463
  • android/release_462
  • android/release_461
  • android/release_460
  • android/release_459
  • android/release_458
  • android/release_457
  • android/release_456
  • android/release_455
  • android/release_454
  • android/release_453
  • android/release_452
  • android/release_451
  • android/release_450
  • android/release_449
  • android/release_448
  • android/release_447
  • android/release_446
  • android/release_445
38 results

VCardUtils.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .clang-format 3.13 KiB
    # Based on the .clang-format for Qt Creator
    #
    # This is for clang-format >= 10.0.
    #
    # https://releases.llvm.org/10.0.0/tools/clang/docs/ClangFormatStyleOptions.html
    #
    ---
    Language:        Cpp
    AccessModifierOffset: -4
    AlignAfterOpenBracket: Align
    AlignConsecutiveAssignments: false
    AlignConsecutiveDeclarations: false
    AlignConsecutiveMacros: true
    AlignEscapedNewlines: DontAlign
    AlignOperands:   true
    AlignTrailingComments: true
    AllowAllParametersOfDeclarationOnNextLine: true
    AllowShortBlocksOnASingleLine: false
    AllowShortCaseLabelsOnASingleLine: false
    AllowShortFunctionsOnASingleLine: Inline
    AllowShortIfStatementsOnASingleLine: false
    AllowShortLambdasOnASingleLine: Inline
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakAfterReturnType: TopLevelDefinitions
    AlwaysBreakBeforeMultilineStrings: false
    AlwaysBreakTemplateDeclarations: Yes
    BinPackArguments: false
    BinPackParameters: false
    BraceWrapping:
      AfterClass:      true
      AfterControlStatement: false
      AfterEnum:       false
      AfterFunction:   true
      AfterNamespace:  false
      AfterObjCDeclaration: false
      AfterStruct:     true
      AfterUnion:      false
      BeforeCatch:     false
      BeforeElse:      false
      IndentBraces:    false
      SplitEmptyFunction: false
      SplitEmptyRecord: false
      SplitEmptyNamespace: false
    BreakBeforeBinaryOperators: All
    BreakBeforeBraces: Custom
    BreakBeforeInheritanceComma: false
    BreakBeforeTernaryOperators: true
    BreakConstructorInitializersBeforeComma: false
    BreakConstructorInitializers: BeforeComma
    BreakAfterJavaFieldAnnotations: false
    BreakStringLiterals: true
    ColumnLimit:    100
    CommentPragmas:  '^ IWYU pragma:'
    CompactNamespaces: false
    ConstructorInitializerAllOnOneLineOrOnePerLine: false
    ConstructorInitializerIndentWidth: 4
    ContinuationIndentWidth: 4
    Cpp11BracedListStyle: true
    DerivePointerAlignment: false
    DisableFormat:   false
    ExperimentalAutoDetectBinPacking: false
    FixNamespaceComments: true
    ForEachMacros:
      - forever # avoids { wrapped to next line
      - foreach
      - Q_FOREACH
      - BOOST_FOREACH
    IncludeCategories:
      - Regex:           '^<Q.*'
        Priority:        200
    IncludeIsMainRegex: '(Test)?$'
    IndentCaseLabels: false
    IndentWidth:     4
    IndentWrappedFunctionNames: false
    JavaScriptQuotes: Leave
    JavaScriptWrapImports: true
    KeepEmptyLinesAtTheStartOfBlocks: false
    MacroBlockBegin: ""
    MacroBlockEnd:   ""
    MaxEmptyLinesToKeep: 1
    NamespaceIndentation: None
    ObjCBlockIndentWidth: 4
    ObjCSpaceAfterProperty: false
    ObjCSpaceBeforeProtocolList: true
    PenaltyBreakAssignment: 150
    PenaltyBreakBeforeFirstCallParameter: 300
    PenaltyBreakComment: 500
    PenaltyBreakFirstLessLess: 400
    PenaltyBreakString: 600
    PenaltyExcessCharacter: 50
    PenaltyReturnTypeOnItsOwnLine: 300
    PointerAlignment: Left
    ReflowComments:  true
    SortIncludes:    false
    SortUsingDeclarations: false
    SpaceAfterCStyleCast: true
    SpaceAfterTemplateKeyword: false
    SpaceBeforeAssignmentOperators: true
    SpaceBeforeCpp11BracedList: true
    SpaceBeforeParens: ControlStatements
    SpaceInEmptyParentheses: false
    SpacesBeforeTrailingComments: 1
    SpacesInAngles:  false
    SpacesInContainerLiterals: false
    SpacesInCStyleCastParentheses: false
    SpacesInParentheses: false
    SpacesInSquareBrackets: false
    Standard:        c++17
    TabWidth:        4
    UseTab:          Never