Home | History | Annotate | Download | only in Lex

Lines Matching refs:CharSize

276     unsigned charSize;
277 buffer.push_back(Lexer::getCharAndSizeNoWarn(ti, charSize, options));
278 ti += charSize;
311 unsigned CharSize;
312 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, LangOpts));
313 Ptr += CharSize;
371 unsigned CharSize;
372 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, LangOpts);
373 Ptr += CharSize;
2131 unsigned CharSize;
2132 unsigned char C = getCharAndSize(CurPtr, CharSize);
2133 CurPtr += CharSize;