/third_party/typescript/tests/baselines/reference/ |
H A D | invalidBinaryIntegerLiteralAndOctalIntegerLiteral.js | 5 var octal = 0o81010; variable 6 var octal = 0O91010;
variable 14 var octal = 0;
variable 16 var octal = 0;
variable
|
/third_party/rust/crates/regex/src/ |
H A D | re_builder.rs | 15 pub octal: bool, 31 octal: false, in default() 147 /// Whether to support octal syntax or not. 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 162 pub fn octal(&mut self, yes: bool) -> &mut RegexBuilder { in octal() functions 163 self.0.octal = yes; in octal() 333 /// Whether to support octal syntax or not. 338 /// shows octal synta 348 pub fn octal(&mut self, yes: bool) -> &mut RegexSetBuilder { octal() functions [all...] |
H A D | exec.rs | 239 .octal(self.options.octal) in parse()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | string-to-double.cc | 562 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; 576 // Will later check if it's an octal in the buffer. 581 octal = octal && *current < '8'; 586 octal = false; 590 if (octal && !allow_trailing_junk) return junk_string_value_; 591 if (octal) goto parsing_done; 602 // octal = false; 640 if (octal && !allow_trailing_junk) return junk_string_value_; 641 if (octal) got [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; 597 // Will later check if it's an octal in the buffer. 602 octal = octal && *current < '8'; 607 octal = false; 611 if (octal && !allow_trailing_junk) return junk_string_value_; 612 if (octal) goto parsing_done; 623 // octal = false; 661 if (octal && !allow_trailing_junk) return junk_string_value_; 662 if (octal) got [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; 597 // Will later check if it's an octal in the buffer. 602 octal = octal && *current < '8'; 607 octal = false; 611 if (octal && !allow_trailing_junk) return junk_string_value_; 612 if (octal) goto parsing_done; 623 // octal = false; 661 if (octal && !allow_trailing_junk) return junk_string_value_; 662 if (octal) got [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 583 bool octal = leading_zero && (flags_ & ALLOW_OCTALS) != 0; 597 // Will later check if it's an octal in the buffer. 602 octal = octal && *current < '8'; 607 octal = false; 611 if (octal && !allow_trailing_junk) return junk_string_value_; 612 if (octal) goto parsing_done; 623 // octal = false; 661 if (octal && !allow_trailing_junk) return junk_string_value_; 662 if (octal) got [all...] |
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
H A D | PpScanner.cpp | 418 parseContext.ppError(ppToken->loc, "octal and hex sequences not supported", "\\", ""); in characterLiteral() 740 // could be octal integer or floating point, speculative pursue octal until it must be floating point in scan() 749 // see how much octal-like stuff we can read in scan() 781 // wasn't a float, so must be octal... in scan() 783 pp->parseContext.ppError(ppToken->loc, "octal literal digit too large", "", ""); in scan() 823 pp->parseContext.ppError(ppToken->loc, "octal literal too big", "", ""); in scan() 828 "64-bit octal literal"); in scan() 830 Num_Int64_Extensions, Int64_Extensions, "64-bit octal literal"); in scan() 838 "16-bit octal litera in scan() [all...] |
/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | parser.rs | 61 /// Whether to support octal syntax or not. 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 76 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal() functions 77 self.ast.octal(yes); in octal()
|
/third_party/node/deps/v8/src/numbers/ |
H A D | conversions.cc | 720 // It could be an explicit octal value. in InternalStringToDouble() 748 bool octal = leading_zero && (flags & ALLOW_IMPLICIT_OCTAL) != 0; in InternalStringToDouble() local 756 // Will later check if it's an octal in the buffer. in InternalStringToDouble() 761 octal = octal && *current < '8'; in InternalStringToDouble() 767 octal = false; in InternalStringToDouble() 771 if (octal && !allow_trailing_junk) return JunkStringValue(); in InternalStringToDouble() 772 if (octal) goto parsing_done; in InternalStringToDouble() 784 // octal = false; in InternalStringToDouble() 821 if (octal) retur in InternalStringToDouble() [all...] |
/third_party/python/Parser/ |
H A D | string_parser.c | 15 int octal = ('4' <= c && c <= '7'); in warn_invalid_escape_sequence() local 17 octal in warn_invalid_escape_sequence() 18 ? PyUnicode_FromFormat("invalid octal escape sequence '\\%.3s'", in warn_invalid_escape_sequence() 35 if (octal) { in warn_invalid_escape_sequence() 36 RAISE_SYNTAX_ERROR("invalid octal escape sequence '\\%.3s'", in warn_invalid_escape_sequence()
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | parse.rs | 117 octal: bool, 132 octal: false, in new() 142 octal: self.octal, in build() 183 /// Whether to support octal syntax or not. 188 /// shows octal syntax. 190 /// While supporting octal syntax isn't in and of itself a problem, it does 194 /// be supported. Therefore, when octal support is disabled, the error 198 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal() functions 199 self.octal in octal() [all...] |
H A D | print.rs | 423 roundtrip_with(|b| b.octal(true), r"\141"); in print_literal()
|
/third_party/rust/crates/regex/tests/ |
H A D | test_default.rs | 79 assert!(regex::RegexBuilder::new(r"\0").octal(true).build().is_ok()); in allow_octal()
|
/third_party/rust/crates/rust-cexpr/src/ |
H A D | literal.rs | 16 //! representation. Escape sequences are supported. If hex and octal escapes 24 //! hex and octal escapes map onto multi-byte characters, they are truncated to 29 //! Integers are read into `i64`. Binary, octal, decimal and hexadecimal are 135 fn octal(i: &[u8]) -> nom::IResult<&[u8], u8> { in octal() functions 188 map_opt(many_m_n(1, 3, octal), |v| c_raw_escape(v, 8)), in escaped_char() 271 map_opt(preceded(char('0'), many1(complete(octal))), |v| { in c_int()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFTypes.cpp | 139 uint8_t octal[4] = { '\\', in write_string() local 143 wStream->write(octal, 4); in write_string()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-parser.cc | 716 // With /u, decimal escape with leading 0 are not parsed as octal. in ParseDisjunction() 719 base::uc32 octal = ParseOctalLiteral(); in ParseDisjunction() local 720 builder->AddCharacter(octal); in ParseDisjunction() 1356 // up to three octal digits with a value below 256. in ParseOctalLiteral() 1801 // to the specification) as a 1..3 digit octal character code. in ParseCharacterEscape() 1804 // With /u, decimal escape is not interpreted as octal character code. in ParseCharacterEscape()
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cLayoutBindingTests.cpp | 366 octal, enumerator 393 case octal: in IntegerConstant()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser-base.h | 985 // Checks whether an octal literal was last seen between beg_pos and end_pos. 988 Scanner::Location octal = scanner()->octal_position(); in CheckStrictOctalLiteral() local 989 if (octal.IsValid() && beg_pos <= octal.beg_pos && in CheckStrictOctalLiteral() 990 octal.end_pos <= end_pos) { in CheckStrictOctalLiteral() 993 impl()->ReportMessageAt(octal, message); in CheckStrictOctalLiteral() 1001 // Checks if an octal literal or an invalid hex or unicode escape sequence
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 6088 # (common in inline assembly) or is a octal \123 or hexadecimal \xaf value 7331 # Mode permission misuses where it seems decimal should be octal 7361 "Use 4 digit octal (0777) not decimal permissions\n" . "$here\n" . $stat_real); 7371 # check for uses of S_<PERMS> that could be octal for readability 7374 my $octal = perms_to_octal($oval); 7376 "Symbolic permissions '$oval' are not preferred. Consider using octal permissions '$octal'.\n" . $herecurr) && 7378 $fixed[$fixlinenr] =~ s/\Q$oval\E/$octal/;
|