Home
last modified time | relevance | path

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

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DProfiler.cs104 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel); in EnterRule()
513 buf.Append(stats.maxRuleInvocationDepth); in ToString()
673 public int maxRuleInvocationDepth; field in Antlr.Runtime.Debug.Profiler.ProfileStats
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DProfiler.cs107 stats.maxRuleInvocationDepth = Math.Max(stats.maxRuleInvocationDepth, ruleLevel); in EnterRule()
564 buf.Append(stats.maxRuleInvocationDepth); in ToString()
735 public int maxRuleInvocationDepth; field in Antlr.Runtime.Debug.Profiler.ProfileStats
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DProfiler.java53 public int maxRuleInvocationDepth; field in Profiler.ProfileStats
161 stats.maxRuleInvocationDepth = Math.max(stats.maxRuleInvocationDepth, ruleLevel); in enterRule()
587 buf.append(stats.maxRuleInvocationDepth); in toString()