/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | compile_test.cc | 118 Regexp* re = Regexp::Parse(t.regexp, Regexp::PerlX|Regexp::Latin1, NULL); in TEST() 172 DumpByteMap(".", Regexp::PerlX|Regexp::Latin1, &bytemap); in TEST() 183 DumpByteMap("[0-9A-Fa-f]+", Regexp::PerlX|Regexp::Latin1, &bytemap); in TEST() 194 DumpByteMap("\\b", Regexp::LikePerl|Regexp::Latin1, &bytemap); in TEST() 207 DumpByteMap("[^_]", Regexp::LikePerl|Regexp::Latin1, &bytemap); in TEST() 331 Dump("a**{3,}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST() 340 Dump("(a*|b*)*{3,}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST() 364 Dump("((|S.+)+|(|S.+)+|){2}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST()
|
D | possible_match_test.cc | 143 EXPECT_FALSE(RE2("[\\s\\S]+", RE2::Latin1). in TEST() 146 EXPECT_FALSE(RE2("[\\0-\xFF]+", RE2::Latin1). in TEST() 149 EXPECT_FALSE(RE2(".+hello", RE2::Latin1). in TEST() 152 EXPECT_FALSE(RE2(".*hello", RE2::Latin1). in TEST() 155 EXPECT_FALSE(RE2(".*", RE2::Latin1). in TEST() 206 RE2 re(regexp, RE2::Latin1); in HandleRegexp()
|
D | required_prefix_test.cc | 52 flags = flags | Regexp::Latin1; in TEST() 106 flags = flags | Regexp::Latin1; in TEST()
|
D | mimics_pcre_test.cc | 66 flags = flags | Regexp::Latin1; in TEST()
|
D | tester.cc | 156 { single_line|Regexp::Latin1, "single-line, latin1" }, 159 { multi_line|Regexp::Latin1, "multiline, latin1" }, 239 if (flags & Regexp::Latin1) in TestInstance() 265 if (flags & Regexp::Latin1) in TestInstance()
|
D | re2_test.cc | 435 TEST(QuoteMeta, Latin1) { in TEST() argument 436 TestQuoteMeta("3\xb2 = 9", RE2::Latin1); in TEST() 1099 RE2 re_test1(".........", RE2::Latin1); in TEST() 1107 RE2 re_test3("(.)", RE2::Latin1); in TEST() 1115 RE2 re_test5(utf8_string, RE2::Latin1); in TEST() 1121 RE2 re_test7(utf8_pattern, RE2::Latin1); in TEST() 1134 RE2 match_sentence(pattern, RE2::Latin1); in TEST() 1143 RE2 match_sentence(pattern, RE2::Latin1); in TEST() 1434 static LazyRE2 b = {"b", RE2::Latin1}; in TEST() 1531 RE2 re("\\140\\440\\174\\271\\150\\656\\106\\201\\004\\332", RE2::Latin1); in TEST()
|
D | regexp_benchmark.cc | 1524 RE2 re(regexp, RE2::Latin1); in FullMatchRE2()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | ucs2.diff | 38 kEncodingLatin1, // Latin1 (0-FF) 165 if (re->parse_flags() & Regexp::Latin1) 232 if (flags_ & Latin1) 289 flags |= Regexp::Latin1; 361 { single_line|Regexp::Latin1, "single-line, latin1" }, 365 { multi_line|Regexp::Latin1, "multiline, latin1" }, 387 if (flags & Regexp::Latin1)
|
/external/python/pyfakefs/ |
D | Dockerfile | 29 # pyfakefs tests require at least the Latin1 character set.
|
/external/python/cpython2/Doc/library/ |
D | mimify.rst | 74 (also known as Latin1 (latin-one)).
|
D | pyexpat.rst | 73 be extended; it supports UTF-8, UTF-16, ISO-8859-1 (Latin1), and ASCII. If
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | regexp.h | 289 Latin1 = 1<<5, // Regexp and text are in Latin1, not UTF-8. enumerator
|
D | regexp.cc | 708 bool latin1 = (re->parse_flags() & Latin1) != 0; in RequiredPrefix() 730 bool latin1 = (re->parse_flags() & Latin1) != 0; in RequiredPrefixForAccel()
|
D | re2.cc | 46 : encoding_(opt == RE2::Latin1 ? EncodingLatin1 : EncodingUTF8), in Options() 137 flags |= Regexp::Latin1; in ParseFlags()
|
D | re2.h | 264 Latin1, // treat input as Latin-1 (default UTF-8) enumerator
|
D | prefilter.cc | 508 bool latin1 = (re->parse_flags() & Regexp::Latin1) != 0; in BuildInfo()
|
D | parse.cc | 199 if (flags_ & Latin1) in ParseState() 2211 if (global_flags & Latin1) { in Parse()
|
D | compile.cc | 1092 if (flags & Regexp::Latin1) in Setup()
|
/external/icu/icu4c/source/data/mappings/ |
D | convrtrs.txt | 933 …* } windows-1252 { IANA* JAVA* WINDOWS* } cp1252 { JAVA } # Windows Latin1 (w/ euro update) 970 …p-roman8 { IANA* } roman8 { IANA } r8 { IANA } csHPRoman8 { IANA } x-roman8 { JAVA* } # HP Latin1 1061 …} ebcdic-cp-be { IANA } csIBM500 { IANA } ebcdic-cp-ch { IANA } 500 # EBCDIC International Latin1 1090 …bm-1047 { IBM* } IBM1047 { IANA* JAVA } cp1047 { JAVA* } 1047 { JAVA } # EBCDIC Open systems Latin1 1111 …{ IANA JAVA } cp1148 { JAVA* } ebcdic-international-500+euro { IANA } # EBCDIC International Latin1
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.11rc1.rst | 1018 IDLE shell now uses locale encoding instead of Latin1 for decoding unicode
|
/external/python/cpython3/Lib/test/ |
D | cfgparser.2 | 326 # Windows: 437 (US), 737 (GREEK), 850 (Latin1 - Western European),
|
/external/python/cpython3/Doc/library/ |
D | pyexpat.rst | 72 be extended; it supports UTF-8, UTF-16, ISO-8859-1 (Latin1), and ASCII. If
|
/external/python/cpython2/Doc/howto/ |
D | unicode.rst | 56 Latin1), but what if you wanted to write a French document that quotes some
|
/external/python/cpython2/Lib/idlelib/ |
D | NEWS.txt | 179 - Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 1074 Fix error position of the unicode error in ASCII and Latin1 encoders when a 1077 U+0000-U+00FF range for Latin1).
|