Lines Matching refs:AddLevels
582 void UnwrappedLineParser::parseBlock(bool MustBeDeclaration, unsigned AddLevels, in parseBlock() argument
592 if (AddLevels > 0 && Style.BreakBeforeBraces == FormatStyle::BS_Whitesmiths) in parseBlock()
598 nextToken(/*LevelDifference=*/AddLevels); in parseBlock()
619 if (AddLevels > 0u && Style.BreakBeforeBraces != FormatStyle::BS_Whitesmiths) in parseBlock()
620 Line->Level += AddLevels; in parseBlock()
636 nextToken(/*LevelDifference=*/-AddLevels); in parseBlock()
1140 unsigned AddLevels = Style.BraceWrapping.AfterExternBlock ? 1u : 0u; in parseStructuralElement() local
1141 parseBlock(/*MustBeDeclaration=*/true, AddLevels); in parseStructuralElement()
1143 unsigned AddLevels = in parseStructuralElement() local
1145 parseBlock(/*MustBeDeclaration=*/true, AddLevels); in parseStructuralElement()
2142 unsigned AddLevels = in parseNamespace() local
2149 AddLevels == 0u && in parseNamespace()
2157 parseBlock(/*MustBeDeclaration=*/true, AddLevels, in parseNamespace()
2166 addUnwrappedLine(AddLevels > 0 ? LineLevel::Remove : LineLevel::Keep); in parseNamespace()
2726 unsigned AddLevels = Style.IndentAccessModifiers ? 2u : 1u; in parseRecord() local
2727 parseBlock(/*MustBeDeclaration=*/true, AddLevels, /*MunchSemi=*/false); in parseRecord()