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

1 2

  /external/ltrace/etc/
syscalls.conf 25 octal umask(octal);
43 int chmod(string,octal);
44 int fchmod(int,octal);
79 int mkdir(string,octal);
80 int mknod(string,octal,int);
118 int access(string,octal);
libacl.so.conf 41 addr acl_from_mode(octal);
libc.so.conf 86 int open(string,int,octal); ; WARNING: 3rd argument may not be there
87 int open64(string,int,octal); ; WARNING: 3rd argument may not be there
119 int mq_open(string, int, octal, addr); ; WARNING: 3rd and 4th arguments may not be there
336 int chmod(string,octal);
337 int fchmod(int,octal);
338 int mkfifo(string,octal);
339 octal umask(octal);
401 int mkdir(string,octal);
  /external/ltrace/testsuite/ltrace.main/
parameters.conf 28 void func_lens(octal, octal(long), hex(short), hex(long));
  /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 500 // It could be an explicit octal value.
534 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
542 // Will later check if it's an octal in the buffer.
547 octal = octal && *current < '8';
553 octal = false;
557 if (octal && !allow_trailing_junk) return JunkStringValue();
558 if (octal) goto parsing_done;
570 // octal = false;
607 if (octal) return JunkStringValue()
    [all...]
preparser.h 324 // Checks whether an octal literal was last seen between beg_pos and end_pos.
327 Scanner::Location octal = scanner()->octal_position(); local
328 if (octal.IsValid() && beg_pos <= octal.beg_pos &&
329 octal.end_pos <= end_pos) {
330 ReportMessageAt(octal, "strict_octal_literal");
    [all...]
parser.cc 4205 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/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/llvm/tools/llvm-size/
llvm-size.cpp 63 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
70 cl::values(clEnumValN(octal, "o", "Print size in octal"),
92 /// including the leading 0x or 0 for hexadecimal and octal respectively.
103 case octal:
392 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
402 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
  /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...]
regexp.js 346 // (Note: \214 is interpreted as octal).
  /external/chromium_org/third_party/blanketjs/src/
blanket.js 170 StrictOctalLiteral: 'Octal literals are not allowed in strict mode.',
729 // Octal number starts with '0'.
    [all...]
  /dalvik/docs/
prettify.js 763 // An octal or decimal number, possibly in scientific notation
    [all...]
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js 489 + '|\\\\[0-9]+' // a back-reference or octal escape
    [all...]

Completed in 676 milliseconds

1 2