• Home
  • Raw
  • Download

Lines Matching refs:OT

47 static OT::SubstLookup *
52 OT::GlyphID glyphs[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single()
53 OT::GlyphID substitutes[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single()
80 hb_stable_sort (&glyphs[0], num_glyphs, OT::GlyphID::cmp, &substitutes[0]); in arabic_fallback_synthesize_lookup_single()
82 OT::Supplier<OT::GlyphID> glyphs_supplier (glyphs, num_glyphs); in arabic_fallback_synthesize_lookup_single()
83 OT::Supplier<OT::GlyphID> substitutes_supplier (substitutes, num_glyphs); in arabic_fallback_synthesize_lookup_single()
87 OT::hb_serialize_context_t c (buf, sizeof (buf)); in arabic_fallback_synthesize_lookup_single()
88 OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); in arabic_fallback_synthesize_lookup_single()
90 OT::LookupFlag::IgnoreMarks, in arabic_fallback_synthesize_lookup_single()
97 return ret ? c.copy<OT::SubstLookup> () : NULL; in arabic_fallback_synthesize_lookup_single()
100 static OT::SubstLookup *
104 OT::GlyphID first_glyphs[ARRAY_LENGTH_CONST (ligature_table)]; in arabic_fallback_synthesize_lookup_ligature()
110OT::GlyphID ligature_list[ARRAY_LENGTH_CONST (first_glyphs) * ARRAY_LENGTH_CONST(ligature_table[0]… in arabic_fallback_synthesize_lookup_ligature()
112OT::GlyphID component_list[ARRAY_LENGTH_CONST (ligature_list) * 1/* One extra component per ligatu… in arabic_fallback_synthesize_lookup_ligature()
129 …hb_stable_sort (&first_glyphs[0], num_first_glyphs, OT::GlyphID::cmp, &first_glyphs_indirection[0]… in arabic_fallback_synthesize_lookup_ligature()
158OT::Supplier<OT::GlyphID> first_glyphs_supplier (first_glyphs, num_first_gl… in arabic_fallback_synthesize_lookup_ligature()
159OT::Supplier<unsigned int > ligature_per_first_glyph_count_supplier (ligature_per_first_glyph_c… in arabic_fallback_synthesize_lookup_ligature()
160OT::Supplier<OT::GlyphID> ligatures_supplier (ligature_list, num_ligatur… in arabic_fallback_synthesize_lookup_ligature()
161OT::Supplier<unsigned int > component_count_supplier (component_count_list, num_… in arabic_fallback_synthesize_lookup_ligature()
162OT::Supplier<OT::GlyphID> component_supplier (component_list, num_ligatu… in arabic_fallback_synthesize_lookup_ligature()
166 OT::hb_serialize_context_t c (buf, sizeof (buf)); in arabic_fallback_synthesize_lookup_ligature()
167 OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); in arabic_fallback_synthesize_lookup_ligature()
169 OT::LookupFlag::IgnoreMarks, in arabic_fallback_synthesize_lookup_ligature()
180 return ret ? c.copy<OT::SubstLookup> () : NULL; in arabic_fallback_synthesize_lookup_ligature()
183 static OT::SubstLookup *
204 OT::SubstLookup *lookup_array[ARABIC_FALLBACK_MAX_LOOKUPS];
219 OT::Tag tag;
220 OT::OffsetTo<OT::SubstLookup> lookupOffset;
222 typedef OT::ArrayOf<ManifestLookup> Manifest;
251 …fallback_plan->lookup_array[j] = const_cast<OT::SubstLookup*> (&(&manifest+manifest[i].lookupOffse… in arabic_fallback_plan_init_win1256()
343 OT::hb_apply_context_t c (0, font, buffer); in arabic_fallback_plan_shape()