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

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
cons.s 5 .global binary, octal, hex, field
7 octal: .word 011q, 12q, 013Q label
cons.d 12 0+002 <octal>:
consfar.d 14 0+002 <octal>:
  /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));
  /toolchain/binutils/binutils-2.25/binutils/
size.c 46 decimal, octal, hex
83 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
181 radix = octal;
209 radix = octal;
218 hexa or octal if requested by `-x' or `-o'.
252 printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
419 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
432 ((radix == octal) ? "0%" BFD_VMA_FMT "o" : "0x%" BFD_VMA_FMT "x")),
476 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" :
493 printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t")
45 decimal, octal, hex enumerator in enum:__anon75061
    [all...]
  /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/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-inl.h 581 // It could be an explicit octal value.
615 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0;
623 // Will later check if it's an octal in the buffer.
628 octal = octal && *current < '8';
634 octal = false;
638 if (octal && !allow_trailing_junk) return JunkStringValue();
639 if (octal) goto parsing_done;
651 // octal = false;
688 if (octal) return JunkStringValue()
    [all...]
  /external/v8/test/message/
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 64 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
71 cl::values(clEnumValN(octal, "o", "Print size in octal"),
93 /// including the leading 0x or 0 for hexadecimal and octal respectively.
104 case octal:
364 << (Radix == octal ? "oct" : "dec") << " hex filename\n";
374 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...]
  /external/v8/src/regexp/
regexp-parser.cc 449 // With /u, decimal escape with leading 0 are not parsed as octal.
452 uc32 octal = ParseOctalLiteral(); local
453 builder->AddCharacter(octal);
979 // up to three octal digits with a value below 256.
    [all...]
  /external/v8/src/parsing/
parser-base.h 718 // Checks whether an octal literal was last seen between beg_pos and end_pos.
722 Scanner::Location octal = scanner()->octal_position(); local
723 if (octal.IsValid() && beg_pos <= octal.beg_pos &&
724 octal.end_pos <= end_pos) {
725 ReportMessageAt(octal, message);
    [all...]
scanner.cc 816 // Octal escapes of the forms '\0xx' and '\xxx' are not a part of
830 // Anything except '\0' is an octal escape sequence, illegal in strict mode.
831 // Remember the position of octal escape sequences so that an error
833 // We don't report the error immediately, because the octal escape can
986 OCTAL,
993 int start_pos = source_pos(); // For reporting octal positions.
1005 // an octal number.
1018 kind = OCTAL;
1021 // we must have at least one octal digit after 'o'/'O'
1038 // (possible) octal numbe
    [all...]

Completed in 477 milliseconds

1 2