Home
last modified time | relevance | path

Searched refs:script_count (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/harfbuzz_ng/util/
H A Dhb-info.cc543 unsigned script_count = HB_OT_MAX_TAGS_PER_SCRIPT; in _get_baseline() local
547 &script_count, script_tags, in _get_baseline()
550 hb_tag_t script_tag = script_count ? script_tags[script_count - 1] : HB_TAG_NONE; in _get_baseline()
720 unsigned script_count = HB_OT_MAX_TAGS_PER_SCRIPT; in _list_baselines() local
724 &script_count, script_tags, in _list_baselines()
727 hb_tag_t script_tag = script_count ? script_tags[script_count - 1] : HB_TAG_NONE; in _list_baselines()
905 unsigned script_count = sizeof script_array / sizeof script_array[0]; in _list_scripts() local
911 &script_count, in _list_scripts()
914 for (unsigned script_index = 0; script_index < script_count; script_index++) in _list_scripts()
952 script_offset += script_count; in _list_scripts()
[all …]
/aosp_15_r20/external/harfbuzz_ng/src/
H A Dhb-ot-tag.cc433 unsigned int *script_count /* IN/OUT */, in hb_ot_tags_from_script_and_language() argument
477 …needs_script = !parse_private_use_subtag (private_use_subtag, script_count, script_tags, "-hbsc", … in hb_ot_tags_from_script_and_language()
484 if (needs_script && script_count && script_tags && *script_count) in hb_ot_tags_from_script_and_language()
485 hb_ot_all_tags_from_script (script, script_count, script_tags); in hb_ot_tags_from_script_and_language()
580 unsigned int script_count = 1; in hb_ot_tags_to_script_and_language() local
584 &script_count, in hb_ot_tags_to_script_and_language()
588 if (script_count == 0 || primary_script_tag[0] != script_tag) in hb_ot_tags_to_script_and_language()
H A Dhb-ot-layout.cc447 unsigned int *script_count /* IN/OUT */, in hb_ot_layout_table_get_script_tags() argument
452 return g.get_script_tags (start_offset, script_count, script_tags); in hb_ot_layout_table_get_script_tags()
549 unsigned int script_count, in hb_ot_layout_table_select_script() argument
558 for (i = 0; i < script_count; i++) in hb_ot_layout_table_select_script()
1084 script_count (0),langsys_count (0), feature_index_count (0) in hb_collect_features_context_t()
1118 if (script_count++ > HB_MAX_SCRIPTS) in visited()
1164 unsigned int script_count; member
2093 unsigned script_count = ARRAY_LENGTH (script_tags); in choose_base_tags() local
2099 &script_count, script_tags, in choose_base_tags()
2102 *script_tag = script_count ? script_tags[script_count - 1] : HB_OT_TAG_DEFAULT_SCRIPT; in choose_base_tags()
H A Dhb-ot-layout.h112 unsigned int *script_count /* IN/OUT */,
217 unsigned int *script_count /* IN/OUT */,
229 unsigned int script_count,
H A Dhb-ot-map.cc60 unsigned int script_count = HB_OT_MAX_TAGS_PER_SCRIPT; in hb_ot_map_builder_t() local
67 &script_count, in hb_ot_map_builder_t()
77 script_count, in hb_ot_map_builder_t()
H A Dhb-ot-layout-jstf-table.hh205 unsigned int *script_count /* IN/OUT */, in get_script_tags()
207 { return scriptList.get_tags (start_offset, script_count, script_tags); } in get_script_tags()
H A Dhb-ot-layout-common.hh88 script_count (0),langsys_feature_count (0) {} in hb_prune_langsys_context_t()
91 { return script_count++ < HB_MAX_SCRIPTS; } in visitScript()
106 unsigned script_count; member
118 return script_count++ < HB_MAX_SCRIPTS; in visitScript()
157 script_count (0), in hb_subset_layout_context_t()
185 unsigned script_count; member
H A Dhb-ot-layout-gsubgpos.hh4669 unsigned int *script_count /* IN/OUT */, in get_script_tags()
4671 { return get_script_list ().get_tags (start_offset, script_count, script_tags); } in get_script_tags()
/aosp_15_r20/external/harfbuzz_ng/test/api/
H A Dtest-ot-tag.c503 unsigned int script_count, in test_tags() argument
511 hb_tag_t *script_tags = malloc (script_count * sizeof (hb_tag_t)); in test_tags()
519 …hb_ot_tags_from_script_and_language (script, lang, &script_count, script_tags, &language_count, la… in test_tags()
521 g_assert_cmpuint (script_count, ==, expected_script_count); in test_tags()
524 for (i = 0; i < script_count + language_count; i++) in test_tags()
527 hb_tag_t actual_tag = i < script_count ? script_tags[i] : language_tags[i - script_count]; in test_tags()
/aosp_15_r20/external/cronet/third_party/icu/source/i18n/
H A Dscriptset.cpp249 int32_t script_count = -1; in setScriptExtensions() local
252 script_count = uscript_getScriptExtensions( in setScriptExtensions()
256 if (scripts.resize(script_count) == nullptr) { in setScriptExtensions()
273 for (int32_t i = 0; i < script_count; i++) { in setScriptExtensions()
/aosp_15_r20/external/icu/icu4c/source/i18n/
H A Dscriptset.cpp249 int32_t script_count = -1; in setScriptExtensions() local
252 script_count = uscript_getScriptExtensions( in setScriptExtensions()
256 if (scripts.resize(script_count) == nullptr) { in setScriptExtensions()
273 for (int32_t i = 0; i < script_count; i++) { in setScriptExtensions()
/aosp_15_r20/external/harfbuzz_ng/perf/
H A Dbenchmark-ot.cc12 unsigned script_count = HB_OT_MAX_TAGS_PER_SCRIPT; in BM_hb_ot_tags_from_script_and_language() local
19 &script_count /* IN/OUT */, in BM_hb_ot_tags_from_script_and_language()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/read-fonts-0.15.6/src/tests/
H A Dlayout.rs9 assert_eq!(table.script_count(), 3); in example_1_scripts()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/read-fonts-0.15.6/generated/
H A Dgenerated_layout.rs29 let script_count: u16 = cursor.read()?; in read() localVariable
30 let script_records_byte_len = script_count as usize * ScriptRecord::RAW_BYTE_LEN; in read()
43 pub fn script_count(&self) -> u16 { in script_count() method
62 0usize => Some(Field::new("script_count", self.script_count())), in get_field()