Lines Matching refs:script_index
912 HB_UShort script_index; in checkScript() local
913 HB_Error error = HB_GSUB_Select_Script(face->gsub, tag, &script_index); in checkScript()
916 … error = HB_GSUB_Select_Script(face->gsub, HB_MAKE_TAG('D', 'F', 'L', 'T'), &script_index); in checkScript()
926 HB_UShort script_index; in checkScript() local
927 HB_Error error = HB_GPOS_Select_Script(face->gpos, script, &script_index); in checkScript()
930 … error = HB_GPOS_Select_Script(face->gpos, HB_MAKE_TAG('D', 'F', 'L', 'T'), &script_index); in checkScript()
1083 HB_UShort script_index; in HB_SelectScript() local
1084 HB_Error error = HB_GSUB_Select_Script(face->gsub, tag, &script_index); in HB_SelectScript()
1086 error = HB_GSUB_Select_Script(face->gsub, DefaultScript, &script_index); in HB_SelectScript()
1089 DEBUG("script %s has script index %d", tag_to_string(tag), script_index); in HB_SelectScript()
1092 … error = HB_GSUB_Select_Feature(face->gsub, features->tag, script_index, 0xffff, &feature_index); in HB_SelectScript()
1107 HB_UShort script_index; in HB_SelectScript() local
1108 HB_Error error = HB_GPOS_Select_Script(face->gpos, tag, &script_index); in HB_SelectScript()
1110 error = HB_GPOS_Select_Script(face->gpos, DefaultScript, &script_index); in HB_SelectScript()
1121 … HB_GPOS_Select_Feature(face->gpos, r->FeatureTag, script_index, 0xffff, &feature_index); in HB_SelectScript()
1127 … error = HB_GPOS_Query_Features(face->gpos, script_index, 0xffff, &feature_tag_list_buffer); in HB_SelectScript()
1139 …error = HB_GPOS_Select_Feature(face->gpos, *feature_tag_list, script_index, 0xffff, &feature_index… in HB_SelectScript()