Home
last modified time | relevance | path

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

12345678910>>...30

/external/llvm/test/tools/llvm-nm/X86/
Dradix.s4 //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/
DOctalUnescaperTest.java37 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/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 …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
DTarUtils.java84 * 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/crates/litrs/src/integer/
Dtests.rs116 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/rust/crates/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()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/translate/
DOctalUnescaper.java23 * 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/clang/lib/Lex/
DLiteralSupport.cpp167 // 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/libchrome/mojo/public/tools/bindings/pylib/mojom/parse/
Dlexer.py124 # Don't allow octal constants (even invalid octal).
157 # Don't allow ordinal values in octal (even invalid octal, like 09) or
213 msg = "Octal values not allowed"
230 msg = "Octal and hexadecimal ordinal values not allowed"
/external/owasp/java-encoder/core/src/main/java/org/owasp/encoder/
DJavaEncoder.java43 * 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/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.numericsuffixes.frag17 int r07 = 071; // octal
18 uint r08 = 072u; // unsigned octal
31 ps_output.color = r07; // gets 71 octal = 57 decimal
/external/deqp-deps/glslang/Test/
Dhlsl.numericsuffixes.frag17 int r07 = 071; // octal
18 uint r08 = 072u; // unsigned octal
31 ps_output.color = r07; // gets 71 octal = 57 decimal
/external/toybox/tests/
Dprintf.test24 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.
/external/starlark-go/syntax/
Dscan_test.go178 // octal
187 {"0123", `foo.star:1:5: obsolete form of octal literal; use 0o123`},
191 // octal escapes in string literals
193 …{`"\377"`, `foo.star:1:1: non-ASCII octal escape \377 (use \u00FF for the UTF-8 encoding of U+00FF…
195 {`"\400"`, `foo.star:1:1: non-ASCII octal escape \400`}, // unlike Python 2 and 3
253 // floats starting with octal digits
270 {"0or", "foo.star:1:3: invalid octal literal"},
/external/cronet/base/third_party/double_conversion/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()
/external/double-conversion/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()
/external/protobuf/src/google/protobuf/io/
Dtokenizer_unittest.cc862 char octal[32]; in TEST_F() local
863 snprintf(octal, 32, "0%llo", static_cast<unsigned long long>(i)); in TEST_F()
866 EXPECT_FALSE(Tokenizer::ParseInteger(octal, kint64max, &parsed)) in TEST_F()
867 << octal << "=>" << parsed; in TEST_F()
870 EXPECT_TRUE(Tokenizer::ParseInteger(octal, kint64max, &parsed)) in TEST_F()
871 << octal << "=>" << parsed; in TEST_F()
913 char octal[32]; in TEST_F() local
914 snprintf(octal, 32, "0200000000000000000%04llo", in TEST_F()
917 EXPECT_FALSE(Tokenizer::ParseInteger(octal, kuint64max, &parsed)) in TEST_F()
918 << octal << "=>" << parsed; in TEST_F()
[all …]
/external/python/google-api-python-client/docs/dyn/
Drun_v1.projects.locations.revisions.html362octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
366octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
375octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
379octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
640octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
644octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
653octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
657octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
Drun_v1.namespaces.revisions.html362octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
366octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
375octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
379octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
640octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
644octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
653octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
657octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
Drun_v1alpha1.namespaces.jobs.html322octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
326octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
335octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
339octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
619octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
623octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
632octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
636octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
944octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by …
948octal). If 0 or not set, the Volume&#x27;s default mode will be used. Notes * Internally, a umask …
[all …]
/external/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()
/external/cronet/third_party/icu/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()
/external/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()
/external/iproute2/tc/
Demp_ematch.l91 <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/rust/crates/quote/src/
Dformat.rs14 /// * `{:o}` ⇒ [`Octal`](std::fmt::Octal)
98 /// let octal = format_ident!("Id_{:o}", num);
99 /// assert_eq!(octal, "Id_12");

12345678910>>...30