Home | History | Annotate | Download | only in i18n

Lines Matching refs:context

18     struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct;
20 if (offset == context->lastOffset + 1) {
21 c = UTEXT_NEXT32(context->text);
22 context->lastOffset++;
23 } else if (offset == context->lastOffset) {
24 c = UTEXT_PREVIOUS32(context->text);
25 UTEXT_NEXT32(context->text);
27 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
28 c = UTEXT_NEXT32(context->text);
29 context->lastOffset = offset;
41 uregex_ucstr_unescape_charAt(int32_t offset, void *context) {
42 return ((UChar *)context)[offset];