Searched refs:charIndex (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java542 private int charIndex; field in class:BidiFormatter.DirectionalityEstimator
577 charIndex = 0;
581 while (charIndex < length && firstNonEmptyEmbeddingLevel == 0) {
637 while (charIndex > 0) {
675 charIndex = length;
678 while (charIndex > 0) {
739 * charIndex. If isHtml, and the codepoint is '<' or '&', advances through the tag/entity,
744 * @throws java.lang.IndexOutOfBoundsException if called when charIndex >= length or < 0.
747 lastChar = text.charAt(charIndex);
749 int codePoint = Character.codePointAt(text, charIndex);
[all...]
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java532 private int charIndex; field in class:BidiFormatter.DirectionalityEstimator
567 charIndex = 0;
571 while (charIndex < length && firstNonEmptyEmbeddingLevel == 0) {
627 while (charIndex > 0) {
665 charIndex = length;
668 while (charIndex > 0) {
729 * charIndex. If isHtml, and the codepoint is '<' or '&', advances through the tag/entity,
734 * @throws java.lang.IndexOutOfBoundsException if called when charIndex >= length or < 0.
737 lastChar = text.charAt(charIndex);
739 int codePoint = Character.codePointAt(text, charIndex);
[all...]

Completed in 315 milliseconds