Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_xclass.c146 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 …]
Dpcre2_dfa_match.c1025 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match()
1026 prop->chartype == ucp_Lt; in internal_dfa_match()
1030 OK = PRIV(ucp_gentype)[prop->chartype] == code[2]; in internal_dfa_match()
1034 OK = prop->chartype == code[2]; in internal_dfa_match()
1044 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match()
1045 PRIV(ucp_gentype)[prop->chartype] == ucp_N; in internal_dfa_match()
1062 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_Z; in internal_dfa_match()
1068 OK = PRIV(ucp_gentype)[prop->chartype] == ucp_L || in internal_dfa_match()
1069 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in internal_dfa_match()
1283 OK = prop->chartype == ucp_Lu || prop->chartype == ucp_Ll || in internal_dfa_match()
[all …]
Dpcre2_auto_possess.c205 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()
Dpcre2_match.c2645 if ((prop->chartype == ucp_Lu || in match()
2646 prop->chartype == ucp_Ll || in match()
2647 prop->chartype == ucp_Lt) == (op == OP_NOTPROP)) in match()
2652 if ((ecode[2] != PRIV(ucp_gentype)[prop->chartype]) == (op == OP_PROP)) in match()
2657 if ((ecode[2] != prop->chartype) == (op == OP_PROP)) in match()
2669 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match()
2670 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == (op == OP_NOTPROP)) in match()
2688 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_Z) == in match()
2695 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L || in match()
2696 PRIV(ucp_gentype)[prop->chartype] == ucp_N || in match()
[all …]
Dpcre2_internal.h1788 uint8_t chartype; /* ucp_Cc, etc. (general categories) */ member
1801 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype
Dpcre2_jit_compile.c3295 …SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in do_getucd()
5728 …SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype)); in compile_xclass_matchingpath()
5734 …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/
Dcfx_txtbreak.cpp122 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 …]
Dcfx_break.cpp107 FX_CHARTYPE CFX_Break::GetUnifiedCharType(FX_CHARTYPE chartype) const { in GetUnifiedCharType()
108 return chartype >= FX_CHARTYPE_ArabicAlef ? FX_CHARTYPE_Arabic : chartype; in GetUnifiedCharType()
Dcfx_rtfbreak.cpp71 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()
/external/libedit/src/
DMakefile.am40 libedit_la_SOURCES = chared.c common.c el.c emacs.c hist.c keymacro.c map.c chartype.c parse.c \
44 histedit.h keymacro.h map.h chartype.h parse.h prompt.h read.h refresh.h \
DMakefile.in133 keymacro.c map.c chartype.c parse.c prompt.c read.c refresh.c \
136 hist.h histedit.h keymacro.h map.h chartype.h parse.h prompt.h \
146 keymacro.lo map.lo chartype.lo parse.lo prompt.lo read.lo \
349 map.c chartype.c parse.c prompt.c read.c refresh.c search.c \
352 histedit.h keymacro.h map.h chartype.h parse.h prompt.h read.h \
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chartype.Plo@am__quote@