8 references to IsBoundaryWordChar
System.Text.RegularExpressions.Generator (8)
RegexGenerator.Emitter.cs (8)
334
private const string IsBoundaryWordChar = nameof(
IsBoundaryWordChar
);
396
if (!requiredHelpers.ContainsKey(
IsBoundaryWordChar
))
398
requiredHelpers.Add(
IsBoundaryWordChar
,
403
$"internal static bool {
IsBoundaryWordChar
}(char ch)",
446
$" return {uncheckedKeyword}((uint)indexMinus1 < (uint)inputSpan.Length && {
IsBoundaryWordChar
}(inputSpan[indexMinus1])) !=",
447
$" {uncheckedKeyword}((uint)index < (uint)inputSpan.Length && {
IsBoundaryWordChar
}(inputSpan[index]));",
469
$" return {uncheckedKeyword}((uint)indexMinus1 >= (uint)inputSpan.Length || !{
IsBoundaryWordChar
}(inputSpan[indexMinus1]));",
489
$" {uncheckedKeyword}((uint)index >= (uint)inputSpan.Length || !{
IsBoundaryWordChar
}(inputSpan[index]));",