HomeSort by: relevance | last modified time | path
    Searched defs:FormatTok (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatTokenLexer.h 98 FormatToken *FormatTok;
UnwrappedLineParser.h 186 bool isOnNewLine(const FormatToken &FormatTok);
203 FormatToken *FormatTok;
UnwrappedLineParser.cpp 60 static bool isLineComment(const FormatToken &FormatTok) {
61 return FormatTok.is(tok::comment) && !FormatTok.TokenText.startswith("/*");
64 // Checks if \p FormatTok is a line comment that continues the line comment
66 // whether \p FormatTok is indented enough to the right to continue \p Previous.
67 static bool continuesLineComment(const FormatToken &FormatTok,
74 return isLineComment(FormatTok) && FormatTok.NewlinesBefore == 1 &&
76 FormatTok.OriginalColumn >= MinContinueColumn;
247 FormatTok = nullptr
    [all...]

Completed in 14 milliseconds