Searched refs:UcnVal (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/Lex/ |
D | LiteralSupport.cpp | 169 uint32_t &UcnVal, unsigned short &UcnLen, in ProcessUCNEscape() argument 191 UcnVal <<= 4; in ProcessUCNEscape() 192 UcnVal |= CharVal; in ProcessUCNEscape() 206 if ((UcnVal < 0xa0 && in ProcessUCNEscape() 207 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, ` in ProcessUCNEscape() 208 || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF) in ProcessUCNEscape() 209 || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ { in ProcessUCNEscape() 226 UTF32 UcnVal = 0; in EncodeUCNEscape() local 228 if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, Loc, Diags, in EncodeUCNEscape() 240 *ResultBuf++ = (UcnVal & 0x000000FF); in EncodeUCNEscape() [all …]
|