HomeSort by relevance Sort by last modified time
    Searched refs:octal (Results 1 - 25 of 32) 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/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/v8/src/
conversions-inl.h 509 // It could be an explicit octal value.
543 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
551 // Will later check if it's an octal in the buffer.
556 octal = octal && *current < '8';
562 octal = false;
566 if (octal && !allow_trailing_junk) return JunkStringValue();
567 if (octal) goto parsing_done;
579 // octal = false;
616 if (octal) return JunkStringValue()
    [all...]
preparser.h 379 // Checks whether an octal literal was last seen between beg_pos and end_pos.
382 Scanner::Location octal = scanner()->octal_position(); local
383 if (octal.IsValid() && beg_pos <= octal.beg_pos &&
384 octal.end_pos <= end_pos) {
385 ReportMessageAt(octal, "strict_octal_literal");
    [all...]
scanner.cc 732 // Octal escapes of the forms '\0xx' and '\xxx' are not a part of
745 // Anything except '\0' is an octal escape sequence, illegal in strict mode.
746 // Remember the position of octal escape sequences so that an error
748 // We don't report the error immediately, because the octal escape can
789 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL;
800 int start_pos = source_pos(); // For reporting octal positions.
804 // an octal number.
817 kind = OCTAL;
820 // we must have at least one octal digit after 'o'/'O'
837 // (possible) octal numbe
    [all...]
parser.cc 4358 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/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:
376 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
386 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
  /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...]
  /external/pcre/dist/
pcre_compile.c 510 "octal value is greater than \\377 in 8-bit non-UTF-8 mode\0"
545 "non-octal character in \\o{} (closing brace missing?)\0"
    [all...]
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 

Completed in 1664 milliseconds

1 2