18 references to Bol
System.Text.RegularExpressions (18)
System\Text\RegularExpressions\RegexCompiler.cs (1)
646case RegexNodeKind.Bol:
System\Text\RegularExpressions\RegexFindOptimizations.cs (4)
26if (_rightToLeft && LeadingAnchor == RegexNodeKind.Bol) 243LeadingAnchor == RegexNodeKind.Bol; // there's a leading BOL anchor we can otherwise search for 367Debug.Assert(LeadingAnchor != RegexNodeKind.Bol, "BOL isn't enabled for RTL"); 493if (LeadingAnchor == RegexNodeKind.Bol)
System\Text\RegularExpressions\RegexNode.cs (4)
232case RegexNodeKind.Bol: 2333case RegexNodeKind.Bol: 2468case RegexNodeKind.Bol: 2571RegexNodeKind.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)
90case RegexNodeKind.Bol: 459case RegexNodeKind.Bol: 663case RegexNodeKind.Bol: 1004case RegexNodeKind.Bol: 1253case RegexNodeKind.Bol:
System\Text\RegularExpressions\RegexWriter.cs (1)
432case RegexNodeKind.Bol:
System\Text\RegularExpressions\Symbolic\RegexNodeConverter.cs (1)
146case 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>