Searched refs:FX_CHARTYPE (Results 1 – 9 of 9) sorted by relevance
147 FX_CHARTYPE* eType) { in ParseChar()149 *eType = FX_CHARTYPE::kUnknown; in ParseChar()157 if (!pFT || *eType >= FX_CHARTYPE::kArabicNormal) in ParseChar()158 *eType = FX_CHARTYPE::kUnknown; in ParseChar()188 FX_CHARTYPE eCur; in GetFormChar()191 if (eCur < FX_CHARTYPE::kArabicAlef || eCur >= FX_CHARTYPE::kArabicNormal) in GetFormChar()194 FX_CHARTYPE ePrev; in GetFormChar()197 if (wPrev == 0x0644 && eCur == FX_CHARTYPE::kArabicAlef) in GetFormChar()200 FX_CHARTYPE eNext; in GetFormChar()203 bool bAlef = (eNext == FX_CHARTYPE::kArabicAlef && wCur == 0x644); in GetFormChar()[all …]
23 FX_CHARTYPE dwRet = FX_GetCharType(wch); in IsCtrlCode()24 return dwRet == FX_CHARTYPE::kTab || dwRet == FX_CHARTYPE::kControl; in IsCtrlCode()98 m_eCharType = FX_CHARTYPE::kTab; in AppendChar_Tab()102 m_eCharType = FX_CHARTYPE::kControl; in AppendChar_Control()129 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Arabic()134 if (!m_bCombText && m_eCharType >= FX_CHARTYPE::kArabicAlef && in AppendChar_Arabic()135 m_eCharType <= FX_CHARTYPE::kArabicDistortion) { in AppendChar_Arabic()146 pLastChar->GetCharType() == FX_CHARTYPE::kArabicAlef); in AppendChar_Arabic()196 FX_CHARTYPE chartype = pCurChar->GetCharType(); in AppendChar_Others()222 if (!m_bSingleLine && chartype != FX_CHARTYPE::kSpace && in AppendChar_Others()[all …]
71 FX_CHARTYPE chartype = FX_GetCharType(wch); in AppendChar()80 if (chartype != FX_CHARTYPE::kCombination && in AppendChar()82 m_eCharType != FX_CHARTYPE::kUnknown && in AppendChar()84 (m_eCharType != FX_CHARTYPE::kSpace || in AppendChar()85 chartype != FX_CHARTYPE::kControl)) { in AppendChar()93 case FX_CHARTYPE::kTab: in AppendChar()96 case FX_CHARTYPE::kControl: in AppendChar()99 case FX_CHARTYPE::kCombination: in AppendChar()102 case FX_CHARTYPE::kArabicAlef: in AppendChar()103 case FX_CHARTYPE::kArabicSpecial: in AppendChar()[all …]
25 m_eCharType = FX_CHARTYPE::kUnknown; in Reset()88 FX_CHARTYPE CFX_Break::GetUnifiedCharType(FX_CHARTYPE chartype) const { in GetUnifiedCharType()89 return chartype >= FX_CHARTYPE::kArabicAlef ? FX_CHARTYPE::kArabic : chartype; in GetUnifiedCharType()135 pTC->GetCharType() == FX_CHARTYPE::kCombination) { in GetLastChar()
73 FX_CHARTYPE GetUnifiedCharType(FX_CHARTYPE dwType) const;75 FX_CHARTYPE m_eCharType = FX_CHARTYPE::kUnknown;
32 FX_CHARTYPE GetCharType() const;
563 FX_CHARTYPE CFX_Char::GetCharType() const { in GetCharType()
58 ((static_cast<uint16_t>(FX_CHARTYPE::ct) << kCharTypeBitPos) | \154 FX_CHARTYPE FX_GetCharType(wchar_t wch) { in FX_GetCharType()157 ASSERT(result <= static_cast<uint16_t>(FX_CHARTYPE::kArabic)); in FX_GetCharType()158 return static_cast<FX_CHARTYPE>(result); in FX_GetCharType()
82 enum class FX_CHARTYPE : uint8_t { enum98 FX_CHARTYPE FX_GetCharType(wchar_t wch);