Home
last modified time | relevance | path

Searched refs:grapheme (Results 1 – 25 of 48) sorted by relevance

12

/external/rust/crates/bstr/src/unicode/
Dgrapheme.rs69 let (grapheme, size) = decode_grapheme(self.bs); in next()
74 Some(grapheme) in next()
81 let (grapheme, size) = decode_last_grapheme(self.bs); in next_back()
86 Some(grapheme) in next_back()
162 let (grapheme, size) = decode_grapheme(self.bs); in next()
168 Some((index, index + size, grapheme)) in next()
175 let (grapheme, size) = decode_last_grapheme(self.bs); in next_back()
181 Some((self.reverse_index, self.reverse_index + size, grapheme)) in next_back()
196 let grapheme = unsafe { bs[..end].to_str_unchecked() }; in decode_grapheme() localVariable
197 (grapheme, grapheme.len()) in decode_grapheme()
[all …]
Dmod.rs1 pub use self::grapheme::{decode_grapheme, GraphemeIndices, Graphemes};
9 mod grapheme; module
/external/rust/crates/unicode-segmentation/src/
Dlib.rs66 pub use grapheme::{Graphemes, GraphemeIndices};
67 pub use grapheme::{GraphemeCursor, GraphemeIncomplete};
72 mod grapheme; module
239 grapheme::new_graphemes(self, is_extended) in graphemes()
244 grapheme::new_grapheme_indices(self, is_extended) in grapheme_indices()
Dgrapheme.rs13 use tables::grapheme::GraphemeCat;
232 use tables::grapheme::GraphemeCat::*; in check_pair()
298 use tables::grapheme as gr; in grapheme_category()
299 use tables::grapheme::GraphemeCat::*; in grapheme_category()
390 use tables::grapheme as gr; in provide_context()
436 use tables::grapheme as gr; in handle_regional()
456 use tables::grapheme as gr; in handle_emoji()
509 use tables::grapheme as gr; in is_boundary()
/external/ImageMagick/MagickCore/
Dannotate.c1099 GraphemeInfo **grapheme,ExceptionInfo *exception) in ComplexTextLayout() argument
1165 *grapheme=(GraphemeInfo *) AcquireQuantumMemory(extent,sizeof(**grapheme)); in ComplexTextLayout()
1166 if (*grapheme == (GraphemeInfo *) NULL) in ComplexTextLayout()
1173 (*grapheme)[i].index=glyphs[i].index; in ComplexTextLayout()
1174 (*grapheme)[i].x_offset=glyphs[i].x_offset; in ComplexTextLayout()
1175 (*grapheme)[i].x_advance=glyphs[i].x_advance; in ComplexTextLayout()
1176 (*grapheme)[i].y_offset=glyphs[i].y_offset; in ComplexTextLayout()
1177 (*grapheme)[i].cluster=glyphs[i].cluster; in ComplexTextLayout()
1201 *grapheme=(GraphemeInfo *) AcquireQuantumMemory(length+1,sizeof(**grapheme)); in ComplexTextLayout()
1202 if (*grapheme == (GraphemeInfo *) NULL) in ComplexTextLayout()
[all …]
/external/icu/icu4c/source/test/testdata/break_rules/
Dgrapheme.txt6 # file: grapheme.txt
14 type = grapheme; # one of grapheme | word | line | sentence
Dsentence.txt8 type = sentence; # one of grapheme | word | line | sentence
Dword_POSIX.txt13 type = word; # one of grapheme | word | line | sentence
Dword.txt14 type = word; # one of grapheme | word | line | sentence
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/break_rules/
Dgrapheme.txt6 # file: grapheme.txt
14 type = grapheme; # one of grapheme | word | line | sentence
Dsentence.txt8 type = sentence; # one of grapheme | word | line | sentence
Dword_POSIX.txt13 type = word; # one of grapheme | word | line | sentence
Dword.txt14 type = word; # one of grapheme | word | line | sentence
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dgrapheme.txt6 # file: grapheme.txt
14 type = grapheme; # one of grapheme | word | line | sentence
Dsentence.txt8 type = sentence; # one of grapheme | word | line | sentence
Dword.txt14 type = word; # one of grapheme | word | line | sentence
Dword_POSIX.txt13 type = word; # one of grapheme | word | line | sentence
/external/rust/crates/unicode-segmentation/
DREADME.md53 …code-rs/unicode-segmentation/pull/79) Implement a special-case lookup for ascii grapheme categories
54 * [#77](https://github.com/unicode-rs/unicode-segmentation/pull/77) Optimization for grapheme itera…
95 * Fix a bug affecting some grapheme clusters containing Prepend characters.
DCargo.toml.orig12 keywords = ["text", "unicode", "grapheme", "word", "boundary"]
DCargo.toml22 keywords = ["text", "unicode", "grapheme", "word", "boundary"]
/external/cldr/common/testData/segmentation/graphemeCluster/
D_readme.txt1 # Test data for grapheme cluster testing generation
/external/cldr/common/testData/localeIdentifiers/
D_readme.txt1 # Test data for grapheme locale validity, canonicalization, and name generation
/external/icu/icu4c/source/data/brkitr/
Droot.txt7 grapheme:process(dependency){"char.brk"}
/external/rust/crates/bstr/scripts/
Dgenerate-unicode-data29 regex="$(sh "$D/regex/grapheme.sh")"
/external/rust/crates/bstr/
DREADME.md111 This example shows how to extract the first 10 visual characters (as grapheme
150 grapheme/word/sentence segmenters. When this is disabled, basic support such
217 grapheme iteration with the same semantics as what `bstr` provides (automatic

12