Home
last modified time | relevance | path

Searched refs:max_codepoint (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp42 uint32_t max_codepoint; member
355 uint32_t max_codepoint = alphabet->max_codepoint; in alphabetLookup() local
359 if (c < min_codepoint || c >= max_codepoint) { in alphabetLookup()
/aosp_15_r20/frameworks/minikin/rust/
H A Dhyphenator.rs241 max_codepoint: u32, field
373 let max_codepoint = data.read_u32(8); in new() localVariable
374 AlphabetTable0 { data, min_codepoint, max_codepoint } in new()
381 if offset < self.min_codepoint || offset >= self.max_codepoint { in get_at()
/aosp_15_r20/frameworks/minikin/doc/
H A Dhyb_file_format.md70 uint32_t max_codepoint (exclusive)
74 The size of the data array is max_codepoint - min_codepoint. 0 represents an unmapped
/aosp_15_r20/external/python/dateutil/dateutil/test/property/
Dtest_isoparse_prop.py13 ASCII_STRATEGY = st.characters(max_codepoint=127)
/aosp_15_r20/external/mesa3d/.gitlab-ci/tests/utils/
H A Dtest_lava_farm.py12 min_codepoint=1, max_codepoint=127, blacklist_categories=("C",)
/aosp_15_r20/external/mesa3d/src/imgui/
H A Dimgui_draw.cpp2430 int max_codepoint = 0; in BuildLookupTable() local
2432 max_codepoint = ImMax(max_codepoint, (int)Glyphs[i].Codepoint); in BuildLookupTable()
2438 GrowIndex(max_codepoint + 1); in BuildLookupTable()
2462 for (int i = 0; i < max_codepoint + 1; i++) in BuildLookupTable()