Lines Matching full:octal
790 // Octal escapes of the forms '\0xx' and '\xxx' are not a part of
804 // Anything except '\0' is an octal escape sequence, illegal in strict mode. in ScanOctalEscape()
805 // Remember the position of octal escape sequences so that an error in ScanOctalEscape()
807 // We don't report the error immediately, because the octal escape can in ScanOctalEscape()
958 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL; in ScanNumber() enumerator
970 int start_pos = source_pos(); // For reporting octal positions. in ScanNumber()
974 // an octal number. in ScanNumber()
987 kind = OCTAL; in ScanNumber()
990 // we must have at least one octal digit after 'o'/'O' in ScanNumber()
1007 // (possible) octal number in ScanNumber()
1016 // Octal literal finished. in ScanNumber()
1381 // octal esacpes in strict mode. in ScanRegExpPattern()