Home
last modified time | relevance | path

Searched refs:AddLevels (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DUnwrappedLineParser.cpp582 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()
[all …]
H A DUnwrappedLineParser.h88 void parseBlock(bool MustBeDeclaration, unsigned AddLevels = 1u,