Searched refs:UcnVal (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 458 const char *ThisTokEnd, uint32_t &UcnVal, in ProcessNumericUCNEscape() argument 505 if (UcnVal & 0xF0000000) { in ProcessNumericUCNEscape() 509 UcnVal <<= 4; in ProcessNumericUCNEscape() 510 UcnVal |= CharVal; in ProcessNumericUCNEscape() 599 const char *ThisTokEnd, uint32_t &UcnVal, in ProcessNamedUCNEscape() argument 639 UcnVal = *Res; in ProcessNamedUCNEscape() 640 UcnLen = UcnVal > 0xFFFF ? 8 : 4; in ProcessNamedUCNEscape() 647 const char *ThisTokEnd, uint32_t &UcnVal, in ProcessUCNEscape() argument 660 UcnVal, UcnLen, Loc, Diags, Features); in ProcessUCNEscape() 663 !ProcessNumericUCNEscape(ThisTokBegin, ThisTokBuf, ThisTokEnd, UcnVal, in ProcessUCNEscape() [all …]
|