HomeSort by relevance Sort by last modified time
    Searched defs:TokenLength (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Format/
WhitespaceManager.h 142 // \c IsTrailingComment, \c TokenLength, \c PreviousEndOfTokenColumn and
146 unsigned TokenLength;
163 /// \brief Calculate \c IsTrailingComment, \c TokenLength for the last tokens
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 141 size_t TokenLength = 1;
146 if (CodeCompletionLocation == Code.data() + TokenLength) {
149 Result.Text = Code.substr(0, TokenLength);
150 Code = Code.drop_front(TokenLength);
153 if (TokenLength == Code.size() || !isAlphanumeric(Code[TokenLength]))
155 ++TokenLength;
158 Result.Text = Code.substr(0, TokenLength);
159 Code = Code.drop_front(TokenLength);

Completed in 54 milliseconds