/external/v8/test/webkit/fast/js/ |
D | numeric-escapes-in-string-literals-expected.txt | 32 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 34 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 40 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 42 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 44 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 46 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 48 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 50 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 52 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… 54 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode… [all …]
|
D | 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.
|
D | basic-strict-mode-expected.txt | 120 PASS 'use strict'; 007; threw exception SyntaxError: Octal literals are not allowed in strict mode.. 121 PASS (function(){'use strict'; 007;}) threw exception SyntaxError: Octal literals are not allowed i… 122 PASS 'use strict'; '\007'; threw exception SyntaxError: Octal literals are not allowed in strict mo… 123 PASS (function(){'use strict'; '\007';}) threw exception SyntaxError: Octal literals are not allowe… 124 PASS '\007'; 'use strict'; threw exception SyntaxError: Octal literals are not allowed in strict mo… 125 PASS (function(){'\007'; 'use strict';}) threw exception SyntaxError: Octal literals are not allowe…
|
/external/v8/test/preparser/ |
D | preparser.expectation | 6 strict-octal-number:strict_octal_literal 7 strict-octal-string:strict_octal_literal 8 strict-octal-regexp:strict_octal_literal 9 strict-octal-use-strict-after:strict_octal_literal 10 strict-octal-use-strict-before:strict_octal_literal
|
D | preparser.status | 33 # We don't parse RegExps at scanning time, so we can't fail on octal 34 # escapes (we need to parse to distinguish octal escapes from valid 36 'strict-octal-regexp': [FAIL], 42 'strict-octal-regexp': [SKIP],
|
/external/ltrace/etc/ |
D | 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);
|
D | 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/clang/lib/Lex/ |
D | LiteralSupport.cpp | 167 // Octal escapes. in ProcessCharEscape() 171 // Octal escapes are a series of octal digits with maximum length 3. in ProcessCharEscape() 458 /// octal-constant integer-suffix 463 /// octal-literal ud-suffix 469 /// octal-constant: 471 /// octal-constant octal-digit 488 /// octal-digit: 738 /// of the number is found to be a zero. This means it is either an octal 828 // floating point constant, the radix will change to 10. Octal floating in ParseNumberStartingWithZero() 834 return; // Done, simple octal number like 01234 in ParseNumberStartingWithZero() [all …]
|
/external/v8/src/ |
D | conversions-inl.h | 577 // It could be an explicit octal value. in InternalStringToDouble() 611 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0; in InternalStringToDouble() local 619 // Will later check if it's an octal in the buffer. in InternalStringToDouble() 624 octal = octal && *current < '8'; in InternalStringToDouble() 630 octal = false; in InternalStringToDouble() 634 if (octal && !allow_trailing_junk) return JunkStringValue(); in InternalStringToDouble() 635 if (octal) goto parsing_done; in InternalStringToDouble() 647 // octal = false; in InternalStringToDouble() 684 if (octal) return JunkStringValue(); in InternalStringToDouble() 740 if (octal) { in InternalStringToDouble()
|
/external/regex-re2/re2/ |
D | re2.h | 167 // PARSING HEX/OCTAL/C-RADIX NUMBERS 172 // Octal(), or CRadix() to interpret the text in another base. The 179 // RE2::Octal(&a), RE2::Hex(&b), RE2::CRadix(&c), RE2::CRadix(&d)); 684 static inline Arg Octal(short* x); 685 static inline Arg Octal(unsigned short* x); 686 static inline Arg Octal(int* x); 687 static inline Arg Octal(unsigned int* x); 688 static inline Arg Octal(long* x); 689 static inline Arg Octal(unsigned long* x); 690 static inline Arg Octal(long long* x); [all …]
|
/external/ltrace/ |
D | NEWS | 111 *** Octal lens renamed to "oct" 112 For reasons of consistency with "hex". "octal" is still valid and 202 **** octal 204 "octal", which used to be a separate type, is now lens, which can 205 be used to render any underlying type in base 8. Plain "octal" 206 is still valid and means the same thing as "octal(int)".
|
/external/iproute2/tc/ |
D | 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/clang/test/Lexer/ |
D | cxx1y_digit_separators.cpp | 17 int d = 0'1234; // ok, octal 18 int e = 0'b1010; // expected-error {{digit 'b' in octal constant}} 19 int f = 0b'1010; // expected-error {{invalid digit 'b' in octal}}
|
/external/toybox/toys/posix/ |
D | printf.c | 19 (% escapes for cdeEfgGiosuxX, \ escapes for abefnrtv0 or \OCTAL or \xHEX). 44 // 0x12 hex escapes have 1-2 digits, \123 octal escapes have 1-3 digits. in handle_slash() 49 // Not a hex or octal escape? (This catches trailing \) in handle_slash()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-4.1 | 157 mode is the octal mode specifier, similar to that expected by chmod. 218 mode is the octal mode specifier, similar to that expected by chmod. 238 mode is the octal mode specifier, similar to that expected by chmod. 255 mode is the octal mode specifier, similar to that expected by chmod.
|
/external/pcre/dist/doc/ |
D | pcresyntax.3 | 32 \e0dd character with octal code 0dd 33 \eddd character with octal code ddd, or backreference 34 \eo{ddd..} character with octal code ddd.. 38 Note that \e0dd is always an octal code, and that \e8 and \e9 are the literal
|
D | pcrecpp.3 | 282 .SH "PARSING HEX/OCTAL/C-RADIX NUMBERS" 288 Octal(), or CRadix() to interpret the text in another base. The 296 pcrecpp::Octal(&a), pcrecpp::Hex(&b),
|
/external/toybox/tests/ |
D | echo.test | 27 # Octal formatting tests 28 testing "echo -e octal values" \
|
D | printf.test | 20 testing "printf octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" "" 21 testing "printf not octal" "$PRINTF '\9'" '\9' "" ""
|
/external/v8/src/parsing/ |
D | scanner.cc | 790 // Octal escapes of the forms '\0xx' and '\xxx' are not a part of 804 // Anything except '\0' is an octal escape sequence, illegal in strict mode. in ScanOctalEscape() 805 // Remember the position of octal escape sequences so that an error in ScanOctalEscape() 807 // We don't report the error immediately, because the octal escape can in ScanOctalEscape() 958 enum { DECIMAL, HEX, OCTAL, IMPLICIT_OCTAL, BINARY } kind = DECIMAL; in ScanNumber() enumerator 970 int start_pos = source_pos(); // For reporting octal positions. in ScanNumber() 974 // an octal number. in ScanNumber() 987 kind = OCTAL; in ScanNumber() 990 // we must have at least one octal digit after 'o'/'O' in ScanNumber() 1007 // (possible) octal number in ScanNumber() [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
D | IntTagTest.java | 32 assertEquals(new Integer(685230), getMapValue("octal: 02472256", "octal")); in testInt()
|
/external/ltrace/testsuite/ltrace.main/ |
D | parameters.conf | 28 void func_lens(octal, octal(long), hex(short), hex(long));
|
/external/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 64 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator 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: in getRadixFmt() 364 << (Radix == octal ? "oct" : "dec") << " hex filename\n"; in PrintObjectSectionSizes() 374 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " " in PrintObjectSectionSizes()
|
/external/clang/test/Preprocessor/ |
D | line-directive.c | 85 #line 010 // expected-warning {{#line directive interprets number as decimal, not octal}} 88 # 020 // expected-warning {{GNU line marker directive interprets number as decimal, not octal}}
|
/external/pcre/dist/doc/html/ |
D | pcrecpp.html | 24 <li><a name="TOC9" href="#SEC9">PARSING HEX/OCTAL/C-RADIX NUMBERS</a> 305 <br><a name="SEC9" href="#TOC1">PARSING HEX/OCTAL/C-RADIX NUMBERS</a><br> 310 Octal(), or CRadix() to interpret the text in another base. The 318 pcrecpp::Octal(&a), pcrecpp::Hex(&b),
|