Home | History | Annotate | Download | only in parser

Lines Matching refs:ch

119     inline bool Lexer::isWhiteSpace(int ch)
121 return isASCII(ch) ? (ch == ' ' || ch == '\t' || ch == 0xB || ch == 0xC) : WTF::Unicode::isSeparatorSpace(ch);
124 inline bool Lexer::isLineTerminator(int ch)
126 return ch == '\r' || ch == '\n' || (ch & ~1) == 0x2028;