Lines Matching refs:ResultChar

104   unsigned ResultChar = *ThisTokBuf++;  in ProcessCharEscape()  local
105 switch (ResultChar) { in ProcessCharEscape()
112 ResultChar = 7; in ProcessCharEscape()
115 ResultChar = 8; in ProcessCharEscape()
121 ResultChar = 27; in ProcessCharEscape()
127 ResultChar = 27; in ProcessCharEscape()
130 ResultChar = 12; in ProcessCharEscape()
133 ResultChar = 10; in ProcessCharEscape()
136 ResultChar = 13; in ProcessCharEscape()
139 ResultChar = 9; in ProcessCharEscape()
142 ResultChar = 11; in ProcessCharEscape()
145 ResultChar = 0; in ProcessCharEscape()
160 if (ResultChar & 0xF0000000) in ProcessCharEscape()
162 ResultChar <<= 4; in ProcessCharEscape()
163 ResultChar |= CharVal; in ProcessCharEscape()
167 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { in ProcessCharEscape()
169 ResultChar &= ~0U >> (32-CharWidth); in ProcessCharEscape()
182 ResultChar = 0; in ProcessCharEscape()
188 ResultChar <<= 3; in ProcessCharEscape()
189 ResultChar |= *ThisTokBuf++ - '0'; in ProcessCharEscape()
195 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) { in ProcessCharEscape()
199 ResultChar &= ~0U >> (32-CharWidth); in ProcessCharEscape()
210 << std::string(1, ResultChar); in ProcessCharEscape()
216 if (isPrintable(ResultChar)) in ProcessCharEscape()
219 << std::string(1, ResultChar); in ProcessCharEscape()
223 << "x" + llvm::utohexstr(ResultChar); in ProcessCharEscape()
227 return ResultChar; in ProcessCharEscape()
1703 unsigned ResultChar = in init() local
1712 *ResultWidePtr = ResultChar; in init()
1718 *ResultWidePtr = ResultChar & 0xFFFF; in init()
1722 *ResultPtr++ = ResultChar & 0xFF; in init()