8 references to IsBoundaryWordChar
System.Text.RegularExpressions.Generator (8)
RegexGenerator.Emitter.cs (8)
308
private const string IsBoundaryWordChar = nameof(
IsBoundaryWordChar
);
370
if (!requiredHelpers.ContainsKey(
IsBoundaryWordChar
))
372
requiredHelpers.Add(
IsBoundaryWordChar
,
377
$"internal static bool {
IsBoundaryWordChar
}(char ch)",
420
$" return {uncheckedKeyword}((uint)indexMinus1 < (uint)inputSpan.Length && {
IsBoundaryWordChar
}(inputSpan[indexMinus1])) !=",
421
$" {uncheckedKeyword}((uint)index < (uint)inputSpan.Length && {
IsBoundaryWordChar
}(inputSpan[index]));",
443
$" return {uncheckedKeyword}((uint)indexMinus1 >= (uint)inputSpan.Length || !{
IsBoundaryWordChar
}(inputSpan[indexMinus1]));",
463
$" {uncheckedKeyword}((uint)index >= (uint)inputSpan.Length || !{
IsBoundaryWordChar
}(inputSpan[index]));",