Home | History | Annotate | Download | only in i18n

Lines Matching defs:context

21     struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct;
23 if (offset == context->lastOffset + 1) {
24 c = UTEXT_NEXT32(context->text);
25 context->lastOffset++;
26 } else if (offset == context->lastOffset) {
27 c = UTEXT_PREVIOUS32(context->text);
28 UTEXT_NEXT32(context->text);
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
31 c = UTEXT_NEXT32(context->text);
32 context->lastOffset = offset;
44 uregex_ucstr_unescape_charAt(int32_t offset, void *context) {
45 return ((UChar *)context)[offset];