Lines Matching full:delimited
138 bool Delimited = false; in ProcessCharEscape() local
190 Delimited = true; in ProcessCharEscape()
207 if (Delimited && *ThisTokBuf == '}') { in ProcessCharEscape()
214 // Non delimited hex escape sequences stop at the first non-hex digit. in ProcessCharEscape()
215 if (!Delimited) in ProcessCharEscape()
283 Delimited = true; in ProcessCharEscape()
348 if (Delimited && Diags) { in ProcessCharEscape()
357 << /*delimited*/ 0 << (Features.CPlusPlus ? 1 : 0); in ProcessCharEscape()
458 unsigned short &UcnLen, bool &Delimited, in ProcessNumericUCNEscape() argument
468 Delimited = false; in ProcessNumericUCNEscape()
471 Delimited = true; in ProcessNumericUCNEscape()
484 for (; ThisTokBuf != ThisTokEnd && (Delimited || Count != UcnLen); in ProcessNumericUCNEscape()
486 if (Delimited && *ThisTokBuf == '}') { in ProcessNumericUCNEscape()
494 if (!Delimited) in ProcessNumericUCNEscape()
521 if (Delimited && !EndDelimiterFound) { in ProcessNumericUCNEscape()
531 if (Count == 0 || (!Delimited && Count != UcnLen)) { in ProcessNumericUCNEscape()
534 Delimited ? diag::err_delimited_escape_empty in ProcessNumericUCNEscape()