HomeSort by relevance Sort by last modified time
    Searched full:tokenlength (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/Format/
WhitespaceManager.h 122 // \c IsTrailingComment, \c TokenLength, \c PreviousEndOfTokenColumn and
126 unsigned TokenLength;
131 /// \brief Calculate \c IsTrailingComment, \c TokenLength for the last tokens
WhitespaceManager.cpp 97 Changes[i - 1].TokenLength = OriginalWhitespaceStart -
103 Changes[i - 1].StartOfTokenColumn + Changes[i - 1].TokenLength;
110 // cases, setting TokenLength of the last token to 0 is wrong.
111 Changes.back().TokenLength = 0;
124 unsigned ChangeMaxColumn = Style.ColumnLimit - Changes[i].TokenLength;
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 124 size_t TokenLength = 1;
125 while (TokenLength < Code.size() && isAlphanumeric(Code[TokenLength]))
126 ++TokenLength;
128 Result.Text = Code.substr(0, TokenLength);
129 Code = Code.drop_front(TokenLength);
  /external/chromium_org/third_party/icu/source/common/
unames.c     [all...]
  /external/icu4c/common/
unames.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_tok.cpp 635 int32_t tokenLength = 0;
649 tokenLength = space - current;
650 if (tokenLength < 4) {
655 current += tokenLength;
677 tokenLength = space - current;
678 if (tokenLength < 4) {
682 u_UCharsToChars(current, conversion, tokenLength);
683 conversion[tokenLength] = '\0';
693 current += tokenLength;
    [all...]
  /external/icu4c/i18n/
ucol_tok.cpp 629 int32_t tokenLength = 0;
643 tokenLength = space - current;
644 if (tokenLength < 4) {
649 current += tokenLength;
671 tokenLength = space - current;
672 if (tokenLength < 4) {
676 u_UCharsToChars(current, conversion, tokenLength);
677 conversion[tokenLength] = '\0';
687 current += tokenLength;
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkScriptTokenizer.cpp 606 int tokenLength = token_length(++script);
608 script += tokenLength;
619 success = evaluateDotParam(script, token, tokenLength);
    [all...]
SkScript.cpp 715 int tokenLength = token_length(++script);
717 script += tokenLength;
729 success = evaluateDotParam(script, SkToBool(suppressed), token, tokenLength);
    [all...]
  /external/skia/src/animator/
SkScriptTokenizer.cpp 606 int tokenLength = token_length(++script);
608 script += tokenLength;
619 success = evaluateDotParam(script, token, tokenLength);
    [all...]
SkScript.cpp 715 int tokenLength = token_length(++script);
717 script += tokenLength;
729 success = evaluateDotParam(script, SkToBool(suppressed), token, tokenLength);
    [all...]

Completed in 174 milliseconds