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