Home
last modified time | relevance | path

Searched refs:chartype (Results 1 – 7 of 7) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_xclass.c147 if ((prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in PRIV()
148 prop->chartype == ucp_Lt) == isprop) return !negated; in PRIV()
152 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in PRIV()
157 if ((data[1] == prop->chartype) == isprop) return !negated; in PRIV()
171 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
172 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in PRIV()
190 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in PRIV()
197 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV()
198 PRIV(ucp_gentype)[prop->chartype] == ucp_N || c == CHAR_UNDERSCORE) in PRIV()
241 if ((PRIV(ucp_gentype)[prop->chartype] != ucp_Z && in PRIV()
[all …]
Dpcre2_dfa_match.c1180 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match()
1181 prop->chartype == ucp_Lt; in internal_dfa_match()
1185 OK = PRIV(ucp_gentype)[prop->chartype] == code[2]; in internal_dfa_match()
1189 OK = prop->chartype == code[2]; in internal_dfa_match()
1204 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match()
1205 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
1222 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z; in internal_dfa_match()
1228 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match()
1229 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in internal_dfa_match()
1452 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match()
[all …]
Dpcre2_auto_possess.c209 return (prop->chartype == ucp_Lu || in check_char_prop()
210 prop->chartype == ucp_Ll || in check_char_prop()
211 prop->chartype == ucp_Lt) == negated; in check_char_prop()
214 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated; in check_char_prop()
217 return (pdata == prop->chartype) == negated; in check_char_prop()
230 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop()
231 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated; in check_char_prop()
246 return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == negated; in check_char_prop()
251 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop()
252 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in check_char_prop()
Dpcre2_match.c2434 if ((prop->chartype == ucp_Lu || in match()
2435 prop->chartype == ucp_Ll || in match()
2436 prop->chartype == ucp_Lt) == notmatch) in match()
2441 if ((Fecode[2] == PRIV(ucp_gentype)[prop->chartype]) == notmatch) in match()
2446 if ((Fecode[2] == prop->chartype) == notmatch) in match()
2466 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match()
2467 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == notmatch) in match()
2485 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == notmatch) in match()
2492 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match()
2493 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in match()
[all …]
Dpcre2_script_run.c303 if (ucd->chartype == ucp_Nd) in PRIV()
Dpcre2_internal.h1821 uint8_t chartype; /* ucp_Cc, etc. (general categories) */ member
1851 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype
Dpcre2_jit_compile.c5137 SLJIT_ASSERT(record->script == ucp_Unknown && record->chartype == ucp_Cn && record->gbprop == ucp_g… in do_getucd()
5177 SLJIT_ASSERT(record->script == ucp_Unknown && record->chartype == ucp_Cn && record->gbprop == ucp_g… in do_getucdtype()
5204 …SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in do_getucdtype()
7949 … typereg, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in compile_xclass_matchingpath()