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