HomeSort by relevance Sort by last modified time
    Searched refs:alpha_codes (Results 1 - 2 of 2) sorted by null

  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 126 uint16_t alpha_codes[MAX_HYPHENATED_SIZE]; local
127 const HyphenationType hyphenValue = alphabetLookup(alpha_codes, word, len);
129 hyphenateFromCodes(result->data(), alpha_codes, paddedLen, hyphenValue);
325 HyphenationType Hyphenator::alphabetLookup(uint16_t* alpha_codes, const uint16_t* word,
335 alpha_codes[0] = 0; // word start
348 alpha_codes[i + 1] = code;
350 alpha_codes[len + 1] = 0; // word termination
357 alpha_codes[0] = 0;
371 alpha_codes[i + 1] = AlphabetTable1::value(entry);
373 alpha_codes[len + 1] = 0
    [all...]
  /frameworks/minikin/include/minikin/
Hyphenator.h 149 // Note that this method writes len+2 entries into alpha_codes (including start and stop)
150 HyphenationType alphabetLookup(uint16_t* alpha_codes, const uint16_t* word, size_t len);

Completed in 56 milliseconds