Home | History | Annotate | Download | only in method

Lines Matching defs:codePoint

305             final int codePoint = Character.codePointBefore(mCharSeq, offset);
306 return isPunctuation(codePoint);
320 final int codePoint = Character.codePointAt(mCharSeq, offset);
321 return isPunctuation(codePoint);
327 * Indicates if the codepoint is a mid-word-only punctuation.
336 * @param locale the locale to consider the codepoint in. Presently ignored.
337 * @param codePoint the codepoint to check.
338 * @return True if the codepoint is a mid-word punctuation.
340 public static boolean isMidWordPunctuation(Locale locale, int codePoint) {
341 final int wb = UCharacter.getIntPropertyValue(codePoint, UProperty.WORD_BREAK);
368 final int codePoint = Character.codePointBefore(mCharSeq, offset);
369 if (Character.isLetterOrDigit(codePoint)) return true;
376 final int codePoint = Character.codePointAt(mCharSeq, offset);
377 if (Character.isLetterOrDigit(codePoint)) return true;