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

  /external/icu/icu4c/source/common/
bmpset.h 79 * Same as UnicodeSet::findCodePoint(UChar32 c) const except that the
84 * lo=findCodePoint(start) and
85 * hi=findCodePoint(end)
87 * findCodePoint(c) defaults to lo=0 and hi=len-1.
95 int32_t findCodePoint(UChar32 c, int32_t lo, int32_t hi) const;
141 * findCodePoint(), from
142 * findCodePoint(U+0800, U+1000, U+2000, .., U+F000, U+10000).
159 return (UBool)(findCodePoint(c, lo, hi) & 1);
bmpset.cpp 42 list4kStarts[0]=findCodePoint(0x800, 0, listLength-1);
45 list4kStarts[i]=findCodePoint(i<<12, list4kStarts[i-1], listLength-1);
257 int32_t BMPSet::findCodePoint(UChar32 c, int32_t lo, int32_t hi) const {
259 findCodePoint(c)
uniset.cpp 375 int32_t i = findCodePoint(c);
388 int32_t UnicodeSet::findCodePoint(UChar32 c) const {
390 findCodePoint(c)
436 int32_t i = findCodePoint(start);
498 int32_t i = findCodePoint(start);
825 // This is slow. Could be much faster using findCodePoint(start)
865 int32_t i = findCodePoint(pinCodePoint(c));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
BMPSet.java 57 * Inversion list indexes for restricted binary searches in findCodePoint(), from findCodePoint(U+0800, U+1000,
83 list4kStarts[0] = findCodePoint(0x800, 0, listLength - 1);
86 list4kStarts[i] = findCodePoint(i << 12, list4kStarts[i - 1], listLength - 1);
464 * Same as UnicodeSet.findCodePoint(int c) except that the binary search is restricted for finding code
467 * For restricting the search for finding in the range start..end, pass in lo=findCodePoint(start) and
468 * hi=findCodePoint(end) with 0<=lo<=hi<len. findCodePoint(c) defaults to lo=0 and hi=len-1.
478 private int findCodePoint(int c, int lo, int hi) {
480 findCodePoint(c
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
BMPSet.java 55 * Inversion list indexes for restricted binary searches in findCodePoint(), from findCodePoint(U+0800, U+1000,
81 list4kStarts[0] = findCodePoint(0x800, 0, listLength - 1);
84 list4kStarts[i] = findCodePoint(i << 12, list4kStarts[i - 1], listLength - 1);
462 * Same as UnicodeSet.findCodePoint(int c) except that the binary search is restricted for finding code
465 * For restricting the search for finding in the range start..end, pass in lo=findCodePoint(start) and
466 * hi=findCodePoint(end) with 0<=lo<=hi<len. findCodePoint(c) defaults to lo=0 and hi=len-1.
476 private int findCodePoint(int c, int lo, int hi) {
478 findCodePoint(c
    [all...]
  /external/icu/icu4c/source/common/unicode/
uniset.h     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSet.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSet.java     [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 791 milliseconds