7 references to LastIndexOf
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.cs (5)
1141
return
LastIndexOf
(source, new ReadOnlySpan<char>(in value), options);
1155
return
LastIndexOf
(source.AsSpan(), value.AsSpan(), options);
1236
int retVal =
LastIndexOf
(sourceSpan, new ReadOnlySpan<char>(in value), options);
1296
int retVal =
LastIndexOf
(sourceSpan, value, options);
1410
return
LastIndexOf
(source, valueAsUtf16.Slice(0, charCount), options);
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.Globalization.cs (2)
175
return CultureInfo.CurrentCulture.CompareInfo.
LastIndexOf
(span, value, string.GetCaseCompareOfComparisonCulture(comparisonType));
179
return CompareInfo.Invariant.
LastIndexOf
(span, value, string.GetCaseCompareOfComparisonCulture(comparisonType));