15 references to Colon
System.Private.CoreLib (15)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Date.Default.cs (1)
62if (source[23] != Utf8Constants.Colon)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Date.G.cs (2)
115if (source[13] != Utf8Constants.Colon) 139if (source[16] != Utf8Constants.Colon)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Date.O.cs (3)
119if (source[13] != Utf8Constants.Colon) 143if (source[16] != Utf8Constants.Colon) 252if (source[30] != Utf8Constants.Colon)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Date.R.cs (2)
143if (source[19] != Utf8Constants.Colon) 165if (source[22] != Utf8Constants.Colon)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.TimeSpan.BigG.cs (4)
48if (srcIndex == source.Length || source[srcIndex++] != Utf8Constants.Colon) 63if (srcIndex == source.Length || source[srcIndex++] != Utf8Constants.Colon) 78if (srcIndex == source.Length || source[srcIndex++] != Utf8Constants.Colon) 120if (srcIndex != source.Length && (source[srcIndex] == Utf8Constants.Period || source[srcIndex] == Utf8Constants.Colon))
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.TimeSpanSplitter.cs (3)
166if (srcIndex != source.Length && (source[srcIndex] == Utf8Constants.Period || source[srcIndex] == Utf8Constants.Colon)) 188if (c == Utf8Constants.Colon || (c == Utf8Constants.Period && neverParseAsFraction)) 199return c == Utf8Constants.Colon ? ComponentParseResult.Colon : ComponentParseResult.Period;