Searched refs:other_case (Results 1 – 5 of 5) sorted by relevance
/third_party/pcre2/pcre2/maint/ |
D | MultiStage2.py | 498 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/ |
D | ucp.patch | 436 -#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/ |
D | pcre2_internal.h | 1799 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)))
|
D | pcre2_match.c | 417 if (c != d && c != (uint32_t)((int)d + ur->other_case)) in match_ref()
|
D | pcre2_jit_compile.c | 5133 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()
|