Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DFontCollection.cpp500 uint32_t nextCh = 0; in itemize() local
504 U16_NEXT(string, readLength, string_size, nextCh); in itemize()
505 if (U_IS_SURROGATE(nextCh)) { in itemize()
506 nextCh = REPLACEMENT_CHARACTER; in itemize()
510 const uint32_t ch = nextCh; in itemize()
514 U16_NEXT(string, readLength, string_size, nextCh); in itemize()
515 if (U_IS_SURROGATE(nextCh)) { in itemize()
516 nextCh = REPLACEMENT_CHARACTER; in itemize()
519 nextCh = kEndOfString; in itemize()
543 ch, isVariationSelector(nextCh) ? nextCh : 0, localeListId, familyVariant); 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()