Lines Matching defs:isHexadecimal
314 int exponent{0}; // adjusted as necessary; binary if isHexadecimal
315 bool isHexadecimal{false}; // 0X...
350 bool isHexadecimal{false};
386 isHexadecimal = true;
393 if (!isHexadecimal) {
400 if (isHexadecimal) {
415 } else if (isHexadecimal && ch >= 'A' && ch <= 'F') {
417 } else if (isHexadecimal && ch >= 'a' && ch <= 'f') {
434 if (isHexadecimal) {
463 if (isHexadecimal) {
478 if (isHexadecimal) {
489 if (isHexadecimal) {
524 return {got, exponent, isHexadecimal};
789 if (scanned.isHexadecimal) {