/external/harfbuzz_ng/src/ |
hb-ot-layout-private.hh | 118 /* lig_id / lig_comp 123 * lig_id, 132 * - All resulting glyphs will have lig_id = 0, 142 set_lig_props_for_ligature (hb_glyph_info_t &info, unsigned int lig_id, unsigned int lig_num_comps) 144 info.lig_props() = (lig_id << 5) | IS_LIG_BASE | (lig_num_comps & 0x0F); 147 set_lig_props_for_mark (hb_glyph_info_t &info, unsigned int lig_id, unsigned int lig_comp) 149 info.lig_props() = (lig_id << 5) | (lig_comp & 0x0F); 185 uint8_t lig_id = buffer->next_serial () & 0x07; local 186 if (unlikely (!lig_id)) 187 lig_id = allocate_lig_id (buffer); /* in case of overflow * [all...] |
hb-ot-shape-fallback.cc | 303 unsigned int lig_id = get_lig_id (buffer->info[base]); local 323 if (!lig_id || lig_id != this_lig_id || this_lig_component >= num_lig_components)
|
hb-ot-layout-gpos-table.hh | 1159 unsigned int lig_id = get_lig_id (c->buffer->info[j]); local [all...] |
hb-ot-layout-gsubgpos-private.hh | 814 unsigned int lig_id = is_mark_ligature ? 0 : allocate_lig_id (c->buffer); local 820 set_lig_props_for_ligature (c->buffer->cur(), lig_id, total_component_count); 832 set_lig_props_for_mark (c->buffer->cur(), lig_id, new_lig_comp); 851 set_lig_props_for_mark (c->buffer->info[i], lig_id, new_lig_comp); [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-layout-private.hh | 248 /* lig_props: aka lig_id / lig_comp 253 * lig_id, 260 * and the current lig_id reused. 264 * - All resulting glyphs will have lig_id = 0, 283 unsigned int lig_id, 286 info->lig_props() = (lig_id << 5) | IS_LIG_BASE | (lig_num_comps & 0x0F); 291 unsigned int lig_id, 294 info->lig_props() = (lig_id << 5) | (lig_comp & 0x0F); 336 uint8_t lig_id = buffer->next_serial () & 0x07; local 337 if (unlikely (!lig_id)) [all...] |
hb-ot-shape-fallback.cc | 317 unsigned int lig_id = _hb_glyph_info_get_lig_id (&buffer->info[base]); local 337 if (!lig_id || lig_id != this_lig_id || this_lig_component >= num_lig_components)
|
hb-ot-layout-gpos-table.hh | 1164 unsigned int lig_id = _hb_glyph_info_get_lig_id (&buffer->info[j]); local [all...] |
hb-ot-layout-gsubgpos-private.hh | 838 unsigned int lig_id = is_mark_ligature ? 0 : _hb_allocate_lig_id (buffer); local 845 _hb_glyph_info_set_lig_props_for_ligature (&buffer->cur(), lig_id, total_component_count); 861 _hb_glyph_info_set_lig_props_for_mark (&buffer->cur(), lig_id, new_lig_comp); 880 _hb_glyph_info_set_lig_props_for_mark (&buffer->info[i], lig_id, new_lig_comp); [all...] |