Searched refs:chartype (Results 1 – 9 of 9) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_xclass.c | 146 if ((prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in PRIV() 147 prop->chartype == ucp_Lt) == isprop) return !negated; in PRIV() 151 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop) in PRIV() 156 if ((data[1] == prop->chartype) == isprop) return !negated; in PRIV() 164 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV() 165 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop) in PRIV() 183 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == isprop) in PRIV() 190 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in PRIV() 191 PRIV(ucp_gentype)[prop->chartype] == ucp_N || c == CHAR_UNDERSCORE) in PRIV() 223 if ((PRIV(ucp_gentype)[prop->chartype] != ucp_Z && in PRIV() [all …]
|
D | pcre2_dfa_match.c | 1166 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match() 1167 prop->chartype == ucp_Lt; in internal_dfa_match() 1171 OK = PRIV(ucp_gentype)[prop->chartype] == code[2]; in internal_dfa_match() 1175 OK = prop->chartype == code[2]; in internal_dfa_match() 1185 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match() 1186 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match() 1203 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z; in internal_dfa_match() 1209 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match() 1210 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in internal_dfa_match() 1424 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match() [all …]
|
D | pcre2_auto_possess.c | 205 return (prop->chartype == ucp_Lu || in check_char_prop() 206 prop->chartype == ucp_Ll || in check_char_prop() 207 prop->chartype == ucp_Lt) == negated; in check_char_prop() 210 return (pdata == PRIV(ucp_gentype)[prop->chartype]) == negated; in check_char_prop() 213 return (pdata == prop->chartype) == negated; in check_char_prop() 221 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop() 222 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == negated; in check_char_prop() 237 return (PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == negated; in check_char_prop() 242 return (PRIV(ucp_gentype)[prop->chartype] == ucp_L || in check_char_prop() 243 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in check_char_prop()
|
D | pcre2_match.c | 2357 if ((prop->chartype == ucp_Lu || in match() 2358 prop->chartype == ucp_Ll || in match() 2359 prop->chartype == ucp_Lt) == (Fop == OP_NOTPROP)) in match() 2364 if ((Fecode[2] != PRIV(ucp_gentype)[prop->chartype]) == (Fop == OP_PROP)) in match() 2369 if ((Fecode[2] != prop->chartype) == (Fop == OP_PROP)) in match() 2381 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match() 2382 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == (Fop == OP_NOTPROP)) in match() 2400 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == in match() 2407 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match() 2408 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in match() [all …]
|
D | pcre2_internal.h | 1746 uint8_t chartype; /* ucp_Cc, etc. (general categories) */ member 1766 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype
|
D | pcre2_jit_compile.c | 3657 SLJIT_ASSERT(record->script == ucp_Common && record->chartype == ucp_Cn && record->gbprop == ucp_gb… in do_getucd() 3682 …SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in do_getucd() 6697 …SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in compile_xclass_matchingpath() 6703 …URN_ADDR, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in compile_xclass_matchingpath()
|
/external/pdfium/xfa/fgas/layout/ |
D | cfx_txtbreak.cpp | 122 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Arabic() local 153 m_eCharType = chartype; in AppendChar_Arabic() 176 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Others() local 179 m_eCharType = chartype; in AppendChar_Others() 196 if (!m_bSingleLine && chartype != FX_CHARTYPE_Space && in AppendChar_Others() 206 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar() local 213 if (chartype != FX_CHARTYPE_Combination && in AppendChar() 214 GetUnifiedCharType(m_eCharType) != GetUnifiedCharType(chartype) && in AppendChar() 217 (m_eCharType != FX_CHARTYPE_Space || chartype != FX_CHARTYPE_Control)) { in AppendChar() 231 switch (chartype) { in AppendChar() [all …]
|
D | cfx_break.cpp | 107 FX_CHARTYPE CFX_Break::GetUnifiedCharType(FX_CHARTYPE chartype) const { in GetUnifiedCharType() 108 return chartype >= FX_CHARTYPE_ArabicAlef ? FX_CHARTYPE_Arabic : chartype; in GetUnifiedCharType()
|
D | cfx_rtfbreak.cpp | 71 FX_CHARTYPE chartype = GetCharTypeFromProp(dwProps); in AppendChar() local 80 if (chartype != FX_CHARTYPE_Combination && in AppendChar() 81 GetUnifiedCharType(m_eCharType) != GetUnifiedCharType(chartype) && in AppendChar() 84 (m_eCharType != FX_CHARTYPE_Space || chartype != FX_CHARTYPE_Control)) { in AppendChar() 92 switch (chartype) { in AppendChar() 119 m_eCharType = chartype; in AppendChar() 226 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Others() local 238 if (chartype != FX_CHARTYPE_Space && in AppendChar_Others()
|