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

  /external/clang/lib/Lex/
LiteralSupport.cpp 55 const char *ThisTokEnd, bool &HadError,
103 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
112 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
145 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
183 const char *ThisTokEnd,
196 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
203 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
258 const char *ThisTokEnd,
266 if (!ProcessUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, UcnVal, UcnLen,
390 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end)
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 42 const char *const ThisTokEnd;
73 return StringRef(SuffixBegin, ThisTokEnd - SuffixBegin);
102 while (ptr != ThisTokEnd && isxdigit(*ptr))
110 while (ptr != ThisTokEnd && ((*ptr >= '0') && (*ptr <= '7')))
118 while (ptr != ThisTokEnd && isdigit(*ptr))
126 while (ptr != ThisTokEnd && (*ptr == '0' || *ptr == '1'))

Completed in 69 milliseconds