Searched refs:caseless (Results 1 - 7 of 7) sorted by relevance

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DCaseIterator.java530 // generate a list of all caseless characters -- characters whose
533 UnicodeSet caseless = new UnicodeSet();
545 caseless.add(i);
549 System.out.println("caseless = " + caseless.toPattern(true));
555 a.removeAll(caseless);
556 System.out.println("[:^lc:] - caseless = " + a.toPattern(true));
558 a.set(caseless);
560 System.out.println("caseless - [:^lc:] = " + a.toPattern(true));
/external/pcre/dist2/src/
H A Dpcre2_dfa_match.c594 BOOL caseless = FALSE; local
2247 caseless = TRUE;
2262 if (caseless)
2292 caseless = TRUE;
2305 if (caseless)
2333 caseless = TRUE;
2346 if (caseless)
2370 caseless = TRUE;
2379 if (caseless)
2405 caseless
[all...]
H A Dpcre2_study.c706 corresponding bit for the other version of a letter if we are caseless.
711 caseless TRUE if caseless
718 set_table_bit(pcre2_real_code *re, PCRE2_SPTR p, BOOL caseless, BOOL utf) argument
733 the end of the character, even when caseless. */
746 /* If caseless, handle the other case of the character. */
748 if (caseless)
H A Dpcre2_match.c126 the offsets that have so far been used in the match. Note that in caseless
136 caseless TRUE if caseless
146 match_block *mb, BOOL caseless, PCRE2_SIZE *lengthptr)
169 /* Separate the caseless and UTF cases for speed. */
174 if (caseless)
592 BOOL caseless; local
2769 caseless = op == OP_DNREFI;
2790 caseless = op == OP_REFI;
2823 int rc = match_ref(offset, offset_top, eptr, mb, caseless,
145 match_ref(PCRE2_SIZE offset, PCRE2_SIZE offset_top, register PCRE2_SPTR eptr, match_block *mb, BOOL caseless, PCRE2_SIZE *lengthptr) argument
[all...]
H A Dpcre2_jit_compile.c3484 BOOL last, any, class, caseless; local
3507 caseless = FALSE;
3512 caseless = TRUE;
3543 caseless = TRUE;
3551 caseless = TRUE;
3561 caseless = TRUE;
3821 if (caseless && char_has_othercase(common, cc))
3839 caseless = FALSE;
3853 if (caseless)
4553 static SLJIT_INLINE void fast_forward_first_char(compiler_common *common, PCRE2_UCHAR first_char, BOOL caseless) argument
4735 search_requested_char(compiler_common *common, PCRE2_UCHAR req_char, BOOL caseless, BOOL has_firstchar) argument
5300 byte_sequence_compare(compiler_common *common, BOOL caseless, PCRE2_SPTR cc, compare_context *context, jump_list **backtracks) argument
[all...]
H A Dpcre2test.c552 { "caseless", MOD_PATP, MOD_OPT, PCRE2_CASELESS, PO(options) },
696 { "caseless", 'i', -1 },
3696 ((options & PCRE2_CASELESS) != 0)? " caseless" : "",
4038 const char *caseless = local
4040 "" : " (caseless)";
4042 fprintf(outfile, "First code unit = \'%c\'%s\n", first_cunit, caseless);
4047 fprintf(outfile, "%s\n", caseless);
4081 const char *caseless = local
4083 "" : " (caseless)";
4085 fprintf(outfile, "Last code unit = \'%c\'%s\n", last_cunit, caseless);
[all...]
/external/pcre/pcrecpp/include/
H A Dpcrecpp.h200 // bool caseless(),
397 bool caseless() const { function in class:pcrecpp::RE_Options

Completed in 236 milliseconds