Lines Matching refs:entry

3129     GX_UNICODE_RANGE *entry = gx_studio_full_composition_exclusion_table;  in gx_studio_full_composition_exclusion_test()  local
3131 while (entry->gx_unicode_range_start) in gx_studio_full_composition_exclusion_test()
3133 if ((unicode >= entry->gx_unicode_range_start) && in gx_studio_full_composition_exclusion_test()
3134 (unicode <= entry->gx_unicode_range_end)) in gx_studio_full_composition_exclusion_test()
3138 entry++; in gx_studio_full_composition_exclusion_test()
3150 GX_UNICODE_RANGE *entry = gx_studio_nfc_quick_check_no_table; in gx_studio_nfc_quick_check() local
3152 while (entry->gx_unicode_range_start) in gx_studio_nfc_quick_check()
3154 if (code_point >= entry->gx_unicode_range_start && in gx_studio_nfc_quick_check()
3155 code_point <= entry->gx_unicode_range_end) in gx_studio_nfc_quick_check()
3161 entry++; in gx_studio_nfc_quick_check()
3164 entry = gx_studio_nfc_quick_check_maye_table; in gx_studio_nfc_quick_check()
3166 while (entry->gx_unicode_range_start) in gx_studio_nfc_quick_check()
3168 if (code_point >= entry->gx_unicode_range_start && in gx_studio_nfc_quick_check()
3169 code_point <= entry->gx_unicode_range_end) in gx_studio_nfc_quick_check()
3174 entry++; in gx_studio_nfc_quick_check()
3188 GX_CANONICAL_DECOMPOSE_MAP *entry = gx_studio_canonical_decompose_maps; in gx_studio_canonical_decompress_map_get() local
3193 while (entry->gx_canonical_decompose_map_code) in gx_studio_canonical_decompress_map_get()
3195 if (code_point == entry->gx_canonical_decompose_map_code) in gx_studio_canonical_decompress_map_get()
3197 maps[0] = entry->gx_canonical_decompose_map[0]; in gx_studio_canonical_decompress_map_get()
3198 maps[1] = entry->gx_canonical_decompose_map[1]; in gx_studio_canonical_decompress_map_get()
3201 else if (code_point < entry->gx_canonical_decompose_map_code) in gx_studio_canonical_decompress_map_get()
3206 entry++; in gx_studio_canonical_decompress_map_get()
3218 GX_CANONICAL_DECOMPOSE_MAP *entry = gx_studio_canonical_decompose_maps; in gx_studio_canonical_composed_code_get() local
3220 while (entry->gx_canonical_decompose_map_code) in gx_studio_canonical_composed_code_get()
3222 if (entry->gx_canonical_decompose_map[0] == map_a && in gx_studio_canonical_composed_code_get()
3223 entry->gx_canonical_decompose_map[1] == map_b) in gx_studio_canonical_composed_code_get()
3225 *composed_code = entry->gx_canonical_decompose_map_code; in gx_studio_canonical_composed_code_get()
3228 entry++; in gx_studio_canonical_composed_code_get()
3240 GX_CANONICAL_COMBINING_CLASS *entry = gx_studio_canonical_combining_class_table; in gx_studio_canonical_combining_class_get() local
3244 while (entry->gx_canonical_combining_class_code) in gx_studio_canonical_combining_class_get()
3246 if (code_point == entry->gx_canonical_combining_class_code) in gx_studio_canonical_combining_class_get()
3248 *class_value = entry->gx_canonical_combining_class; in gx_studio_canonical_combining_class_get()
3251 else if (code_point < entry->gx_canonical_combining_class_code) in gx_studio_canonical_combining_class_get()
3256 entry++; in gx_studio_canonical_combining_class_get()