Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DHyphenator.cpp125 uint16_t alpha_codes[MAX_HYPHENATED_SIZE]; in hyphenate() local
126 const HyphenationType hyphenValue = alphabetLookup(alpha_codes, word); in hyphenate()
128 hyphenateFromCodes(alpha_codes, paddedLen, hyphenValue, out); in hyphenate()
291 HyphenationType Hyphenator::alphabetLookup(uint16_t* alpha_codes, in alphabetLookup() argument
301 alpha_codes[0] = 0; // word start in alphabetLookup()
314 alpha_codes[i + 1] = code; in alphabetLookup()
316 alpha_codes[word.size() + 1] = 0; // word termination in alphabetLookup()
323 alpha_codes[0] = 0; in alphabetLookup()
337 alpha_codes[i + 1] = AlphabetTable1::value(entry); in alphabetLookup()
339 alpha_codes[word.size() + 1] = 0; in alphabetLookup()
/frameworks/minikin/include/minikin/
DHyphenator.h227 HyphenationType alphabetLookup(uint16_t* alpha_codes, const U16StringPiece& word) const;