Lines Matching full:interpolated
362 // Search for verbatim or interpolated string literals @"ABC" or
696 bool Interpolated) {
702 // Make no effort to format code within an interpolated or verbatim string.
704 // Interpolated strings could contain { } with " characters inside.
710 // interpolated string. Formatting expressions within an interpolated string
720 if (Interpolated) {
721 // {{ inside an interpolated string is escaped, so skip it.
729 if (Interpolated) {
730 // }} inside an interpolated string is escaped, so skip it.
763 bool Interpolated = false;
766 Interpolated = true;
770 Interpolated = true;
774 if (!Verbatim && !Interpolated)
779 if (Verbatim && Interpolated)
785 Offset = lexCSharpString(Offset, End, Verbatim, Interpolated);