14 references to IndexOfAnyExcept
System.Drawing.Common.Tests (2)
System\Drawing\GraphicsTests.cs (2)
2947bytes.IndexOfAnyExcept((byte)0).Should().Be(-1); 2961bytes.IndexOfAnyExcept((byte)0).Should().NotBe(-1);
System.Formats.Tar (1)
src\libraries\Common\src\System\IO\Archiving.Utils.Unix.cs (1)
15int nonSlash = path.IndexOfAnyExcept('/');
System.IO.Compression.ZipFile (1)
src\libraries\Common\src\System\IO\Archiving.Utils.Unix.cs (1)
15int nonSlash = path.IndexOfAnyExcept('/');
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
551IndexOfAnyExcept(span, value) >= 0; 748IndexOfAnyExcept((ReadOnlySpan<T>)span, value); 1196return IndexOfAnyExcept(span, values[0]);
System.Private.Windows.Core (1)
System\SpanReader.cs (1)
220int index = _unread.IndexOfAnyExcept(value);
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (3)
2694int leastSignificant = zd.IndexOfAnyExcept(uint.MaxValue); 3309int leadingZeroCount = negative ? bits.IndexOfAnyExcept(0u) : 0; 5127int negLeadingZeroCount = neg ? bits.IndexOfAnyExcept(0u) : 0;
System\Numerics\NumericsHelpers.cs (1)
111int i = d.IndexOfAnyExcept(0u);
System.Security.Cryptography (1)
System\Security\Cryptography\Aes.cs (1)
383if (header != 0xA65959A6 || pad > 7 || destination.Slice(slen).IndexOfAnyExcept((byte)0) >= 0)
System.Text.Json (1)
System\Text\Json\JsonHelpers.cs (1)
510int firstNonZero = span.IndexOfAnyExcept((byte)'0');