Home
last modified time | relevance | path

Searched refs:map_codepoint (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/read-fonts-0.15.6/src/tables/
H A Dcmap.rs25 pub fn map_codepoint(&self, codepoint: impl Into<u32>) -> Option<GlyphId> { in map_codepoint() method
30 CmapSubtable::Format4(format4) => format4.map_codepoint(codepoint), in map_codepoint()
31 CmapSubtable::Format12(format12) => format12.map_codepoint(codepoint), in map_codepoint()
44 pub fn map_codepoint(&self, codepoint: impl Into<u32>) -> Option<GlyphId> { in map_codepoint() method
153 pub fn map_codepoint(&self, codepoint: impl Into<u32>) -> Option<GlyphId> { in map_codepoint() method
305 let map_codepoint: u32 = map.unicode_value().into(); in map_variant() localVariable
306 map_codepoint.cmp(&codepoint) in map_variant()
467 assert_eq!(cmap.map_codepoint('A'), Some(GlyphId::new(1))); in map_codepoints()
468 assert_eq!(cmap.map_codepoint('À'), Some(GlyphId::new(2))); in map_codepoints()
469 assert_eq!(cmap.map_codepoint('`'), Some(GlyphId::new(3))); in map_codepoints()
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/skrifa-0.15.5/src/
H A Dcharmap.rs257 SupportedSubtable::Format4(subtable) => subtable.map_codepoint(codepoint), in map_impl()
258 SupportedSubtable::Format12(subtable) => subtable.map_codepoint(codepoint), in map_impl()