Searched defs:matchSet (Results 1 - 2 of 2) sorted by relevance

/external/icu4c/common/
H A Dustring.c458 * Match each code point in a string against each code point in the matchSet.
460 * is (polarity==TRUE) or is not (FALSE) contained in the matchSet.
464 _matchFromSet(const UChar *string, const UChar *matchSet, UBool polarity) { argument
469 /* first part of matchSet contains only BMP code points */
471 while((c = matchSet[matchBMPLen]) != 0 && U16_IS_SINGLE(c)) {
475 /* second part of matchSet contains BMP and supplementary code points */
477 while(matchSet[matchLen] != 0) {
486 if(c == matchSet[matchItr]) {
492 if(c == matchSet[matchItr]) {
512 U16_NEXT(matchSet, matchIt
537 u_strpbrk(const UChar *string, const UChar *matchSet) argument
549 u_strcspn(const UChar *string, const UChar *matchSet) argument
561 u_strspn(const UChar *string, const UChar *matchSet) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c71755 u8 matchSet; member in struct:compareInfo
71819 u8 matchSet = pInfo->matchSet; local
[all...]

Completed in 201 milliseconds