/external/pcre/dist2/testdata/ |
D | testoutput12-32 | 706 Options: caseless utf 712 Options: caseless utf 718 Options: caseless utf 724 Options: caseless utf 934 Options: caseless utf 935 First code unit = 'A' (caseless) 936 Last code unit = \x{1fb0} (caseless) 973 Options: caseless utf 974 First code unit = 'A' (caseless) 975 Last code unit = \x{1fb0} (caseless) [all …]
|
D | testoutput12-16 | 712 Options: caseless utf 718 Options: caseless utf 724 Options: caseless utf 730 Options: caseless utf 940 Options: caseless utf 941 First code unit = 'A' (caseless) 942 Last code unit = \x{1fb0} (caseless) 979 Options: caseless utf 980 First code unit = 'A' (caseless) 981 Last code unit = \x{1fb0} (caseless) [all …]
|
D | testoutput10 | 890 Options: caseless utf 896 Options: caseless utf 902 Options: caseless utf 908 Options: caseless utf 1112 Options: caseless utf 1113 First code unit = 'A' (caseless) 1150 Options: caseless utf 1151 First code unit = 'A' (caseless) 1152 Last code unit = 'B' (caseless) 1157 Options: caseless utf [all …]
|
D | testoutput2 | 193 Options: caseless 489 First code unit = 'a' (caseless) 490 Last code unit = 'c' (caseless) 577 First code unit = 'b' (caseless) 578 Last code unit = 'h' (caseless) 591 First code unit = 'b' (caseless) 2189 Options: caseless 2200 Options: caseless 2211 Options: caseless 2751 Last code unit = 'b' (caseless) [all …]
|
D | testoutput5 | 1413 Options: caseless utf 1418 Options: caseless utf 1423 Options: caseless utf 1428 Options: caseless utf 2022 # properties and has changed how it behaves for caseless matching. 3011 Options: caseless utf 3012 First code unit = 'A' (caseless) 3013 Last code unit = 'B' (caseless) 3927 Options: caseless multiline utf 3929 Last code unit = 'c' (caseless) [all …]
|
D | testinput10 | 613 /A/utf,match_invalid_utf,caseless
|
D | testinput5 | 946 # properties and has changed how it behaves for caseless matching. 1766 # Horizontal and vertical space lists ignore caseless 2189 /(|�)7/caseless,ucp
|
D | testoutput11-32 | 592 Options: caseless
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | CaseIterator.java | 533 UnicodeSet caseless = new UnicodeSet(); in main() local 545 caseless.add(i); in main() 549 System.out.println("caseless = " + caseless.toPattern(true)); in main() 555 a.removeAll(caseless); in main() 558 a.set(caseless); in main()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CaseIterator.java | 534 UnicodeSet caseless = new UnicodeSet(); in main() local 546 caseless.add(i); in main() 550 System.out.println("caseless = " + caseless.toPattern(true)); in main() 556 a.removeAll(caseless); in main() 559 a.set(caseless); in main()
|
D | StandardCodes.java | 365 static Comparator caseless = new Comparator() { field in StandardCodes
|
/external/pcre/dist2/src/ |
D | pcre2_dfa_match.c | 747 BOOL caseless = FALSE; in internal_dfa_match() local 2360 caseless = TRUE; in internal_dfa_match() 2375 if (caseless) in internal_dfa_match() 2405 caseless = TRUE; in internal_dfa_match() 2418 if (caseless) in internal_dfa_match() 2446 caseless = TRUE; in internal_dfa_match() 2459 if (caseless) in internal_dfa_match() 2483 caseless = TRUE; in internal_dfa_match() 2492 if (caseless) in internal_dfa_match() 2518 caseless = TRUE; in internal_dfa_match() [all …]
|
D | pcre2_study.c | 781 set_table_bit(pcre2_real_code *re, PCRE2_SPTR p, BOOL caseless, BOOL utf, in set_table_bit() argument 814 if (caseless) in set_table_bit()
|
D | pcre2_jit_compile.c | 5369 BOOL last, any, class, caseless; in scan_prefix() local 5392 caseless = FALSE; in scan_prefix() 5397 caseless = TRUE; in scan_prefix() 5431 caseless = TRUE; in scan_prefix() 5440 caseless = TRUE; in scan_prefix() 5451 caseless = TRUE; in scan_prefix() 5711 if (caseless && char_has_othercase(common, cc)) in scan_prefix() 5734 caseless = FALSE; in scan_prefix() 5751 if (caseless) in scan_prefix() 6414 …arch_requested_char(compiler_common *common, PCRE2_UCHAR req_char, BOOL caseless, BOOL has_firstch… in search_requested_char() argument [all …]
|
D | pcre2test.c | 4676 const char *caseless = in show_pattern_info() local 4680 fprintf(outfile, "First code unit = \'%c\'%s\n", first_cunit, caseless); in show_pattern_info() 4685 fprintf(outfile, "%s\n", caseless); in show_pattern_info() 4719 const char *caseless = in show_pattern_info() local 4723 fprintf(outfile, "Last code unit = \'%c\'%s\n", last_cunit, caseless); in show_pattern_info() 4728 fprintf(outfile, "%s\n", caseless); in show_pattern_info()
|
D | pcre2_match.c | 354 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref() argument 381 if (caseless) in match_ref()
|
/external/rust/crates/bstr/ |
D | README.md | 186 combining the use cases supported by [`caseless`](https://docs.rs/caseless)
|
/external/python/setuptools/setuptools/_vendor/ |
D | pyparsing.py | 2417 def __init__( self, matchString, identChars=None, caseless=False ): argument 2432 self.caseless = caseless 2433 if caseless: 2439 if self.caseless: 2496 super(CaselessKeyword,self).__init__( matchString, identChars, caseless=True ) 4532 def oneOf( strs, caseless=False, useRegex=True ): argument 4555 if caseless: 4590 if not caseless and useRegex: 4838 tagStr = Keyword(tagStr, caseless=not xml)
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | pyparsing.py | 2417 def __init__( self, matchString, identChars=None, caseless=False ): argument 2432 self.caseless = caseless 2433 if caseless: 2439 if self.caseless: 2496 super(CaselessKeyword,self).__init__( matchString, identChars, caseless=True ) 4532 def oneOf( strs, caseless=False, useRegex=True ): argument 4555 if caseless: 4590 if not caseless and useRegex: 4838 tagStr = Keyword(tagStr, caseless=not xml)
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | build.log | 61 caseless: 0.11.0
|
/external/pcre/dist2/ |
D | HACKING | 458 casefully. For caseless matching of characters that have at most two 479 following opcodes, which come in caseful and caseless versions: 575 bits are counted from the least significant end of each unit. In caseless mode, 586 single characters and/or properties. In caseless mode, all equivalent 613 OP_REF (caseful) or OP_REFI (caseless) is followed by a count containing the
|
D | ChangeLog | 362 search is caseless, it was doing so inefficiently, which ended up slowing down 380 same character, to be treated as a single caseless character. This causes the 391 with a single starting code unit (1 bit) or a caseless single starting code 408 caseless match, the "first code unit" optimization did not get the casing 1384 calls to match(), a repeated minimizing caseless back reference, or a
|
/external/chromium-trace/catapult/third_party/polymer/components/polymer/ |
D | build.log | 99 caseless: 0.11.0
|
/external/pcre/dist2/doc/ |
D | pcre2test.txt | 404 ters, for example "i" for "caseless". In documentation, following the 560 /i caseless set PCRE2_CASELESS 671 Overall options: caseless multiline 678 Overall options: caseless 679 First code unit = 'a' (caseless) 680 Last code unit = 'c' (caseless) 890 caseless REG_ICASE
|
/external/python/cpython3/Doc/howto/ |
D | unicode.rst | 461 The Unicode Standard also specifies how to do caseless comparisons::
|