8 references to LastIndexOfAny
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\FormDataReader.cs (1)
266var index = _currentPrefixBuffer.Span.LastIndexOfAny(".[");
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\FormDataReader.cs (1)
266var index = _currentPrefixBuffer.Span.LastIndexOfAny(".[");
Microsoft.Build (1)
Evaluation\Expander\WellKnownFunctions.cs (1)
267returnVal = text.AsSpan().LastIndexOfAny(arg0.AsSpan());
System.Formats.Tar (2)
System\Formats\Tar\TarHeader.Write.cs (2)
600int lastIdx = pathNameBytes.LastIndexOfAny(PathInternal.Utf8DirectorySeparators); 619lastIdx = prefix.LastIndexOfAny(PathInternal.Utf8DirectorySeparators);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (1)
3069LastIndexOfAny((ReadOnlySpan<T>)span, values);
src\libraries\System.Private.CoreLib\src\System\String.Searching.cs (2)
589return new ReadOnlySpan<char>(ref _firstChar, Length).LastIndexOfAny(anyOf); 620int result = new ReadOnlySpan<char>(ref Unsafe.Add(ref _firstChar, startSearchAt), count).LastIndexOfAny(anyOf);