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