Home
last modified time | relevance | path

Searched full:octal (Results 1 – 25 of 440) sorted by relevance

12345678910>>...18

/third_party/typescript/tests/baselines/reference/
DinvalidBinaryIntegerLiteralAndOctalIntegerLiteral.symbols9 var octal = 0o81010;
10 >octal : Symbol(octal, Decl(invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts, 3, 3), Decl(inval…
12 var octal = 0O91010;
13 >octal : Symbol(octal, Decl(invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts, 3, 3), Decl(inval…
DinvalidBinaryIntegerLiteralAndOctalIntegerLiteral.errors.txt3 …ral/invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts(4,15): error TS1178: Octal digit expected.
4 …ral/invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts(5,15): error TS1178: Octal digit expected.
15 var octal = 0o81010;
17 !!! error TS1178: Octal digit expected.
18 var octal = 0O91010;
20 !!! error TS1178: Octal digit expected.
DstrictModeOctalLiterals.errors.txt1 tests/cases/conformance/expressions/literals/strictModeOctalLiterals.ts(2,14): error TS1085: Octal
2 tests/cases/conformance/expressions/literals/strictModeOctalLiterals.ts(4,16): error TS1085: Octal
3 tests/cases/conformance/expressions/literals/strictModeOctalLiterals.ts(4,21): error TS1085: Octal
10 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
14 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
16 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
DinvalidBinaryIntegerLiteralAndOctalIntegerLiteral.js5 var octal = 0o81010; variable
6 var octal = 0O91010;
14 var octal = 0;
16 var octal = 0;
DinvalidBinaryIntegerLiteralAndOctalIntegerLiteral.types13 var octal = 0o81010;
14 >octal : number
18 var octal = 0O91010;
19 >octal : number
Des3-oldStyleOctalLiteralTypes.errors.txt1 tests/cases/compiler/es3-oldStyleOctalLiteralTypes.ts(1,8): error TS8017: Octal literal types must …
2 tests/cases/compiler/es3-oldStyleOctalLiteralTypes.ts(2,8): error TS8017: Octal literal types must …
8 !!! error TS8017: Octal literal types must use ES2015 syntax. Use the syntax '0o10'.
11 !!! error TS8017: Octal literal types must use ES2015 syntax. Use the syntax '-0o20'.
Des5-oldStyleOctalLiteralInEnums.errors.txt1 tests/cases/compiler/es5-oldStyleOctalLiteralInEnums.ts(2,7): error TS1085: Octal literals are not …
2 tests/cases/compiler/es5-oldStyleOctalLiteralInEnums.ts(3,7): error TS1085: Octal literals are not …
9 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
12 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
Des3-oldStyleOctalLiteralInEnums.errors.txt1 tests/cases/compiler/es3-oldStyleOctalLiteralInEnums.ts(2,7): error TS8018: Octal literals are not …
2 tests/cases/compiler/es3-oldStyleOctalLiteralInEnums.ts(3,7): error TS8018: Octal literals are not …
9 !!! error TS8018: Octal literals are not allowed in enums members initializer. Use the syntax '-0o1…
12 !!! error TS8018: Octal literals are not allowed in enums members initializer. Use the syntax '0o2'.
Dliterals.errors.txt5 tests/cases/conformance/expressions/literals/literals.ts(19,9): error TS1085: Octal literals are no…
6 tests/cases/conformance/expressions/literals/literals.ts(24,9): error TS1085: Octal literals are no…
38 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
45 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
DemitClassDeclarationWithLiteralPropertyNameInES6.types45 static 0o3235 = "octal";
47 >"octal" : "octal"
Dparser.numericSeparators.octal.js1 //// [parser.numericSeparators.octal.ts]
8 //// [parser.numericSeparators.octal.js]
DoctalLiteralInStrictModeES3.errors.txt1 …ecmascript5/StrictMode/octalLiteralInStrictModeES3.ts(2,1): error TS1121: Octal literals are not a…
8 !!! error TS1121: Octal literals are not allowed in strict mode.
DscannerNumericLiteral2.errors.txt1 tests/cases/conformance/scanner/ecmascript5/scannerNumericLiteral2.ts(1,1): error TS1085: Octal lit…
7 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
DscannerNumericLiteral8.errors.txt1 tests/cases/conformance/scanner/ecmascript5/scannerNumericLiteral8.ts(1,1): error TS1085: Octal lit…
7 !!! error TS1085: Octal literals are not available when targeting ECMAScript 5 and higher. Use the …
/third_party/rust/crates/regex/src/
Dre_builder.rs15 pub octal: bool, field
31 octal: false, in default()
147 /// Whether to support octal syntax or not.
149 /// Octal syntax is a little-known way of uttering Unicode codepoints in
152 /// shows octal syntax.
154 /// While supporting octal syntax isn't in and of itself a problem, it does
158 /// be supported. Therefore, when octal support is disabled, the error
161 /// Octal syntax is disabled by default.
162 pub fn octal(&mut self, yes: bool) -> &mut RegexBuilder {
163 self.0.octal = yes;
[all …]
/third_party/rust/crates/regex/regex-syntax/src/
Dparser.rs61 /// Whether to support octal syntax or not.
63 /// Octal syntax is a little-known way of uttering Unicode codepoints in
66 /// shows octal syntax.
68 /// While supporting octal syntax isn't in and of itself a problem, it does
72 /// be supported. Therefore, when octal support is disabled, the error
75 /// Octal syntax is disabled by default.
76 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal() method
77 self.ast.octal(yes); in octal()
/third_party/ntfs-3g/ntfsprogs/
Dntfssecaudit.8.in79 (rwx flags in octal) and Posix ACL[1], its security key if any, and its
84 \fIdirectory\fP : their interpreted Linux mode (rwx flags in octal) and Posix
99 requested mode (rwx flags, expressed in octal form as in chmod) or
106 expressed in octal form as in \fBchmod\fP), or a Posix ACL[1] (expressed like
112 Linux mode (rwx flags in octal) and Posix ACL[1], its security key if any,
130 numeric user or group id, and perms an octal digit or a set from the letters
/third_party/glslang/Test/
Dhlsl.numericsuffixes.frag14 int r07 = 071; // octal
15 uint r08 = 072u; // unsigned octal
22 ps_output.color = r07; // gets 71 octal = 57 decimal
/third_party/toybox/tests/
Dprintf.test20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
76 testing "printf octal %b" "$PRINTF '\0007%b' '\0007' | xxd -p" "003707\n" "" ""
81 # But bad octal is shown as text.
/third_party/typescript/src/testRunner/unittests/
DparsePseudoBigInt.ts29 it("can parse octal literals", () => {
32 const octal = "0".repeat(leadingZeros) + testNumber.toString(8) + "n"; constant
34 assert.equal(parsePseudoBigInt(prefix + octal), String(testNumber));
/third_party/typescript/tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/
DinvalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts4 var octal = 0o81010; variable
5 var octal = 0O91010; variable
/third_party/rust/crates/bitflags/tests/compile-fail/non_integer_base/
Dall_defined.rs8 Octal,
95 impl Octal for MyInt {
97 Octal::fmt(&self.0, f) in fmt()
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dstring-to-double.cc562 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; in StringToIeee() local
576 // Will later check if it's an octal in the buffer. in StringToIeee()
581 octal = octal && *current < '8'; in StringToIeee()
586 octal = false; in StringToIeee()
590 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
591 if (octal) goto parsing_done; in StringToIeee()
602 // octal = false; in StringToIeee()
640 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
641 if (octal) goto parsing_done; in StringToIeee()
706 if (octal) { in StringToIeee()
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-string-to-double.cpp583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; in StringToIeee() local
597 // Will later check if it's an octal in the buffer. in StringToIeee()
602 octal = octal && *current < '8'; in StringToIeee()
607 octal = false; in StringToIeee()
611 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
612 if (octal) goto parsing_done; in StringToIeee()
623 // octal = false; in StringToIeee()
661 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
662 if (octal) goto parsing_done; in StringToIeee()
727 if (octal) { in StringToIeee()
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-string-to-double.cpp583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; in StringToIeee() local
597 // Will later check if it's an octal in the buffer. in StringToIeee()
602 octal = octal && *current < '8'; in StringToIeee()
607 octal = false; in StringToIeee()
611 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
612 if (octal) goto parsing_done; in StringToIeee()
623 // octal = false; in StringToIeee()
661 if (octal && !allow_trailing_junk) return junk_string_value_; in StringToIeee()
662 if (octal) goto parsing_done; in StringToIeee()
727 if (octal) { in StringToIeee()

12345678910>>...18