26 references to TimeSpanFormat
mscorlib (26)
system\globalization\timespanformat.cs (3)
21internal static readonly FormatLiterals PositiveInvariantFormatLiterals = TimeSpanFormat.FormatLiterals.InitInvariant(false /*isNegative*/); 22internal static readonly FormatLiterals NegativeInvariantFormatLiterals = TimeSpanFormat.FormatLiterals.InitInvariant(true /*isNegative*/); 249result.Append(TimeSpanFormat.FormatCustomized(value, ((char)nextChar).ToString(), dtfi));
system\globalization\timespanparse.cs (19)
252internal TimeSpanFormat.FormatLiterals PositiveInvariant { 254return TimeSpanFormat.PositiveInvariantFormatLiterals; 257internal TimeSpanFormat.FormatLiterals NegativeInvariant { 259return TimeSpanFormat.NegativeInvariantFormatLiterals; 263internal TimeSpanFormat.FormatLiterals PositiveLocalized { 266m_posLoc = new TimeSpanFormat.FormatLiterals(); 273internal TimeSpanFormat.FormatLiterals NegativeLocalized { 276m_negLoc = new TimeSpanFormat.FormatLiterals(); 284internal Boolean FullAppCompatMatch(TimeSpanFormat.FormatLiterals pattern) { 294internal Boolean PartialAppCompatMatch(TimeSpanFormat.FormatLiterals pattern) { 303internal Boolean FullMatch(TimeSpanFormat.FormatLiterals pattern) { 314internal Boolean FullDMatch(TimeSpanFormat.FormatLiterals pattern) { 321internal Boolean FullHMMatch(TimeSpanFormat.FormatLiterals pattern) { 329internal Boolean FullDHMMatch(TimeSpanFormat.FormatLiterals pattern) { 339internal Boolean FullHMSMatch(TimeSpanFormat.FormatLiterals pattern) { 348internal Boolean FullDHMSMatch(TimeSpanFormat.FormatLiterals pattern) { 358internal Boolean FullHMSFMatch(TimeSpanFormat.FormatLiterals pattern) { 375private TimeSpanFormat.FormatLiterals m_posLoc; 376private TimeSpanFormat.FormatLiterals m_negLoc;
system\timespan.cs (4)
325return TimeSpanFormat.Format(this, null, null); 328return TimeSpanFormat.Format(this, format, null); 332return TimeSpanFormat.Format(this, null, null); 335return TimeSpanFormat.Format(this, format, formatProvider);