Searched defs:ThisTokEnd (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Lex/
H A DLiteralSupport.h42 const char *const ThisTokEnd; member in class:clang::NumericLiteralParser
68 return SuffixBegin != ThisTokEnd;
93 while (ptr != ThisTokEnd && isxdigit(*ptr))
101 while (ptr != ThisTokEnd && ((*ptr >= '0') && (*ptr <= '7')))
109 while (ptr != ThisTokEnd && isdigit(*ptr))
117 while (ptr != ThisTokEnd && (*ptr == '0' || *ptr == '1'))
/external/clang/lib/Lex/
H A DLiteralSupport.cpp54 const char *ThisTokEnd, bool &HadError,
102 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
111 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
144 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
181 static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, argument
194 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
201 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
234 static void EncodeUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, argument
242 if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, Loc, Diags,
363 : PP(pp), ThisTokBegin(begin), ThisTokEnd(en
53 ProcessCharEscape(const char *&ThisTokBuf, const char *ThisTokEnd, bool &HadError, FullSourceLoc Loc, unsigned CharWidth, DiagnosticsEngine *Diags) argument
[all...]

Completed in 814 milliseconds