Home
last modified time | relevance | path

Searched refs:TokenCount (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp1462 size_t TokenCount = Line->Tokens.size(); in parseStructuralElement() local
1465 (TokenCount > 1 || (TokenCount == 1 && !Line->Tokens.front().Tok->is( in parseStructuralElement()
1512 TokenCount = Line->Tokens.size(); in parseStructuralElement()
1513 if (TokenCount == 1 || in parseStructuralElement()
1514 (TokenCount == 2 && Line->Tokens.front().Tok->is(tok::comment))) { in parseStructuralElement()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h426 unsigned TokenCount = 0; variable
1030 unsigned getTokenCount() const { return TokenCount; } in getTokenCount()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp969 ++TokenCount; in Lex()