Home | History | Annotate | Download | only in css

Lines Matching full:wch

19 bool IsSelectorStart(wchar_t wch) {
20 return wch == '.' || wch == '#' || wch == '*' || FXSYS_iswalpha(wch);
57 wchar_t wch;
59 wch = m_TextPlane.GetChar();
62 switch (wch) {
77 if (wch <= ' ') {
79 } else if (IsSelectorStart(wch)) {
90 switch (wch) {
113 AppendChar(wch);
118 switch (wch) {
137 AppendChar(wch);
142 switch (wch) {
155 AppendChar(wch);
160 if (wch == '/' && m_TextData.GetLength() > 0 &&
164 m_TextData.AppendChar(wch);
169 if (wch == ';')
190 bool CFX_CSSSyntaxParser::AppendChar(wchar_t wch) {
192 if (m_TextData.GetLength() > 0 || wch > ' ') {
193 m_TextData.AppendChar(wch);