12 references to IndexOfAnyExcept
System.Drawing.Common.Tests (2)
System\Drawing\GraphicsTests.cs (2)
2947
bytes.
IndexOfAnyExcept
((byte)0).Should().Be(-1);
2961
bytes.
IndexOfAnyExcept
((byte)0).Should().NotBe(-1);
System.Formats.Tar (1)
src\libraries\Common\src\System\IO\Archiving.Utils.Unix.cs (1)
15
int nonSlash = path.
IndexOfAnyExcept
('/');
System.IO.Compression.ZipFile (1)
src\libraries\Common\src\System\IO\Archiving.Utils.Unix.cs (1)
15
int nonSlash = path.
IndexOfAnyExcept
('/');
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
547
IndexOfAnyExcept
(span, value) >= 0;
744
IndexOfAnyExcept
((ReadOnlySpan<T>)span, value);
1192
return
IndexOfAnyExcept
(span, values[0]);
System.Private.Windows.Core (1)
System\SpanReader.cs (1)
220
int index = _unread.
IndexOfAnyExcept
(value);
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (3)
3279
if (negx && (bits[^1] >= kuMaskHighBit) && ((bits[^1] != kuMaskHighBit) || bits.
IndexOfAnyExcept
(0u) != (bits.Length - 1)))
3434
if (negx && (bits[^1] >= kuMaskHighBit) && ((bits[^1] != kuMaskHighBit) || bits.
IndexOfAnyExcept
(0u) != (bits.Length - 1)))
5310
if (negx && (bits[^1] >= kuMaskHighBit) && ((bits[^1] != kuMaskHighBit) || bits.
IndexOfAnyExcept
(0u) != (bits.Length - 1)))
System.Text.Json (1)
System\Text\Json\JsonHelpers.cs (1)
535
int firstNonZero = span.
IndexOfAnyExcept
((byte)'0');