Home
last modified time | relevance | path

Searched refs:isCpp (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DIntegerLiteralSeparatorFixer.cpp118 if (Style.isCpp()) { in process()
H A DTokenAnnotator.h226 : Style(Style), IsCpp(Style.isCpp()), in TokenAnnotator()
H A DContinuationIndenter.cpp333 return Style.isCpp() && in canBreak()
436 State.Line->First->isNot(TT_AttributeSquare) && Style.isCpp() && in mustBreak()
722 if (!Style.isCpp() || in addTokenOnCurrentLine()
1194 (!Style.isCpp() && Current.is(tok::r_brace) && State.Stack.size() > 1 && in addTokenOnNewLine()
H A DFormatTokenLexer.cpp166 if (Style.isCpp() && tryTransformTryUsageForC()) in tryMergePreviousTokens()
1335 const bool IsCpp = Style.isCpp(); in getNextToken()
H A DBreakableToken.cpp101 if (Style.isCpp()) { in getCommentSplit()
H A DFormat.cpp3646 if (Style.isCpp()) in sortIncludes()
3714 if (!Style.isCpp()) in fixCppIncludeInsertions()
3865 if (Style.isCpp()) { in reformat()
H A DUnwrappedLineParser.cpp161 Style(Style), IsCpp(Style.isCpp()), in UnwrappedLineParser()
1032 if (!eof() && Style.isCpp()) in parsePPDirective()
H A DTokenAnnotator.cpp129 IsCpp(Style.isCpp()), LangOpts(getFormattingLangOpts(Style)), in AnnotatingParser()
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3381 bool isCpp() const { in isCpp() function