Home
last modified time | relevance | path

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

/frameworks/minikin/libs/minikin/
DHyphenator.cpp46 struct AlphabetTable1 { struct
96 const AlphabetTable1* alphabetTable1() const { in alphabetTable1()
97 return reinterpret_cast<const AlphabetTable1*>(bytes() + alphabet_offset); in alphabetTable1()
374 const AlphabetTable1* alphabet = header->alphabetTable1(); in alphabetLookup()
386 if (AlphabetTable1::codepoint(entry) != c) { in alphabetLookup()
392 alpha_codes[i + 1] = AlphabetTable1::value(entry); in alphabetLookup()
/frameworks/minikin/rust/
Dhyphenator.rs248 pub struct AlphabetTable1<'a> { struct
316 1 => Some(Box::new(AlphabetTable1::new(self.read_offset_and_slice(8)))), in alphabet_table()
393 impl<'a> AlphabetTable1<'a> { implementation
398 AlphabetTable1 { data, num_entries } in new()
421 impl<'a> AlphabetLookup for AlphabetTable1<'a> { implementation