Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/lib/Lex/
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()
396 unsigned short &UcnLen, bool &Delimited, in ProcessNumericUCNEscape() argument
406 Delimited = false; in ProcessNumericUCNEscape()
409 Delimited = true; in ProcessNumericUCNEscape()
422 for (; ThisTokBuf != ThisTokEnd && (Delimited || Count != UcnLen); in ProcessNumericUCNEscape()
[all …]
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()