Home
last modified time | relevance | path

Searched refs:uniqueRules (Results 1 – 3 of 3) sorted by relevance

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DProfiler.cs74 protected Dictionary<string, string> uniqueRules = new Dictionary<string, string>(); field in Antlr.Runtime.Debug.Profiler
103 uniqueRules[ruleName] = (grammarFileName + ":" + ruleName); in EnterRule()
477 stats.numUniqueRulesInvoked = uniqueRules.Count; in GetReport()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DProfiler.cs74 protected Dictionary<string, bool> uniqueRules = new Dictionary<string, bool>(); field in Antlr.Runtime.Debug.Profiler
106 uniqueRules.Add(grammarFileName + ":" + ruleName, true); in EnterRule()
524 stats.numUniqueRulesInvoked = uniqueRules.Count; in GetReport()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DProfiler.java129 protected Set<String> uniqueRules = new HashSet<String>(); field in Profiler
160 uniqueRules.add(grammarFileName+":"+ruleName); in enterRule()
529 stats.numUniqueRulesInvoked = uniqueRules.size(); in getReport()