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

  /external/clang/include/clang/Lex/
LiteralSupport.h 43 const char *const ThisTokEnd;
75 return StringRef(SuffixBegin, ThisTokEnd - SuffixBegin);
104 while (ptr != ThisTokEnd && isHexDigit(*ptr))
112 while (ptr != ThisTokEnd && ((*ptr >= '0') && (*ptr <= '7')))
120 while (ptr != ThisTokEnd && isDigit(*ptr))
128 while (ptr != ThisTokEnd && (*ptr == '0' || *ptr == '1'))
  /external/clang/lib/Lex/
LiteralSupport.cpp 79 const char *ThisTokEnd, bool &HadError,
132 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) {
142 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
176 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
218 const char *ThisTokEnd,
228 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) {
236 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
290 const char *ThisTokEnd, unsigned CharByteWidth,
300 if (!ProcessUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, UcnVal,
325 const char *ThisTokEnd,
    [all...]

Completed in 39 milliseconds