OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:escapedChar
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/icu/source/i18n/
uregex.cpp
[
all
...]
rematch.cpp
365
UChar32
escapedChar
= u_unescapeAt(uregex_utext_unescape_charAt, &offset, INT32_MAX, &context);
366
if (
escapedChar
!= (UChar32)0xFFFFFFFF) {
367
if (U_IS_BMP(
escapedChar
)) {
368
UChar c16 = (UChar)
escapedChar
;
372
surrogate[0] = U16_LEAD(
escapedChar
);
373
surrogate[1] = U16_TRAIL(
escapedChar
);
[
all
...]
/external/icu4c/i18n/
uregex.cpp
[
all
...]
rematch.cpp
371
UChar32
escapedChar
= u_unescapeAt(uregex_utext_unescape_charAt, &offset, INT32_MAX, &context);
372
if (
escapedChar
!= (UChar32)0xFFFFFFFF) {
373
if (U_IS_BMP(
escapedChar
)) {
374
UChar c16 = (UChar)
escapedChar
;
378
surrogate[0] = U16_LEAD(
escapedChar
);
379
surrogate[1] = U16_TRAIL(
escapedChar
);
[
all
...]
/external/icu4c/test/cintltst/
cloctst.c
571
char
escapedChar
;
612
resultChars[resultLen++]=ESCAPE_MAP[j].
escapedChar
;
[
all
...]
Completed in 256 milliseconds