HomeSort by relevance Sort by last modified time
    Searched refs:octal (Results 1 - 8 of 8) sorted by null

  /external/iproute2/tc/
emp_ematch.l 91 <lexstr>\\[0-7]{1,3} { /* octal escape sequence */
96 fprintf(stderr, "error: octal escape sequence" \
103 <lexstr>\\[0-9]+ { /* catch wrong octal escape seq. */
  /external/v8/src/
conversions.cc 522 bool octal = leading_zero && (flags & ALLOW_OCTALS) != 0;
530 // Will later check if it's an octal in the buffer.
535 octal = octal && *current < '8';
541 octal = false;
545 if (octal && !allow_trailing_junk) return JUNK_STRING_VALUE;
546 if (octal) goto parsing_done;
558 // octal = false;
597 if (octal) return JUNK_STRING_VALUE;
653 if (octal) {
    [all...]
parser.cc 3882 int octal = scanner().octal_position(); local
4489 uc32 octal = ParseOctalLiteral(); local
    [all...]
  /external/v8/test/mjsunit/
strict-mode.js 146 // Octal literal
149 CheckStrictMode("'Hello octal\\032'");
150 CheckStrictMode("function octal() { return 012; }");
151 CheckStrictMode("function octal() { return '\\032'; }");
159 // Octal before "use strict"
162 "octal\\032directive";\
    [all...]
regexp.js 335 // (Note: \214 is interpreted as octal).