/external/chromium_org/v8/test/preparser/ |
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
|
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],
|
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.
|
non-use-strict-octal-escape.js | 28 // A string looking like "use strict", but with an octal escape in it,
|
/external/v8/test/preparser/ |
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
|
preparser.status | 30 # We don't parse RegExps at scanning time, so we can't fail on octal 31 # escapes (we need to parse to distinguish octal escapes from valid 33 strict-octal-regexp: FAIL
|
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.
|
/external/llvm/test/YAMLParser/ |
construct-int.data | 5 octal: 02472256
|
spec-02-19.data | 6 octal: 014
|
/external/chromium_org/v8/test/webkit/fast/js/ |
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...] |
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/llvm/test/MC/AsmParser/ |
exprs-invalid.s | 4 // CHECK-ERRORS: error: invalid octal number
|
/external/chromium_org/tools/grit/grit/format/ |
c_format.py | 52 "Return the octal form of the hex numbers" 66 # output message with non-ascii chars escaped as octal numbers 68 # but octal is always of the form \OOO
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
uncstring_test.c | 67 {"\\778", 4, "\000", 1, "octal value out of range"}, 68 {"\\779", 4, "\001", 1, "octal value out of range"}, 71 {"\\7999", 5, "\x11" "9", 2, "octal value out of range"}, 74 {"\\9999", 5, "\x91" "9", 2, "octal value out of range"},
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/ |
AttribPermissions.java | 21 /* Octal values! */
|
/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SFTPv3FileAttributes.java | 37 * <pre>Note: these numbers are all OCTAL. 122 * Turn the POSIX permissions into a 7 digit octal representation.
|
/external/chromium_org/v8/test/mjsunit/ |
no-octal-constants-above-256.js | 28 // Octal constants above \377 should not be allowed; instead they
|