Home
last modified time | relevance | path

Searched refs:other_case (Results 1 – 5 of 5) sorted by relevance

/third_party/pcre2/pcre2/maint/
DMultiStage2.py498 other_case = read_table('Unicode.tables/CaseFolding.txt', get_other_case, 0) variable
564 if other_case[c] != 0 and other_case[c + other_case[c]] == 0:
565 other_case[c + other_case[c]] = -other_case[c]
572 o = c + other_case[c]
577 if other_case[o] != -other_case[c]:
578 t = o + other_case[o]
625 caseless_offsets, other_case, scriptx, padding_dummy)
/third_party/glib/glib/update-pcre/
Ducp.patch436 -#define UCD_OTHERCASE(ch) (ch + GET_UCD(ch)->other_case)
452 + int other_case = NOTACHAR;
455 + other_case = g_unichar_toupper(c);
457 + other_case = g_unichar_tolower(c);
459 + if (other_case == c)
460 + other_case = NOTACHAR;
462 + return other_case;
/third_party/pcre2/pcre2/src/
Dpcre2_internal.h1799 int32_t other_case; /* offset to other case, or zero if none */ member
1823 #define UCD_OTHERCASE(ch) ((uint32_t)((int)ch + (int)(GET_UCD(ch)->other_case)))
Dpcre2_match.c417 if (c != d && c != (uint32_t)((int)d + ur->other_case)) in match_ref()
Dpcre2_jit_compile.c5133 SLJIT_ASSERT(record->caseset == 0 && record->other_case == 0); in do_getucd()
5173 SLJIT_ASSERT(record->caseset == 0 && record->other_case == 0); in do_getucdtype()
9176 OP1(SLJIT_MOV_S32, TMP1, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(ucd_record, other_case)); in compile_ref_matchingpath()