Home
last modified time | relevance | path

Searched refs:nextCh (Results 1 – 2 of 2) sorted by relevance

/frameworks/minikin/libs/minikin/
DFontCollection.cpp90 uint32_t nextCh = 0; in getGlyphScore() local
91 U16_NEXT(string, readLength, string_size, nextCh); in getGlyphScore()
93 if (!isTagChar(nextCh)) { in getGlyphScore()
729 uint32_t nextCh = 0; in itemize() local
733 U16_NEXT(string, readLength, string_size, nextCh); in itemize()
734 if (U_IS_SURROGATE(nextCh)) { in itemize()
735 nextCh = REPLACEMENT_CHARACTER; in itemize()
739 const uint32_t ch = nextCh; in itemize()
743 U16_NEXT(string, readLength, string_size, nextCh); in itemize()
744 if (U_IS_SURROGATE(nextCh)) { in itemize()
[all …]
/frameworks/opt/vcard/java/com/android/vcard/
DVCardUtils.java382 char nextCh = value.charAt(i + 1); in constructListFromValue() local
385 unescapedString = VCardParserImpl_V40.unescapeCharacter(nextCh); in constructListFromValue()
387 unescapedString = VCardParserImpl_V30.unescapeCharacter(nextCh); in constructListFromValue()
393 unescapedString = VCardParserImpl_V21.unescapeCharacter(nextCh); in constructListFromValue()
738 char nextCh = value.charAt(i + 1); in parseQuotedPrintable() local
739 if (nextCh == ' ' || nextCh == '\t') { in parseQuotedPrintable()
740 builder.append(nextCh); in parseQuotedPrintable()
766 char nextCh = quotedPrintable.charAt(i + 1); in parseQuotedPrintable() local
767 if (nextCh == '\n') { in parseQuotedPrintable()