Lines Matching full:octal
670 // Octal escapes of the forms '\0xx' and '\xxx' are not a part of
683 // Anything except '\0' is an octal escape sequence, illegal in strict mode.
684 // Remember the position of octal escape sequences so that an error
686 // We don't report the error immediately, because the octal escape can
727 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL;
738 int start_pos = source_pos(); // For reporting octal positions.
742 // an octal number.
755 kind = OCTAL;
758 // we must have at least one octal digit after 'o'/'O'
775 // (possible) octal number
783 // Octal literal finished.
1051 // octal esacpes in strict mode.