Searched refs:isHex (Results 1 – 7 of 7) sorted by relevance
280 int isHex = 1, foundHex = 0, i; in IsHex() local289 isHex = 0; in IsHex()296 isHex = 0; in IsHex()297 return isHex; in IsHex()
265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead() local266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()267 if (isHex) in doHexLookAhead()329 bool isHex = Radix == 16; in LexDigit() local331 if (!isHex && (*CurPtr == '.' || *CurPtr == 'e' || *CurPtr == 'E')) { in LexDigit()341 return ReturnError(TokStart, !isHex ? "invalid decimal number" : in LexDigit()417 bool isHex = Radix == 16; in LexDigit() local420 return ReturnError(TokStart, !isHex ? "invalid octal number" : in LexDigit()
103 isHex(char) { method in Lexer190 while (end < this.len_ && this.isHex(this.input_[end]))
2650 BOOLEAN_T isHex; variable2728 isHex = (base == BASE_HEX);2741 if (isHex)2755 if (isHex)2801 if (isHex)2835 if (isHex)2894 (isHex) ? 10.0 : base));2912 if (isHex)2925 if (isHex)2954 if (isHex)[all …]
2364 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()2371 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()2437 private static boolean isHex(final byte c) { in isHex() method in TextFormat