/external/libutf/ |
rune.3 | 11 runetochar, chartorune, runelen, runenlen, fullrune, utfecpy, utflen, utfnlen, utfrune, utfrrune, utfutf \- rune/UTF conversion 20 int chartorune(Rune *r, char *s) 68 .I Chartorune 79 .I chartorune 104 .I chartorune
|
utflen.c | 34 s += chartorune(&rune, s);
|
utfnlen.c | 38 s += chartorune(&rune, s);
|
utfrrune.c | 41 c1 = chartorune(&r, s);
|
utfrune.c | 40 n = chartorune(&r, s);
|
utfutf.c | 32 n1 = chartorune(&r, s2);
|
utf.h | 39 // chartorune copies (decodes) at most UTFmax bytes starting at s to 41 // If the input is not exactly in UTF format, chartorune will set *r 49 int chartorune(Rune* r, const char* s); 52 // charntorune is like chartorune, except that it will access at most 80 // decoded by chartorune, and 0 otherwise. This does not guarantee
|
rune.c | 49 * This is a slower but "safe" version of the old chartorune 53 * chartorune will be a bit faster. 167 chartorune(Rune *rune, const char *str) function
|
/external/regex-re2/util/ |
utf.h | 36 int chartorune(Rune* r, const char* s);
|
rune.cc | 49 chartorune(Rune *rune, const char *str) function in namespace:re2 224 s += chartorune(&rune, s); 250 n = chartorune(&r, s);
|
/external/regex-re2/re2/testing/ |
string_generator_test.cc | 55 p += chartorune(&r, p);
|
regexp_generator.cc | 235 q += chartorune(&r, q);
|
/prebuilts/go/darwin-x86/src/runtime/ |
rune.go | 59 * This is a slower but "safe" version of the old chartorune 63 * chartorune will be a bit faster.
|
/prebuilts/go/linux-x86/src/runtime/ |
rune.go | 59 * This is a slower but "safe" version of the old chartorune 63 * chartorune will be a bit faster.
|
/external/regex-re2/ |
ucs2.diff | 412 - n = chartorune(&r, p); 444 - n = chartorune(&r, p); 478 - n = chartorune(&r, p); 549 - p += chartorune(&r, p);
|
/external/regex-re2/re2/ |
parse.cc | [all...] |