24 references to IndexOfAnyExcept
Microsoft.DotNet.HotReload.Watch (1)
_generated\0\RegexGenerator.g.cs (1)
556int i = inputSpan.Slice(pos).IndexOfAnyExcept(':');
System.Formats.Tar (1)
src\runtime\src\libraries\Common\src\System\IO\Archiving.Utils.Unix.cs (1)
15int nonSlash = path.IndexOfAnyExcept('/');
System.Private.CoreLib (5)
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (1)
320var nullsToConsume = remainder.IndexOfAnyExcept(TChar.CastFrom('\0'));
src\runtime\src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
551IndexOfAnyExcept(span, value) >= 0; 748IndexOfAnyExcept((ReadOnlySpan<T>)span, value); 1196return IndexOfAnyExcept(span, values[0]);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\TotalOrderIeee754Comparer.cs (1)
140if (extra.IndexOfAnyExcept(fill) >= 0)
System.Private.Windows.Core (1)
System\SpanReader.cs (1)
221int index = _unread.IndexOfAnyExcept(value);
System.Private.Xml (3)
_generated\0\RegexGenerator.g.cs (3)
837int i = inputSpan.Slice(pos).IndexOfAnyExcept('['); 1306int i = inputSpan.Slice(pos).IndexOfAnyExcept(' '); 1651int i = inputSpan.Slice(pos).IndexOfAnyExcept('[');
System.Runtime.Numerics (11)
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (1)
320var nullsToConsume = remainder.IndexOfAnyExcept(TChar.CastFrom('\0'));
System\Numerics\BigInteger.cs (9)
348int offset = value.Slice(1).IndexOfAnyExcept((byte)0); 1591nonZeroLimbIndex = ((ReadOnlySpan<nuint>)bits).IndexOfAnyExcept(0u); 2907int leastSignificant = zd.IndexOfAnyExcept(nuint.MaxValue); 3419int firstNonZero = value._bits.AsSpan().IndexOfAnyExcept((nuint)0); 3514int firstNonZeroLimb = negative ? bits.IndexOfAnyExcept((nuint)0) : 0; 3708int leadingZeroCount = negative ? bits.IndexOfAnyExcept((nuint)0) : 0; 3869int firstNonZero = ((ReadOnlySpan<nuint>)bits).IndexOfAnyExcept(0u); 3939int firstNonZero = ((ReadOnlySpan<nuint>)bits).IndexOfAnyExcept(0u); 5443int negLeadingZeroCount = neg ? bits.IndexOfAnyExcept(0u) : 0;
System\Numerics\NumericsHelpers.cs (1)
51int i = d.IndexOfAnyExcept(0u);
System.Security.Cryptography (1)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\X25519WindowsHelpers.cs (1)
54if (y.IndexOfAnyExcept((byte)0) >= 0)
System.Text.Json (1)
System\Text\Json\JsonHelpers.cs (1)
524int firstNonZero = span.IndexOfAnyExcept((byte)'0');