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

  /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/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...]
parser.cc 4865 Scanner::Location octal = scanner().octal_position(); local
5311 uc32 octal = ParseOctalLiteral(); local
    [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/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/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...]
regexp.js 346 // (Note: \214 is interpreted as octal).
  /dalvik/docs/
prettify.js 763 // An octal or decimal number, possibly in scientific notation
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js 489 + '|\\\\[0-9]+' // a back-reference or octal escape
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
android_3p-bundle.js 489 + '|\\\\[0-9]+' // a back-reference or octal escape
    [all...]

Completed in 590 milliseconds