Lines Matching refs:wch
886 wchar_t wch = wsText[i]; in AppendChar() local
887 if (wch == 0xA0) in AppendChar()
888 wch = 0x20; in AppendChar()
890 dwStatus = m_pBreak->AppendChar(wch); in AppendChar()
923 wchar_t wch = 0, wPrev = 0; in ProcessText() local
925 wch = psz[i]; in ProcessText()
926 if (wch < 0x20) in ProcessText()
927 wch = 0x20; in ProcessText()
928 if (wch == 0x20 && wPrev == 0x20) in ProcessText()
931 wPrev = wch; in ProcessText()
932 psz[iTrimLeft++] = wch; in ProcessText()