HomeSort by relevance Sort by last modified time
    Searched full:codept (Results 1 - 1 of 1) sorted by null

  /frameworks/base/core/java/android/text/
TextLine.java 217 int codept = 0; local
221 codept = mChars[j];
222 if (codept >= 0xd800 && codept < 0xdc00 && j + 1 < runLimit) {
223 codept = Character.codePointAt(mChars, j);
224 if (codept >= Layout.MIN_EMOJI && codept <= Layout.MAX_EMOJI) {
225 bm = Layout.EMOJI_FACTORY.getBitmapFromAndroidPua(codept);
226 } else if (codept > 0xffff) {
233 if (j == runLimit || codept == '\t' || bm != null)
312 int codept = 0; local
    [all...]

Completed in 2668 milliseconds