Searched refs:codept (Results 1 – 1 of 1) sorted by relevance
220 int codept = 0; in draw() local224 codept = mChars[j]; in draw()225 if (codept >= 0xd800 && codept < 0xdc00 && j + 1 < runLimit) { in draw()226 codept = Character.codePointAt(mChars, j); in draw()227 if (codept >= Layout.MIN_EMOJI && codept <= Layout.MAX_EMOJI) { in draw()228 bm = Layout.EMOJI_FACTORY.getBitmapFromAndroidPua(codept); in draw()229 } else if (codept > 0xffff) { in draw()236 if (j == runLimit || codept == '\t' || bm != null) { in draw()240 if (codept == '\t') { in draw()315 int codept = 0; in measure() local[all …]