Searched refs:MightBeFunctionDecl (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.h44 MustBeDeclaration(Line.MustBeDeclaration), MightBeFunctionDecl(false),
99 /// function declaration. Asserts MightBeFunctionDecl.
101 assert(MightBeFunctionDecl);
133 bool MightBeFunctionDecl; member in class:clang::format::AnnotatedLine
H A DTokenAnnotator.cpp892 Line.MightBeFunctionDecl = true;
1444 // Line.MightBeFunctionDecl can only be true after the parentheses of a
1450 (!Line.MightBeFunctionDecl || Current.NestingLevel != 0)) {
1573 Line.MightBeFunctionDecl && Contexts.size() == 1) {
1574 // Line.MightBeFunctionDecl can only be true after the parentheses of a
2248 assert(Line.MightBeFunctionDecl);
2281 bool InFunctionDecl = Line.MightBeFunctionDecl;
2525 return Line.MightBeFunctionDecl ? 50 : 500;
2676 if (Left.is(tok::r_paren) && Line.MightBeFunctionDecl) {

Completed in 171 milliseconds