5 references to Compiled
System.Text.RegularExpressions.Generator (5)
RegexGenerator.cs (1)
83RegexTree regexTree = RegexParser.Parse(method.Pattern, method.Options | RegexOptions.Compiled, method.Culture); // make sure Compiled is included to get all optimizations applied to it
RegexGenerator.Parser.cs (1)
180RegexOptions.Compiled |
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexFindOptimizations.cs (1)
115bool compiled = (options & RegexOptions.Compiled) != 0 && !dfa; // for now, we never generate code for NonBacktracking, so treat it as non-compiled
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexNode.cs (1)
400if ((rootNode.Options & RegexOptions.Compiled) != 0)
src\runtime\src\libraries\System.Text.RegularExpressions\src\System\Text\RegularExpressions\RegexOptions.cs (1)
104/// <see cref="Compiled"/> values. The use of this value with any other values results in an