Home | History | Annotate | Download | only in css

Lines Matching full:wch

30   wchar_t wch = *m_pCur;
31 if (wch == '#') {
35 } else if (std::iswdigit(wch) || wch == '.' || wch == '-' || wch == '+') {
41 } else if (wch == '\"' || wch == '\'') {
44 *iLength = SkipTo(wch, false, false);
60 int32_t CFX_CSSValueListParser::SkipTo(wchar_t wch,
65 while (m_pCur < m_pEnd && *m_pCur != wch) {