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

1 2

  /external/llvm/tools/llvm-size/
llvm-size.cpp 50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator in enum:RadixTy
58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
80 /// including the leading 0x or 0 for hexadecimal and octal respectively.
98 case octal:
226 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
304 << (Radix == octal ? "oct" : "dec")
  /external/chromium_org/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals.js 42 // Tests for single digit octal and decimal escapes.
43 // In non-strict mode 0-7 are octal escapes, 8-9 are NonEscapeCharacters.
51 // Tests for multi-digit octal values outside strict mode;
52 // Octal literals may be 1-3 digits long. In strict more all multi-digit sequences are illegal.
  /external/chromium_org/v8/src/
conversions-inl.h 519 // It could be an explicit octal value.
553 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
561 // Will later check if it's an octal in the buffer.
566 octal = octal && *current < '8';
572 octal = false;
576 if (octal && !allow_trailing_junk) return JunkStringValue();
577 if (octal) goto parsing_done;
589 // octal = false;
626 if (octal) return JunkStringValue()
    [all...]
preparser.cc 133 // Checks whether octal literal last seen is between beg_pos and end_pos.
136 i::Scanner::Location octal = scanner_->octal_position(); local
137 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
138 ReportMessageAt(octal, "strict_octal_literal", NULL);
    [all...]
  /external/v8/src/
conversions-inl.h 519 bool octal = leading_zero && (flags & ALLOW_OCTALS) != 0;
527 // Will later check if it's an octal in the buffer.
532 octal = octal && *current < '8';
538 octal = false;
542 if (octal && !allow_trailing_junk) return JunkStringValue();
543 if (octal) goto parsing_done;
555 // octal = false;
592 if (octal) return JunkStringValue();
648 if (octal) {
    [all...]
preparser.cc 128 // Checks whether octal literal last seen is between beg_pos and end_pos.
131 i::Scanner::Location octal = scanner_->octal_position(); local
132 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
133 ReportMessageAt(octal, "strict_octal_literal", NULL);
    [all...]
  /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/chromium_org/v8/test/preparser/
non-use-strict-octal-escape.js 28 // A string looking like "use strict", but with an octal escape in it,
strict-octal-indirect-regexp.js 28 // Strict mode with call to RegExp containing octal escape:
strict-octal-number.js 28 // Strict mode with octal number literal.
strict-octal-regexp.js 28 // Strict mode with octal escape in RegExp literal.
strict-octal-string.js 28 // Strict mode with octal escape in string literal.
strict-octal-use-strict-after.js 28 // Strict mode with octal escape in string/directive prologue looking like
strict-octal-use-strict-before.js 28 // Strict mode with octal escape in string/directive prologue looking like
  /external/chromium_org/v8/test/webkit/fast/js/kde/
literals.js 34 // octal (non-normative)
GlobalObject.js 73 shouldBe('parseInt("015")', "15"); // ES5 prohibits parseInt from handling octal, see annex E.
  /external/v8/test/preparser/
non-use-strict-octal-escape.js 28 // A string looking like "use strict", but with an octal escape in it,
strict-octal-indirect-regexp.js 28 // Strict mode with call to RegExp containing octal escape:
strict-octal-number.js 28 // Strict mode with octal number literal.
strict-octal-regexp.js 28 // Strict mode with octal escape in RegExp literal.
strict-octal-string.js 28 // Strict mode with octal escape in string literal.
strict-octal-use-strict-after.js 28 // Strict mode with octal escape in string/directive prologue looking like
strict-octal-use-strict-before.js 28 // Strict mode with octal escape in string/directive prologue looking like
  /external/chromium_org/v8/test/mjsunit/
strict-mode.js 149 // Octal literal
152 CheckStrictMode("'Hello octal\\032'");
153 CheckStrictMode("function octal() { return 012; }");
154 CheckStrictMode("function octal() { return '\\032'; }");
162 // Octal before "use strict"
165 "octal\\032directive";\
    [all...]
  /external/v8/test/mjsunit/
strict-mode.js 149 // Octal literal
152 CheckStrictMode("'Hello octal\\032'");
153 CheckStrictMode("function octal() { return 012; }");
154 CheckStrictMode("function octal() { return '\\032'; }");
162 // Octal before "use strict"
165 "octal\\032directive";\
    [all...]

Completed in 2689 milliseconds

1 2