• Home
  • Raw
  • Download

Lines Matching refs:wch

51   wchar_t wch = pCurChar->char_code();  in AppendChar_Combination()  local
58 wForm = wch; in AppendChar_Combination()
63 if (wch == 0x0651) { in AppendChar_Combination()
69 } else if (wch >= 0x064C && wch <= 0x0650) { in AppendChar_Combination()
71 wForm = FX_GetArabicFromShaddaTable(wch); in AppendChar_Combination()
98 wchar_t wch = pCurChar->char_code(); in AppendChar_Control() local
99 switch (wch) { in AppendChar_Control()
111 if (wch == m_wParagraphBreakChar) in AppendChar_Control()
180 wchar_t wch = pCurChar->char_code(); in AppendChar_Others() local
181 wchar_t wForm = wch; in AppendChar_Others()
204 CFX_BreakType CFX_TxtBreak::AppendChar(wchar_t wch) { in AppendChar() argument
205 uint32_t dwProps = FX_GetUnicodeProperties(wch); in AppendChar()
207 m_pCurLine->m_LineChars.emplace_back(wch, dwProps, m_iHorizontalScale, in AppendChar()
225 if (wch == m_wParagraphBreakChar) { in AppendChar()
640 uint16_t wch; member
690 wchar_t wch; in GetDisplayPos() local
692 wch = pEngine->GetChar(i); in GetDisplayPos()
695 wch = *pStr++; in GetDisplayPos()
699 uint32_t dwProps = FX_GetUnicodeProperties(wch); in GetDisplayPos()
703 wLast = wch; in GetDisplayPos()
738 wForm = pdfium::arabic::GetFormChar(wch, wPrev, wNext); in GetDisplayPos()
739 bLam = (wPrev == 0x0644 && wch == 0x0644 && wNext == 0x0647); in GetDisplayPos()
741 wForm = wch; in GetDisplayPos()
742 if (wch >= 0x064C && wch <= 0x0651) { in GetDisplayPos()
756 if (wch == 0x0651) { in GetDisplayPos()
763 wForm = FX_GetArabicFromShaddaTable(wch); in GetDisplayPos()
772 wForm = wch; in GetDisplayPos()
773 } else if (wch == L'.') { in GetDisplayPos()
774 wForm = wch; in GetDisplayPos()
775 } else if (wch == L',') { in GetDisplayPos()
776 wForm = wch; in GetDisplayPos()
778 wForm = FX_GetMirrorChar(wch, dwProps); in GetDisplayPos()
780 wForm = wch; in GetDisplayPos()
797 wPrev = wch; in GetDisplayPos()
798 wLast = wch; in GetDisplayPos()
807 formChars[0].wch = wch; in GetDisplayPos()
826 wch = wForm; in GetDisplayPos()
858 if (wForm == wch && wLast != 0xFEFF) { in GetDisplayPos()
893 wPrev = static_cast<wchar_t>(formChars[0].wch); in GetDisplayPos()
894 wLast = wch; in GetDisplayPos()
925 wchar_t wch; in GetCharRects() local
933 wch = pEngine->GetChar(i); in GetCharRects()
936 wch = *pStr++; in GetCharRects()
940 bool bRet = (!bSingleLine && IsCtrlCode(wch)); in GetCharRects()
941 if (!(wch == L'\v' || wch == L'\f' || wch == 0x2028 || wch == 0x2029 || in GetCharRects()
942 wch == L'\n')) { in GetCharRects()
960 pFont->GetCharWidth(wch, iCharWidth); in GetCharRects()