Lines Matching refs:ResultChar
91 unsigned ResultChar = *ThisTokBuf++; in ProcessCharEscape() local
92 switch (ResultChar) { in ProcessCharEscape()
99 ResultChar = 7; in ProcessCharEscape()
102 ResultChar = 8; in ProcessCharEscape()
108 ResultChar = 27; in ProcessCharEscape()
114 ResultChar = 27; in ProcessCharEscape()
117 ResultChar = 12; in ProcessCharEscape()
120 ResultChar = 10; in ProcessCharEscape()
123 ResultChar = 13; in ProcessCharEscape()
126 ResultChar = 9; in ProcessCharEscape()
129 ResultChar = 11; in ProcessCharEscape()
132 ResultChar = 0; in ProcessCharEscape()
147 if (ResultChar & 0xF0000000) in ProcessCharEscape()
149 ResultChar <<= 4; in ProcessCharEscape()
150 ResultChar |= CharVal; in ProcessCharEscape()
154 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { in ProcessCharEscape()
156 ResultChar &= ~0U >> (32-CharWidth); in ProcessCharEscape()
169 ResultChar = 0; in ProcessCharEscape()
175 ResultChar <<= 3; in ProcessCharEscape()
176 ResultChar |= *ThisTokBuf++ - '0'; in ProcessCharEscape()
182 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { in ProcessCharEscape()
186 ResultChar &= ~0U >> (32-CharWidth); in ProcessCharEscape()
197 << std::string(1, ResultChar); in ProcessCharEscape()
203 if (isPrintable(ResultChar)) in ProcessCharEscape()
206 << std::string(1, ResultChar); in ProcessCharEscape()
210 << "x" + llvm::utohexstr(ResultChar); in ProcessCharEscape()
214 return ResultChar; in ProcessCharEscape()
1471 unsigned ResultChar = in init() local
1480 *ResultWidePtr = ResultChar; in init()
1486 *ResultWidePtr = ResultChar & 0xFFFF; in init()
1490 *ResultPtr++ = ResultChar & 0xFF; in init()