Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Lex/
H A DLiteralSupport.cpp99 bool Delimited = false; in ProcessCharEscape() local
150 Delimited = true; in ProcessCharEscape()
167 if (Delimited && *ThisTokBuf == '}') { in ProcessCharEscape()
175 if (!Delimited) in ProcessCharEscape()
243 Delimited = true; in ProcessCharEscape()
307 if (Delimited && Diags) { in ProcessCharEscape()
406 Delimited = false; in ProcessNumericUCNEscape()
409 Delimited = true; in ProcessNumericUCNEscape()
424 if (Delimited && *ThisTokBuf == '}') { in ProcessNumericUCNEscape()
432 if (!Delimited) in ProcessNumericUCNEscape()
[all …]
H A DLexer.cpp3272 bool Delimited = false; in tryReadNumericUCN() local
3287 while (Count != NumHexDigits || Delimited) { in tryReadNumericUCN()
3289 if (!Delimited && Count == 0 && C == '{') { in tryReadNumericUCN()
3290 Delimited = true; in tryReadNumericUCN()
3295 if (Delimited && C == '}') { in tryReadNumericUCN()
3303 if (!Delimited) in tryReadNumericUCN()
3331 if (Delimited && Kind == 'U') { in tryReadNumericUCN()
3337 if (!Delimited && Count != NumHexDigits) { in tryReadNumericUCN()
3350 if (Delimited && PP) { in tryReadNumericUCN()
3362 if (CurPtr - StartPtr == (ptrdiff_t)(Count + 1 + (Delimited ? 2 : 0))) in tryReadNumericUCN()