Home
last modified time | relevance | path

Searched refs:CmapSubtable (Results 1 – 14 of 14) sorted by relevance

/external/fonttools/Tests/ttLib/tables/
D_c_m_a_p_test.py7 from fontTools.ttLib.tables._c_m_a_p import CmapSubtable, table__c_m_a_p
25 subtable = CmapSubtable.newSubtable(cmapFormat)
66 subtable2 = CmapSubtable.newSubtable(2)
80 subtable2 = CmapSubtable.newSubtable(fmt)
98 subtable2 = CmapSubtable.newSubtable(4)
103 subtable = CmapSubtable.newSubtable(4)
109 subtable = CmapSubtable.newSubtable(12)
DO_S_2f_2_test.py13 st = getTableModule("cmap").CmapSubtable.newSubtable(4)
/external/fonttools/Snippets/
Dcmap-format.py14 from fontTools.ttLib.tables._c_m_a_p import CmapSubtable
30 newtable = CmapSubtable.newSubtable(4)
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/skrifa-0.24.1/src/
Dcharmap.rs19 self, Cmap, Cmap12, Cmap12Iter, Cmap14, Cmap14Iter, Cmap4, Cmap4Iter, CmapSubtable,
180 CmapSubtable::Format14(cmap14) => Some(cmap14), in charmap()
232 ) -> Option<CmapSubtable<'a>> { in get_subtable()
278 fn new(subtable: CmapSubtable<'a>) -> Option<Self> { in new()
280 CmapSubtable::Format4(cmap4) => Self::Format4(cmap4), in new()
281 CmapSubtable::Format12(cmap12) => Self::Format12(cmap12), in new()
350 if let Ok(CmapSubtable::Format14(subtable)) = in new()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/skrifa-0.24.1/src/
Dcharmap.rs19 self, Cmap, Cmap12, Cmap12Iter, Cmap14, Cmap14Iter, Cmap4, Cmap4Iter, CmapSubtable,
180 CmapSubtable::Format14(cmap14) => Some(cmap14), in charmap()
232 ) -> Option<CmapSubtable<'a>> { in get_subtable()
278 fn new(subtable: CmapSubtable<'a>) -> Option<Self> { in new()
280 CmapSubtable::Format4(cmap4) => Self::Format4(cmap4), in new()
281 CmapSubtable::Format12(cmap12) => Self::Format12(cmap12), in new()
350 if let Ok(CmapSubtable::Format14(subtable)) = in new()
/external/harfbuzz_ng/src/
Dhb-ot-cmap-table.hh1496 struct CmapSubtable struct
1646 CmapSubtable *cmapsubtable = c->push<CmapSubtable> (); in copy()
1665 Offset32To<CmapSubtable>
1915 | hb_filter ([&] (const CmapSubtable& _) { return _.u.format == 14; }) in closure_glyphs()
1916 | hb_apply ([=] (const CmapSubtable& _) { _.u.format14.closure_glyphs (unicodes, glyphset); }) in closure_glyphs()
1966 const CmapSubtable *find_best_subtable (bool *symbol = nullptr, in find_best_subtable()
1974 const CmapSubtable *subtable; in find_best_subtable()
2012 return &Null (CmapSubtable); in find_best_subtable()
2026 const CmapSubtable *st = table->find_subtable (0, 5); in accelerator_t()
2037 this->get_glyph_funcZ = get_glyph_from_symbol<CmapSubtable, _hb_symbol_pua_map>; in accelerator_t()
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py170 table = CmapSubtable.newSubtable(format)
232 table = CmapSubtable.newSubtable(format)
239 class CmapSubtable(object): class
260 subtableClass = CmapSubtable.getSubtableClass(format)
353 if not isinstance(other, CmapSubtable):
372 class cmap_format_0(CmapSubtable):
431 class cmap_format_2(CmapSubtable):
862 class cmap_format_4(CmapSubtable):
1056 class cmap_format_6(CmapSubtable):
1123 class cmap_format_12_or_13(CmapSubtable):
[all …]
/external/fonttools/Doc/source/ttLib/tables/
D_c_m_a_p.rst6 .. autoclass:: fontTools.ttLib.tables._c_m_a_p.CmapSubtable
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/read-fonts-0.23.2/src/tables/
Dcmap.rs34 CmapSubtable::Format4(format4) => format4.map_codepoint(codepoint), in map_codepoint()
35 CmapSubtable::Format12(format12) => format12.map_codepoint(codepoint), in map_codepoint()
50 CmapSubtable::Format14(format14) => { in closure_glyphs()
729 CmapSubtable::Format4(cmap4) => Some(cmap4), in find_cmap4()
739 CmapSubtable::Format12(cmap12) => Some(cmap12), in find_cmap12()
749 CmapSubtable::Format14(cmap14) => Some(cmap14), in find_cmap14()
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/read-fonts-0.23.2/src/tables/
Dcmap.rs34 CmapSubtable::Format4(format4) => format4.map_codepoint(codepoint), in map_codepoint()
35 CmapSubtable::Format12(format12) => format12.map_codepoint(codepoint), in map_codepoint()
50 CmapSubtable::Format14(format14) => { in closure_glyphs()
729 CmapSubtable::Format4(cmap4) => Some(cmap4), in find_cmap4()
739 CmapSubtable::Format12(cmap12) => Some(cmap12), in find_cmap12()
749 CmapSubtable::Format14(cmap14) => Some(cmap14), in find_cmap14()
/external/fonttools/Tests/ttLib/
DttFont_test.py16 from fontTools.ttLib.tables._c_m_a_p import CmapSubtable
183 cm = CmapSubtable.newSubtable(14)
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/read-fonts-0.23.2/generated/
Dgenerated_cmap.rs137 pub fn subtable<'a>(&self, data: FontData<'a>) -> Result<CmapSubtable<'a>, ReadError> { in subtable()
219 pub enum CmapSubtable<'a> { enum
231 impl<'a> CmapSubtable<'a> { impl
263 impl<'a> FontRead<'a> for CmapSubtable<'a> { implementation
282 impl<'a> CmapSubtable<'a> { impl
299 impl<'a> std::fmt::Debug for CmapSubtable<'a> { implementation
306 impl<'a> SomeTable<'a> for CmapSubtable<'a> { implementation
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/read-fonts-0.23.2/generated/
Dgenerated_cmap.rs137 pub fn subtable<'a>(&self, data: FontData<'a>) -> Result<CmapSubtable<'a>, ReadError> { in subtable()
219 pub enum CmapSubtable<'a> { enum
231 impl<'a> CmapSubtable<'a> { implementation
263 impl<'a> FontRead<'a> for CmapSubtable<'a> { implementation
282 impl<'a> CmapSubtable<'a> { implementation
299 impl<'a> std::fmt::Debug for CmapSubtable<'a> { implementation
306 impl<'a> SomeTable<'a> for CmapSubtable<'a> { implementation
/external/harfbuzz_ng/perf/texts/
Den-words.txt1936 CmapSubtable