Lines Matching defs:text
420 string text = ((IFormattable) value).ToString("r", CultureInfo.InvariantCulture);
421 if (text == "NaN" || text == "Infinity" || text == "-Infinity")
424 writer.Write(text);
429 writer.Write(text);
708 internal static void WriteString(TextWriter writer, string text)
711 for (int i = 0; i < text.Length; i++)
713 char c = text[i];
724 if (i == text.Length || !char.IsLowSurrogate(text[i]))
729 HexEncodeUtf16CodeUnit(writer, text[i]);