4 implementations of IndexOfAnyExceptWhiteSpace
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (2)
1647public int IndexOfAnyExceptWhiteSpace(ReadOnlySpan<byte> span) 1864public int IndexOfAnyExceptWhiteSpace(ReadOnlySpan<ushort> span)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlDecoder.cs (2)
476public int IndexOfAnyExceptWhiteSpace(ReadOnlySpan<byte> span) => default(Base64DecoderByte).IndexOfAnyExceptWhiteSpace(span); 561public int IndexOfAnyExceptWhiteSpace(ReadOnlySpan<ushort> span) => default(Base64DecoderChar).IndexOfAnyExceptWhiteSpace(span);
1 reference to IndexOfAnyExceptWhiteSpace
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (1)
289int localConsumed = decoder.IndexOfAnyExceptWhiteSpace(source);