| /external/llvm/test/tools/llvm-nm/X86/ |
| D | radix.s | 4 //RUN: llvm-nm -radix=o %t.o | FileCheck --check-prefix="OCTAL" %s 216 //OCTAL: 0000000000000000 B i0 217 //OCTAL: 0000000000000000 D i1 218 //OCTAL: 0000000000000044 D i10 219 //OCTAL: 0000000000000050 D i11 220 //OCTAL: 0000000000000054 D i12 221 //OCTAL: 0000000000000060 D i13 222 //OCTAL: 0000000000000064 D i14 223 //OCTAL: 0000000000000070 D i15 224 //OCTAL: 0000000000000074 D i16 [all …]
|
| /external/apache-commons-lang/src/test/java/org/apache/commons/lang3/text/translate/ |
| D | OctalUnescaperTest.java | 37 assertEquals("\45", result, "Failed to unescape octal characters via the between method"); in testBetween() 41 assertEquals("\377", result, "Failed to unescape octal characters via the between method"); in testBetween() 45 … assertEquals("\377 and", result, "Failed to unescape octal characters via the between method"); in testBetween() 49 …assertEquals("\37" + "8 and", result, "Failed to unescape octal characters via the between method"… in testBetween() 53 … assertEquals("\37" + "8", result, "Failed to unescape octal characters via the between method"); in testBetween() 57 assertEquals("\1", result, "Failed to unescape octal characters via the between method"); in testBetween() 61 assertEquals("\036", result, "Failed to unescape octal characters via the between method"); in testBetween() 65 … assertEquals("\036" + "5", result, "Failed to unescape octal characters via the between method"); in testBetween() 69 assertEquals("\003", result, "Failed to unescape octal characters via the between method"); in testBetween() 73 … assertEquals("\000" + "3", result, "Failed to unescape octal characters via the between method"); in testBetween() [all …]
|
| /external/rust/android-crates-io/crates/regex/src/ |
| D | re_builder.rs | 15 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 …]
|
| /external/cronet/tot/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/ |
| D | base.rs | 16 /// Octal with 0o prefix 17 Octal, enumerator 32 BaseEnum::Octal => 8, in base_as_u8() 41 'o' => Self(BaseEnum::Octal), in from_zero_based_prefix_char() 68 BaseEnum::Octal => write!(f, "0o")?, in write_prefix() 125 BaseEnum::Octal => 2u8.serialize(write)?, in serialize() 142 2 => BaseEnum::Octal, in deserialize() 161 BaseEnum::Octal => write!(f, "octal"), in fmt()
|
| /external/cronet/stable/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/ |
| D | base.rs | 16 /// Octal with 0o prefix 17 Octal, enumerator 32 BaseEnum::Octal => 8, in base_as_u8() 41 'o' => Self(BaseEnum::Octal), in from_zero_based_prefix_char() 68 BaseEnum::Octal => write!(f, "0o")?, in write_prefix() 125 BaseEnum::Octal => 2u8.serialize(write)?, in serialize() 142 2 => BaseEnum::Octal, in deserialize() 161 BaseEnum::Octal => write!(f, "octal"), in fmt()
|
| /external/rust/android-crates-io/crates/litrs/src/integer/ |
| D | tests.rs | 116 check("0o0", 0o0, Octal, "0", None); in parse_octal() 117 check("0o1", 0o1, Octal, "1", None); in parse_octal() 118 check("0o6", 0o6, Octal, "6", None); in parse_octal() 119 check("0o7", 0o7, Octal, "7", None); in parse_octal() 120 check("0o17", 0o17, Octal, "17", None); in parse_octal() 121 check("0o123", 0o123, Octal, "123", None); in parse_octal() 122 check("0o7654321", 0o7654321, Octal, "7654321", None); in parse_octal() 123 check("0o7_53_1", 0o7_53_1, Octal, "7_53_1", None); in parse_octal() 124 check("0o66_", 0o66_, Octal, "66_", None); in parse_octal() 126 check("0o755u16", 0o755u16, Octal, "755", Some(Ty::U16)); in parse_octal() [all …]
|
| /external/google-cloud-java/java-run/proto-google-cloud-run-v2/src/main/java/com/google/cloud/run/v2/ |
| D | VersionToPathOrBuilder.java | 84 * Integer octal mode bits to use on this file, must be a value between 85 * 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be 89 * * This is an integer representation of the mode bits. So, the octal 91 * leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 92 * 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 93 * 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493
|
| D | VersionToPath.java | 184 * Integer octal mode bits to use on this file, must be a value between 185 * 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be 189 * * This is an integer representation of the mode bits. So, the octal 191 * leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 192 * 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 193 * 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 821 * Integer octal mode bits to use on this file, must be a value between 822 * 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be 826 * * This is an integer representation of the mode bits. So, the octal 828 * leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or [all …]
|
| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/ |
| D | TarUtils.java | 84 * Parse an octal string from a buffer. 101 * @return The long value of the octal string. 155 * octal number as per the parseOctal function above. 160 * @return The long value of the octal or binary string. 162 * missing or an invalid byte is detected in an octal number, or 372 * Fill buffer with unsigned octal number, padded with leading zeroes. 374 * @param value number to convert to octal - treated as unsigned 396 … (value+"="+Long.toOctalString(value)+ " will not fit in octal number buffer of length "+length); in formatUnsignedOctalString() 406 * Write an octal integer into a buffer. 409 * the value as an octal string with leading zeros. [all …]
|
| /external/rust/android-crates-io/crates/thiserror/tests/ui/ |
| D | no-display.stderr | 22 error[E0277]: the trait bound `NoDisplay: Octal` is not satisfied 28 | ^^^^^^^^^^^^^^^^^^^^ the trait `Octal` is not implemented for `NoDisplay` 30 = help: the following other types implement trait `Octal`: 40 = note: required for `&NoDisplay` to implement `Octal` 44 | pub fn new_octal<T: Octal>(x: &T) -> Argument<'_> {
|
| D | duplicate-fmt.rs | 9 #[error(fmt = core::fmt::Octal::fmt)] 14 #[error(fmt = core::fmt::Octal::fmt)] 19 #[error(fmt = core::fmt::Octal::fmt)]
|
| /external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/ |
| D | syntax.rs | 156 octal: bool, field 174 octal: false, in new() 362 /// Whether to support octal syntax or not. 364 /// Octal syntax is a little-known way of uttering Unicode codepoints in 367 /// shows octal syntax. 369 /// While supporting octal syntax isn't in and of itself a problem, it does 373 /// be supported. Therefore, when octal support is disabled, the error 376 /// Octal syntax is disabled by default. 377 pub fn octal(mut self, yes: bool) -> Config { in octal() method 378 self.octal = yes; in octal() [all …]
|
| /external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/ |
| D | syntax.rs | 156 octal: bool, field 174 octal: false, in new() 362 /// Whether to support octal syntax or not. 364 /// Octal syntax is a little-known way of uttering Unicode codepoints in 367 /// shows octal syntax. 369 /// While supporting octal syntax isn't in and of itself a problem, it does 373 /// be supported. Therefore, when octal support is disabled, the error 376 /// Octal syntax is disabled by default. 377 pub fn octal(mut self, yes: bool) -> Config { in octal() method 378 self.octal = yes; in octal() [all …]
|
| /external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/translate/ |
| D | OctalUnescaper.java | 23 * Translate escaped octal Strings back to their octal values. 27 * Note that this currently only supports the viable range of octal for Java; namely 67 …* Checks if the given char is an octal digit. Octal digits are the character representations of th…
|
| /external/rust/android-crates-io/crates/regex-syntax/src/ |
| D | parser.rs | 61 /// 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()
|
| /external/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/ |
| D | lexer.py | 119 # Don't allow octal constants (even invalid octal). 152 # Don't allow ordinal values in octal (even invalid octal, like 09) or 208 msg = "Octal values not allowed" 225 msg = "Octal and hexadecimal ordinal values not allowed"
|
| /external/google-cloud-java/java-run/proto-google-cloud-run-v2/src/main/proto/google/cloud/run/v2/ |
| D | k8s.min.proto | 226 // Must be a value between 0000 and 0777 (octal), defaulting to 0444. 232 // * This is an integer representation of the mode bits. So, the octal 234 // leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 235 // 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 236 // 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 257 // Integer octal mode bits to use on this file, must be a value between 258 // 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be 264 // * This is an integer representation of the mode bits. So, the octal 266 // leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 267 // 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or [all …]
|
| /external/deqp-deps/glslang/Test/ |
| D | hlsl.numericsuffixes.frag | 17 int r07 = 071; // octal 18 uint r08 = 072u; // unsigned octal 31 ps_output.color = r07; // gets 71 octal = 57 decimal
|
| /external/angle/third_party/glslang/src/Test/ |
| D | hlsl.numericsuffixes.frag | 17 int r07 = 071; // octal 18 uint r08 = 072u; // unsigned octal 31 ps_output.color = r07; // gets 71 octal = 57 decimal
|
| /external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/src/ |
| D | parser.rs | 71 /// Whether to support octal syntax or not. 73 /// Octal syntax is a little-known way of uttering Unicode codepoints in 76 /// shows octal syntax. 78 /// While supporting octal syntax isn't in and of itself a problem, it does 82 /// be supported. Therefore, when octal support is disabled, the error 85 /// Octal syntax is disabled by default. 86 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal() method 87 self.ast.octal(yes); in octal()
|
| /external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/src/ |
| D | parser.rs | 71 /// Whether to support octal syntax or not. 73 /// Octal syntax is a little-known way of uttering Unicode codepoints in 76 /// shows octal syntax. 78 /// While supporting octal syntax isn't in and of itself a problem, it does 82 /// be supported. Therefore, when octal support is disabled, the error 85 /// Octal syntax is disabled by default. 86 pub fn octal(&mut self, yes: bool) -> &mut ParserBuilder { in octal() method 87 self.ast.octal(yes); in octal()
|
| /external/googleapis/google/cloud/run/v2/ |
| D | k8s.min.proto | 240 // Must be a value between 0000 and 0777 (octal), defaulting to 0444. 246 // * This is an integer representation of the mode bits. So, the octal 248 // leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 249 // 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 250 // 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 271 // Integer octal mode bits to use on this file, must be a value between 272 // 01 and 0777 (octal). If 0 or not set, the Volume's default mode will be 278 // * This is an integer representation of the mode bits. So, the octal 280 // leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 281 // 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or [all …]
|
| /external/owasp/java-encoder/core/src/main/java/org/owasp/encoder/ |
| D | JavaEncoder.java | 43 * character (e.g. standard backslash escapes, such as "\n", "\\" , "\'", octal 57 * The length of a octal escape sequence, e.g. "\377". 61 * Number of bits to shift for each octal unit. 65 * The bit-mask for an octal unit. 158 // "short" octal escapes: '\0' to '\37' in encodeArrays() 168 // a short octal escape. in encodeArrays()
|
| /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: 691 /// ParseDecimalOrOctalCommon - This method is called for decimal or octal 776 /// of the number is found to be a zero. This means it is either an octal 874 // floating point constant, the radix will change to 10. Octal floating in ParseNumberStartingWithZero() [all …]
|
| /external/toybox/tests/ |
| D | printf.test | 24 testcmd "octal" "' \1\002\429\045x'" ' \001\002"9%x' "" "" 25 testcmd "not octal" "'\9'" '\9' "" "" 77 testcmd "octal %b" "'\0007%b' '\0007' | xxd -p" "003707\n" "" "" 82 # But bad octal is shown as text.
|