Lines Matching defs:ch2
1364 unsigned ch2 = ScmStreamPeekCh(pStrmInput);
1365 if (ch2 == '/')
1534 unsigned ch2 = ScmStreamGetCh(pStrmInput);
1535 AssertBreakStmt(ch2 == ch, rcExit = vbcppError(pThis, "internal error"));
1774 unsigned ch2 = vbcppMacroExpandPeekCh(pExp, poff);
1775 if (ch2 == '\n')
1777 ch2 = ScmStreamGetCh(pExp->pStrmInput);
1778 AssertReturn(ch2 == '\n', vbcppError(pThis, "internal error"));
1947 unsigned ch2 = vbcppMacroExpandPeekCh(pExp, poff);
1949 if (ch2 == '/' || ch == '*')
1951 if (ch2 == '/')
1977 unsigned ch2 = vbcppMacroExpandPeekCh(pExp, poff);
1978 if (ch2 == '\r' || ch2 == '\n')
3687 char ch2 = *pParser->pszCur;
3691 ch2 = *++pParser->pszCur;
3692 if (!RT_C_IS_XDIGIT(ch2))
3782 char ch2 = *pParser->pszCur++;
3783 if (ch2 == '\'')
3786 if (ch2 == '\\')
3788 ch2 = *pParser->pszCur++;
3789 switch (ch2)
3796 return vbcppExprParseError(pParser, "Escape character '%c' is not implemented", ch2);
3800 s64 = ch2;
4371 unsigned ch2 = ScmStreamGetCh(pStrmInput); Assert(ch == ch2);
4402 unsigned ch2 = ScmStreamGetCh(pStrmInput);
4403 Assert(ch == ch2);
4408 unsigned ch2 = ScmStreamGetCh(pStrmInput); Assert(ch == ch2);
4412 && ( (ch2 = ScmStreamPeekCh(pStrmInput)) == '\r'
4413 || ch2 == '\n'))