HomeSort by relevance Sort by last modified time
    Searched refs:matchSet (Results 1 - 6 of 6) sorted by null

  /external/icu4c/common/
ustring.c 458 * 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) {
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, matchItr, matchLen, matchCh)
    [all...]
  /external/webkit/JavaScriptCore/icu/unicode/
ustring.h 329 * in the string <code>matchSet</code>.
333 * @param matchSet A NUL-terminated string defining a set of code points
336 * characters in <code>matchSet</code>, or NULL if no such character is found.
340 u_strpbrk(const UChar *string, const UChar *matchSet);
344 * beginning with the first, that do not occur somewhere in <code>matchSet</code>.
348 * @param matchSet A NUL-terminated string defining a set of code points
351 * occur in <code>matchSet</code>.
356 u_strcspn(const UChar *string, const UChar *matchSet);
360 * beginning with the first, that occur somewhere in <code>matchSet</code>.
364 * @param matchSet A NUL-terminated string defining a set of code point
    [all...]
  /external/webkit/JavaScriptGlue/icu/unicode/
ustring.h 329 * in the string <code>matchSet</code>.
333 * @param matchSet A NUL-terminated string defining a set of code points
336 * characters in <code>matchSet</code>, or NULL if no such character is found.
340 u_strpbrk(const UChar *string, const UChar *matchSet);
344 * beginning with the first, that do not occur somewhere in <code>matchSet</code>.
348 * @param matchSet A NUL-terminated string defining a set of code points
351 * occur in <code>matchSet</code>.
356 u_strcspn(const UChar *string, const UChar *matchSet);
360 * beginning with the first, that occur somewhere in <code>matchSet</code>.
364 * @param matchSet A NUL-terminated string defining a set of code point
    [all...]
  /external/webkit/WebCore/icu/unicode/
ustring.h 329 * in the string <code>matchSet</code>.
333 * @param matchSet A NUL-terminated string defining a set of code points
336 * characters in <code>matchSet</code>, or NULL if no such character is found.
340 u_strpbrk(const UChar *string, const UChar *matchSet);
344 * beginning with the first, that do not occur somewhere in <code>matchSet</code>.
348 * @param matchSet A NUL-terminated string defining a set of code points
351 * occur in <code>matchSet</code>.
356 u_strcspn(const UChar *string, const UChar *matchSet);
360 * beginning with the first, that occur somewhere in <code>matchSet</code>.
364 * @param matchSet A NUL-terminated string defining a set of code point
    [all...]
  /external/webkit/WebKit/mac/icu/unicode/
ustring.h 329 * in the string <code>matchSet</code>.
333 * @param matchSet A NUL-terminated string defining a set of code points
336 * characters in <code>matchSet</code>, or NULL if no such character is found.
340 u_strpbrk(const UChar *string, const UChar *matchSet);
344 * beginning with the first, that do not occur somewhere in <code>matchSet</code>.
348 * @param matchSet A NUL-terminated string defining a set of code points
351 * occur in <code>matchSet</code>.
356 u_strcspn(const UChar *string, const UChar *matchSet);
360 * beginning with the first, that occur somewhere in <code>matchSet</code>.
364 * @param matchSet A NUL-terminated string defining a set of code point
    [all...]
  /external/icu4c/common/unicode/
ustring.h 335 * in the string <code>matchSet</code>.
339 * @param matchSet A NUL-terminated string defining a set of code points
342 * characters in <code>matchSet</code>, or NULL if no such character is found.
346 u_strpbrk(const UChar *string, const UChar *matchSet);
350 * beginning with the first, that do not occur somewhere in <code>matchSet</code>.
354 * @param matchSet A NUL-terminated string defining a set of code points
357 * occur in <code>matchSet</code>.
362 u_strcspn(const UChar *string, const UChar *matchSet);
366 * beginning with the first, that occur somewhere in <code>matchSet</code>.
370 * @param matchSet A NUL-terminated string defining a set of code point
    [all...]

Completed in 192 milliseconds