Home | History | Annotate | Download | only in text

Lines Matching defs:codePoint

546          * encountered a supplementary codepoint, this contains a char that is not a valid
547 * codepoint. This is ok, because this member is only used to detect some well-known ASCII
738 * Returns the Character.DIRECTIONALITY_... value of the next codepoint and advances
739 * charIndex. If isHtml, and the codepoint is '<' or '&', advances through the tag/entity,
749 int codePoint = Character.codePointAt(text, charIndex);
750 charIndex += Character.charCount(codePoint);
751 return Character.getDirectionality(codePoint);
767 * Returns the Character.DIRECTIONALITY_... value of the preceding codepoint and advances
768 * charIndex backwards. If isHtml, and the codepoint is the end of a complete HTML tag or
779 int codePoint = Character.codePointBefore(text, charIndex);
780 charIndex -= Character.charCount(codePoint);
781 return Character.getDirectionality(codePoint);