Home
last modified time | relevance | path

Searched refs:UcnVal (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Lex/
DLiteralSupport.cpp263 uint32_t &UcnVal, unsigned short &UcnLen, in ProcessUCNEscape() argument
283 UcnVal <<= 4; in ProcessUCNEscape()
284 UcnVal |= CharVal; in ProcessUCNEscape()
295 if ((0xD800 <= UcnVal && UcnVal <= 0xDFFF) || // surrogate codepoints in ProcessUCNEscape()
296 UcnVal > 0x10FFFF) { // maximum legal UTF32 value in ProcessUCNEscape()
305 if (UcnVal < 0xa0 && in ProcessUCNEscape()
306 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60)) { // $, @, ` in ProcessUCNEscape()
309 char BasicSCSChar = UcnVal; in ProcessUCNEscape()
310 if (UcnVal >= 0x20 && UcnVal < 0x7f) in ProcessUCNEscape()
340 uint32_t UcnVal = 0; in MeasureUCNEscape() local
[all …]