Home | History | Annotate | Download | only in src

Lines Matching refs:HEX

65       // According to ECMA-262, 3rd, 7.8.4, page 18, these hex escapes
789 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL;
798 // if the first character is '0' we must check for octals and hex
803 // either 0, 0exxx, 0Exxx, 0.xxx, a hex number, a binary number or
806 // hex number
807 kind = HEX;
810 // we must have at least one hex digit after 'x'/'X'
866 DCHECK(kind != HEX); // 'e'/'E' must be scanned as part of the hex number