Searched refs:chartype (Results 1 - 7 of 7) sorted by relevance
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_xclass.c | 147 if ((prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in xclass() 148 prop->chartype == ucp_Lt) == isprop) return !negated; in xclass() 152 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in xclass() 157 if ((data[1] == prop->chartype) == isprop) return !negated; in xclass() 171 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in xclass() 172 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in xclass() 190 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in xclass() 197 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in xclass() 198 PRIV(ucp_gentype)[prop->chartype] in xclass() [all...] |
H A 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] in internal_dfa_match() [all...] |
H A 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] in check_char_prop() [all...] |
H A D | pcre2_match.c | 2448 if ((prop->chartype == ucp_Lu || in match() 2449 prop->chartype == ucp_Ll || in match() 2450 prop->chartype == ucp_Lt) == notmatch) in match() 2455 if ((Fecode[2] == PRIV(ucp_gentype)[prop->chartype]) == notmatch) in match() 2460 if ((Fecode[2] == prop->chartype) == notmatch) in match() 2480 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match() 2481 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == notmatch) in match() 2499 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == notmatch) in match() 2506 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match() 2507 PRIV(ucp_gentype)[prop->chartype] in match() 2684 int chartype; match() local 3467 int chartype; match() local 4058 int chartype; match() local [all...] |
H A D | pcre2_script_run.c | 303 if (ucd->chartype == ucp_Nd) in script_run()
|
H A D | pcre2_jit_compile.c | 5128 Returns chartype in TMP1 and UCD offset in TMP2. */ in do_getucd() 5137 SLJIT_ASSERT(record->script == ucp_Unknown && record->chartype == ucp_Cn && record->gbprop == ucp_gbOther); in do_getucd() 5168 Returns chartype in TMP1 and UCD offset in TMP2. */ in do_getucdtype() 5177 SLJIT_ASSERT(record->script == ucp_Unknown && record->chartype == ucp_Cn && record->gbprop == ucp_gbOther); in do_getucdtype() 5204 OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in do_getucdtype() 7949 OP1(SLJIT_MOV_U8, typereg, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in compile_xclass_matchingpath()
|
/third_party/backends/lib/ |
H A D | strcasestr.c | 37 typedef unsigned chartype; typedef 45 register chartype b, c; in strcasestr() 67 register chartype a; in strcasestr()
|
Completed in 22 milliseconds