18 references to Bol
System.Text.RegularExpressions (18)
System\Text\RegularExpressions\RegexCompiler.cs (1)
646
case RegexNodeKind.
Bol
:
System\Text\RegularExpressions\RegexFindOptimizations.cs (4)
27
if (_rightToLeft && LeadingAnchor == RegexNodeKind.
Bol
)
250
LeadingAnchor == RegexNodeKind.
Bol
; // there's a leading BOL anchor we can otherwise search for
379
Debug.Assert(LeadingAnchor != RegexNodeKind.
Bol
, "BOL isn't enabled for RTL");
505
if (LeadingAnchor == RegexNodeKind.
Bol
)
System\Text\RegularExpressions\RegexNode.cs (4)
232
case RegexNodeKind.
Bol
:
2336
case RegexNodeKind.
Bol
:
2471
case RegexNodeKind.
Bol
:
2574
RegexNodeKind.
Bol
or
System\Text\RegularExpressions\RegexParser.cs (1)
394
_unit = new RegexNode((_options & RegexOptions.Multiline) != 0 ? RegexNodeKind.
Bol
: RegexNodeKind.Beginning, _options);
System\Text\RegularExpressions\RegexPrefixAnalyzer.cs (5)
90
case RegexNodeKind.
Bol
:
459
case RegexNodeKind.
Bol
:
663
case RegexNodeKind.
Bol
:
1004
case RegexNodeKind.
Bol
:
1253
case RegexNodeKind.
Bol
:
System\Text\RegularExpressions\RegexWriter.cs (1)
432
case RegexNodeKind.
Bol
:
System\Text\RegularExpressions\Symbolic\RegexNodeConverter.cs (1)
146
case RegexNodeKind.
Bol
:
System\Text\RegularExpressions\Symbolic\SymbolicRegexKind.cs (1)
28
/// <summary>A node that represents a beginning-of-line anchor (i.e. <see cref="RegexNodeKind.
Bol
"/>).</summary>