Searched refs:caseless (Results 1 - 6 of 6) sorted by relevance
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | CaseIterator.java | 530 // generate a list of all caseless characters -- characters whose in main() 533 UnicodeSet caseless = new UnicodeSet(); in main() 545 caseless.add(i); in main() 549 System.out.println("caseless = " + caseless.toPattern(true)); in main() 555 a.removeAll(caseless); in main() 556 System.out.println("[:^lc:] - caseless = " + a.toPattern(true)); in main() 558 a.set(caseless); in main() 560 System.out.println("caseless - [:^lc:] = " + a.toPattern(true)); in main()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_dfa_match.c | 747 BOOL caseless = FALSE; in internal_dfa_match() local 2417 caseless = TRUE; in internal_dfa_match() 2432 if (caseless) in internal_dfa_match() 2462 caseless = TRUE; in internal_dfa_match() 2475 if (caseless) in internal_dfa_match() 2503 caseless = TRUE; in internal_dfa_match() 2516 if (caseless) in internal_dfa_match() 2540 caseless = TRUE; in internal_dfa_match() 2549 if (caseless) in internal_dfa_match() 2575 caseless in internal_dfa_match() [all...] |
H A D | pcre2_study.c | 768 corresponding bit for the other version of a letter if we are caseless. 773 caseless TRUE if caseless 781 set_table_bit(pcre2_real_code *re, PCRE2_SPTR p, BOOL caseless, BOOL utf, in set_table_bit() argument 799 the end of the character, even when caseless. */ in set_table_bit() 812 /* If caseless, handle the other case of the character. */ in set_table_bit() 814 if (caseless) in set_table_bit() 1697 If two are listed, see if they are caseless versions of the same character; in study() 1698 if so we can replace the list with a caseless first code unit. This gives in study()
|
H A D | pcre2test.c | 655 { "caseless", MOD_PATP, MOD_OPT, PCRE2_CASELESS, PO(options) }, 839 { "caseless", 'i', -1 }, 4213 ((options & PCRE2_CASELESS) != 0)? " caseless" : "", in show_compile_options() 4716 const char *caseless = in show_pattern_info() local 4718 "" : " (caseless)"; in show_pattern_info() 4720 fprintf(outfile, "First code unit = \'%c\'%s\n", first_cunit, caseless); in show_pattern_info() 4725 fprintf(outfile, "%s\n", caseless); in show_pattern_info() 4759 const char *caseless = in show_pattern_info() local 4761 "" : " (caseless)"; in show_pattern_info() 4763 fprintf(outfile, "Last code unit = \'%c\'%s\n", last_cunit, caseless); in show_pattern_info() [all...] |
H A D | pcre2_jit_compile.c | 5443 BOOL last, any, class, caseless; in scan_prefix() local 5466 caseless = FALSE; in scan_prefix() 5471 caseless = TRUE; in scan_prefix() 5505 caseless = TRUE; in scan_prefix() 5514 caseless = TRUE; in scan_prefix() 5525 caseless = TRUE; in scan_prefix() 5785 if (caseless && char_has_othercase(common, cc)) in scan_prefix() 5808 caseless = FALSE; in scan_prefix() 5825 if (caseless) in scan_prefix() 6488 static SLJIT_INLINE jump_list *search_requested_char(compiler_common *common, PCRE2_UCHAR req_char, BOOL caseless, BOO argument 7312 byte_sequence_compare(compiler_common *common, BOOL caseless, PCRE2_SPTR cc, compare_context *context, jump_list **backtracks) byte_sequence_compare() argument [all...] |
H A D | pcre2_match.c | 338 the offsets that have so far been used in the match. Note that in caseless 345 caseless TRUE if caseless 356 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref() argument 377 /* Separate the caseless and UTF cases for speed. */ in match_ref() 383 if (caseless) in match_ref() 1078 else if (Fop == OP_NOTI) /* If caseless */ in match() 1101 else if (Fop == OP_NOTI) /* If caseless */ in match() 1222 The various UTF/non-UTF and caseful/caseless cases are handled separately, in match() 1234 /* Handle multi-code-unit character matching, caseful and caseless in match() [all...] |
Completed in 26 milliseconds