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.cpp115 if (Style.isCpp()) { in process()
H A DTokenAnnotator.h216 : Style(Style), IsCpp(Style.isCpp()), in TokenAnnotator()
H A DFormatTokenLexer.cpp124 if (Style.isCpp() && tryTransformTryUsageForC()) in tryMergePreviousTokens()
1351 if (Style.isCpp()) { in getNextToken()
H A DContinuationIndenter.cpp409 State.Line->First->isNot(TT_AttributeSquare) && Style.isCpp() && in mustBreak()
681 Style.isCpp() && [&Current] { in addTokenOnCurrentLine()
1099 (!Style.isCpp() && Current.is(tok::r_brace) && State.Stack.size() > 1 && in addTokenOnNewLine()
H A DBreakableToken.cpp113 if (Style.isCpp()) { in getCommentSplit()
H A DFormat.cpp3535 if (!Style.isCpp()) in fixCppIncludeInsertions()
3684 if (Style.isCpp()) { in reformat()
3881 LangOpts.CXXOperatorNames = Style.isCpp(); in getFormattingLangOpts()
H A DUnwrappedLineParser.cpp164 CurrentLines(&Lines), Style(Style), IsCpp(Style.isCpp()), in UnwrappedLineParser()
H A DTokenAnnotator.cpp129 IsCpp(Style.isCpp()), LangOpts(getFormattingLangOpts(Style)), in AnnotatingParser()
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3209 bool isCpp() const { return Language == LK_Cpp || Language == LK_ObjC; } in isCpp() function