Searched defs:lastChar (Results 1 - 5 of 5) 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/minikin/libs/minikin/
H A DFontCollection.cpp43 vector<uint32_t> lastChar; local
59 lastChar.push_back(coverage->nextSetBit(0));
75 if (lastChar[j] < (i + 1) << kLogCharsPerPage) {
83 lastChar[j] = nextChar;
/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/rs/api/
H A Dgen_runtime.cpp598 char lastChar = rsType[last]; local
599 if (lastChar >= '0' && lastChar <= '9') {
601 mVectorSize = lastChar;
1384 char lastChar = s[last]; local
1385 return lastChar >= '0' && lastChar <= '9';
1562 char lastChar = s[last]; local
1563 if (lastChar >= '1' && lastChar <
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h473 uint32_t firstChar, lastChar; member in struct:android::ResStringPool_span

Completed in 620 milliseconds