Lines Matching defs:GraphemeCursor
188 pub struct GraphemeCursor { struct
190 offset: usize,
192 len: usize,
195 is_extended: bool,
197 state: GraphemeState,
199 cat_before: Option<GraphemeCat>,
201 cat_after: Option<GraphemeCat>,
204 pre_context_offset: Option<usize>,
207 incb_linker_count: Option<usize>,
211 ris_count: Option<usize>,
214 resuming: bool,
216 grapheme_cat_cache: (u32, u32, GraphemeCat),
284 impl GraphemeCursor { impl
299 pub fn new(offset: usize, len: usize, is_extended: bool) -> GraphemeCursor { in new()