Searched refs:Octal (Results 1 – 20 of 20) sorted by relevance
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_syntax_parser.cpp | 36 enum class ReadStatus { Normal, Backslash, Octal, FinishOctal, CarriageReturn }; enumerator 207 status = ReadStatus::Octal; in ReadString() 230 case ReadStatus::Octal: in ReadString()
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 677 bool Hex, Octal; member 742 Info.Hex = Info.Octal = false; in getLiteralInfo() 746 Info.Octal = true; in getLiteralInfo() 859 if (!LitIsFloat && CallIsFloating && (LitInfo.Hex || LitInfo.Octal)) in rewriteToNumberLiteral()
|
/external/pcre/pcrecpp/include/ |
D | pcrecpparg.h | 149 inline Arg Octal(type* ptr) { \
|
/external/pcre/pcrecpp/ |
D | pcrecpp_unittest.cc | 50 using pcrecpp::Octal; 159 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \ in RadixTests()
|
/external/u-boot/scripts/ |
D | checkpatch.pl | 395 our $Octal = qr{0[0-7]+$Int_type?}; 401 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int}; 6425 (($val =~ /^$Int$/ && $val !~ /^$Octal$/) || 6426 ($val =~ /^$Octal$/ && length($val) ne 4))) { 6430 if ($val =~ /^$Octal$/ && (oct($val) & 02)) {
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 495 | // Octal
|
/external/python/cpython3/Doc/library/ |
D | string.rst | 459 | ``'o'`` | Octal format. Outputs the number in base 8. |
|
D | re.rst | 576 Octal escapes are included in a limited form. If the first digit is a 0, or if
|
/external/python/cpython2/Doc/howto/ |
D | unicode.rst | 384 arbitrary code point. Octal escapes can go up to U+01ff, which is octal 777.
|
D | regex.rst | 633 0[0-7]+ # Octal form
|
/external/python/cpython2/Doc/library/ |
D | string.rst | 435 | ``'o'`` | Octal format. Outputs the number in base 8. |
|
D | re.rst | 424 Octal escapes are included in a limited form: If the first digit is a 0, or if
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 228 * Octal literals are no longer of the form ``0720``; use ``0o720``
|
D | 2.6.rst | 814 ``o`` Octal format. Outputs the number in base 8.
|
/external/python/cpython3/Doc/howto/ |
D | regex.rst | 653 0[0-7]+ # Octal form
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 164 Octal integer: 0177, 0177777777777777777 (begin with a 0)
|
D | HISTORY | 5061 - Octal and hex literals without 'L' prefix in the inclusive range
|
/external/icu/icu4c/source/test/testdata/ |
D | regextst.txt | 669 # Octal Escaping. This conforms to Java conventions, not Perl.
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 810 ``o`` Octal format. Outputs the number in base 8.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 22445 - Octal and hex literals without 'L' prefix in the inclusive range
|