/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-arabic-fallback.hh | 55 static OT::SubstLookup * 60 OT::GlyphID glyphs[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single() 61 OT::GlyphID substitutes[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single() 85 hb_bubble_sort (&glyphs[0], num_glyphs, OT::GlyphID::cmp, &substitutes[0]); in arabic_fallback_synthesize_lookup_single() 87 OT::Supplier<OT::GlyphID> glyphs_supplier (glyphs, num_glyphs); in arabic_fallback_synthesize_lookup_single() 88 OT::Supplier<OT::GlyphID> substitutes_supplier (substitutes, num_glyphs); in arabic_fallback_synthesize_lookup_single() 92 OT::hb_serialize_context_t c (buf, sizeof (buf)); in arabic_fallback_synthesize_lookup_single() 93 OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); in arabic_fallback_synthesize_lookup_single() 95 OT::LookupFlag::IgnoreMarks, in arabic_fallback_synthesize_lookup_single() 102 return ret ? c.copy<OT::SubstLookup> () : NULL; in arabic_fallback_synthesize_lookup_single() [all …]
|
D | hb-ot-font.cc | 43 const OT::hmtx *hmtx; 46 const OT::CmapSubtable *cmap; 47 const OT::CmapSubtable *cmap_uvs; 63 …hb_blob_t *hhea_blob = OT::Sanitizer<OT::hhea>::sanitize (font->face->reference_table (HB_OT_TAG_h… in _hb_ot_font_create() 64 const OT::hhea *hhea = OT::Sanitizer<OT::hhea>::lock_instance (hhea_blob); in _hb_ot_font_create() 68 …ot_font->hmtx_blob = OT::Sanitizer<OT::hmtx>::sanitize (font->face->reference_table (HB_OT_TAG_hmt… in _hb_ot_font_create() 76 ot_font->hmtx = OT::Sanitizer<OT::hmtx>::lock_instance (ot_font->hmtx_blob); in _hb_ot_font_create() 78 …ot_font->cmap_blob = OT::Sanitizer<OT::cmap>::sanitize (font->face->reference_table (HB_OT_TAG_cma… in _hb_ot_font_create() 79 const OT::cmap *cmap = OT::Sanitizer<OT::cmap>::lock_instance (ot_font->cmap_blob); in _hb_ot_font_create() 80 const OT::CmapSubtable *subtable = NULL; in _hb_ot_font_create() [all …]
|
D | hb-ot-layout.cc | 53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF)); in HB_SHAPER_DATA_ENSURE_DECLARE() 54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 56 layout->gsub_blob = OT::Sanitizer<OT::GSUB>::sanitize (face->reference_table (HB_OT_TAG_GSUB)); in HB_SHAPER_DATA_ENSURE_DECLARE() 57 layout->gsub = OT::Sanitizer<OT::GSUB>::lock_instance (layout->gsub_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 59 layout->gpos_blob = OT::Sanitizer<OT::GPOS>::sanitize (face->reference_table (HB_OT_TAG_GPOS)); in HB_SHAPER_DATA_ENSURE_DECLARE() 60 layout->gpos = OT::Sanitizer<OT::GPOS>::lock_instance (layout->gpos_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 101 static inline const OT::GDEF& 104 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GDEF); in _get_gdef() 107 static inline const OT::GSUB& 110 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GSUB); in _get_gsub() [all …]
|
D | hb-face.cc | 141 …const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->b… in _hb_face_for_data_reference_table() 142 const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index); in _hb_face_for_data_reference_table() 144 const OT::OpenTypeTable &table = ot_face.get_table_by_tag (tag); in _hb_face_for_data_reference_table() 171 …hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (OT::Sanitizer<OT::OpenType… in hb_face_create() 431 hb_blob_t *head_blob = OT::Sanitizer<OT::head>::sanitize (reference_table (HB_OT_TAG_head)); in load_upem() 432 const OT::head *head_table = OT::Sanitizer<OT::head>::lock_instance (head_blob); in load_upem() 475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp)); in load_num_glyphs() 476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob); in load_num_glyphs()
|
D | hb-ot-layout-private.hh | 81 namespace OT { namespace 87 hb_ot_layout_substitute_lookup (OT::hb_apply_context_t *c, 88 const OT::SubstLookup &lookup, 114 namespace OT { namespace 143 const struct OT::GDEF *gdef; 144 const struct OT::GSUB *gsub; 145 const struct OT::GPOS *gpos;
|
D | hb-uniscribe.cc | 346 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob); in _hb_rename_font() 355 unsigned int name_table_length = OT::name::min_size + in _hb_rename_font() 356 ARRAY_LENGTH (name_IDs) * OT::NameRecord::static_size + in _hb_rename_font() 370 OT::name &name = OT::StructAtOffset<OT::name> (new_sfnt_data, name_table_offset); in _hb_rename_font() 376 OT::NameRecord &record = name.nameRecord[i]; in _hb_rename_font() 386 unsigned char *p = &OT::StructAfter<unsigned char> (name); in _hb_rename_font() 394 const OT::OpenTypeFontFile &file = * (OT::OpenTypeFontFile *) (new_sfnt_data); in _hb_rename_font() 400 const OT::OpenTypeFontFace &face = file.get_face (face_index); in _hb_rename_font() 404 OT::TableRecord &record = const_cast<OT::TableRecord &> (face.get_table (index)); in _hb_rename_font()
|
D | hb-ot-hmtx-table.hh | 33 namespace OT { namespace
|
D | hb-ot-maxp-table.hh | 33 namespace OT { namespace
|
D | hb-ot-hhea-table.hh | 33 namespace OT { namespace
|
D | hb-ot-head-table.hh | 35 namespace OT { namespace
|
D | hb-ot-shape-fallback.cc | 439 OT::hb_apply_context_t c (1, font, buffer); in _hb_ot_shape_fallback_kern() 441 c.set_lookup_props (OT::LookupFlag::IgnoreMarks); in _hb_ot_shape_fallback_kern() 448 OT::hb_apply_context_t::skipping_forward_iterator_t skippy_iter (&c, idx, 1); in _hb_ot_shape_fallback_kern()
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
D | hb-ot-shape-complex-arabic-fallback.hh | 55 static OT::SubstLookup * 60 OT::GlyphID glyphs[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single() 61 OT::GlyphID substitutes[SHAPING_TABLE_LAST - SHAPING_TABLE_FIRST + 1]; in arabic_fallback_synthesize_lookup_single() 85 hb_bubble_sort (&glyphs[0], num_glyphs, OT::GlyphID::cmp, &substitutes[0]); in arabic_fallback_synthesize_lookup_single() 87 OT::Supplier<OT::GlyphID> glyphs_supplier (glyphs, num_glyphs); in arabic_fallback_synthesize_lookup_single() 88 OT::Supplier<OT::GlyphID> substitutes_supplier (substitutes, num_glyphs); in arabic_fallback_synthesize_lookup_single() 92 OT::hb_serialize_context_t c (buf, sizeof (buf)); in arabic_fallback_synthesize_lookup_single() 93 OT::SubstLookup *lookup = c.start_serialize<OT::SubstLookup> (); in arabic_fallback_synthesize_lookup_single() 95 OT::LookupFlag::IgnoreMarks, in arabic_fallback_synthesize_lookup_single() 102 return ret ? c.copy<OT::SubstLookup> () : NULL; in arabic_fallback_synthesize_lookup_single() [all …]
|
D | hb-ot-layout.cc | 53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF)); in HB_SHAPER_DATA_ENSURE_DECLARE() 54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 56 layout->gsub_blob = OT::Sanitizer<OT::GSUB>::sanitize (face->reference_table (HB_OT_TAG_GSUB)); in HB_SHAPER_DATA_ENSURE_DECLARE() 57 layout->gsub = OT::Sanitizer<OT::GSUB>::lock_instance (layout->gsub_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 59 layout->gpos_blob = OT::Sanitizer<OT::GPOS>::sanitize (face->reference_table (HB_OT_TAG_GPOS)); in HB_SHAPER_DATA_ENSURE_DECLARE() 60 layout->gpos = OT::Sanitizer<OT::GPOS>::lock_instance (layout->gpos_blob); in HB_SHAPER_DATA_ENSURE_DECLARE() 101 static inline const OT::GDEF& 104 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GDEF); in _get_gdef() 107 static inline const OT::GSUB& 110 if (unlikely (!hb_ot_shaper_face_data_ensure (face))) return OT::Null(OT::GSUB); in _get_gsub() [all …]
|
D | hb-face.cc | 141 …const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->b… in _hb_face_for_data_reference_table() 142 const OT::OpenTypeFontFace &ot_face = ot_file.get_face (data->index); in _hb_face_for_data_reference_table() 144 const OT::OpenTypeTable &table = ot_face.get_table_by_tag (tag); in _hb_face_for_data_reference_table() 171 …hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (OT::Sanitizer<OT::OpenType… in hb_face_create() 431 hb_blob_t *head_blob = OT::Sanitizer<OT::head>::sanitize (reference_table (HB_OT_TAG_head)); in load_upem() 432 const OT::head *head_table = OT::Sanitizer<OT::head>::lock_instance (head_blob); in load_upem() 475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp)); in load_num_glyphs() 476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob); in load_num_glyphs()
|
D | hb-ot-layout-private.hh | 79 namespace OT { namespace 85 hb_ot_layout_substitute_lookup (OT::hb_apply_context_t *c, 86 const OT::SubstLookup &lookup, 112 namespace OT { namespace 141 const struct OT::GDEF *gdef; 142 const struct OT::GSUB *gsub; 143 const struct OT::GPOS *gpos;
|
D | hb-uniscribe.cc | 349 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob); in _hb_rename_font() 358 unsigned int name_table_length = OT::name::min_size + in _hb_rename_font() 359 ARRAY_LENGTH (name_IDs) * OT::NameRecord::static_size + in _hb_rename_font() 373 OT::name &name = OT::StructAtOffset<OT::name> (new_sfnt_data, name_table_offset); in _hb_rename_font() 379 OT::NameRecord &record = name.nameRecord[i]; in _hb_rename_font() 389 unsigned char *p = &OT::StructAfter<unsigned char> (name); in _hb_rename_font() 397 const OT::OpenTypeFontFile &file = * (OT::OpenTypeFontFile *) (new_sfnt_data); in _hb_rename_font() 403 const OT::OpenTypeFontFace &face = file.get_face (face_index); in _hb_rename_font() 407 OT::TableRecord &record = const_cast<OT::TableRecord &> (face.get_table (index)); in _hb_rename_font()
|
D | hb-ot-hmtx-table.hh | 33 namespace OT { namespace
|
D | hb-ot-maxp-table.hh | 33 namespace OT { namespace
|
D | hb-ot-hhea-table.hh | 33 namespace OT { namespace
|
D | hb-ot-head-table.hh | 35 namespace OT { namespace
|
D | hb-ot-shape-fallback.cc | 437 OT::hb_apply_context_t c (1, font, buffer); in _hb_ot_shape_fallback_kern() 439 c.set_lookup_props (OT::LookupFlag::IgnoreMarks); in _hb_ot_shape_fallback_kern() 446 OT::hb_apply_context_t::skipping_forward_iterator_t skippy_iter (&c, idx, 1); in _hb_ot_shape_fallback_kern()
|
D | hb-ot-name-table.hh | 33 namespace OT { namespace
|
/external/clang/test/SemaTemplate/ |
D | dependent-expr.cpp | 46 template<typename OT> int myMethod() in myMethod() 47 { return 2 && sizeof(OT); } in myMethod()
|
/external/tcpdump/tests/ |
D | bgp_vpn_attrset.out | 7 Extended Community (16), length: 8, Flags [OT]: 9 Attribute Set (128), length: 36, Flags [OT]:
|
/external/llvm/utils/TableGen/ |
D | CodeGenInstruction.h | 108 const std::string &EMN, const std::string &OT, unsigned MION, in OperandInfo() 111 OperandType(OT), MIOperandNo(MION), MINumOperands(MINO), in OperandInfo()
|