Searched defs:lastChar (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java550 private char lastChar; field in class:BidiFormatter.DirectionalityEstimator
747 lastChar = text.charAt(charIndex);
748 if (Character.isHighSurrogate(lastChar)) {
754 byte dirType = getCachedDirectionality(lastChar);
757 if (lastChar == '<') {
759 } else if (lastChar == '&') {
777 lastChar = text.charAt(charIndex - 1);
778 if (Character.isLowSurrogate(lastChar)) {
784 byte dirType = getCachedDirectionality(lastChar);
787 if (lastChar
[all...]
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java540 private char lastChar; field in class:BidiFormatter.DirectionalityEstimator
737 lastChar = text.charAt(charIndex);
738 if (Character.isHighSurrogate(lastChar)) {
744 byte dirType = getCachedDirectionality(lastChar);
747 if (lastChar == '<') {
749 } else if (lastChar == '&') {
767 lastChar = text.charAt(charIndex - 1);
768 if (Character.isLowSurrogate(lastChar)) {
774 byte dirType = getCachedDirectionality(lastChar);
777 if (lastChar
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h428 uint32_t firstChar, lastChar; member in struct:android::ResStringPool_span

Completed in 144 milliseconds