Searched refs:chartype (Results 1 – 7 of 7) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_xclass.c | 147 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 …]
|
D | pcre2_dfa_match.c | 1180 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 …]
|
D | pcre2_auto_possess.c | 209 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()
|
D | pcre2_match.c | 2434 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 …]
|
D | pcre2_script_run.c | 303 if (ucd->chartype == ucp_Nd) in PRIV()
|
D | pcre2_internal.h | 1821 uint8_t chartype; /* ucp_Cc, etc. (general categories) */ member 1851 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype
|
D | pcre2_jit_compile.c | 5137 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()
|