13 references to FormatDigits
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormat.cs (9)
479FormatDigits(ref result, hour12, Math.Min(tokenLen, 2)); 484FormatDigits(ref result, dateTime.Hour, Math.Min(tokenLen, 2)); 489FormatDigits(ref result, dateTime.Minute, Math.Min(tokenLen, 2)); 494FormatDigits(ref result, dateTime.Second, Math.Min(tokenLen, 2)); 577FormatDigits(ref result, day, tokenLen); 604FormatDigits(ref result, month, tokenLen); 653FormatDigits(ref result, year, Math.Min(tokenLen, 2)); 663FormatDigits(ref result, year % 100, tokenLen); 667FormatDigits(ref result, year, tokenLen);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TimeSpanFormat.cs (4)
378DateTimeFormat.FormatDigits(ref result, hours, tokenLen); 386DateTimeFormat.FormatDigits(ref result, minutes, tokenLen); 394DateTimeFormat.FormatDigits(ref result, seconds, tokenLen); 451DateTimeFormat.FormatDigits(ref result, day, tokenLen);