Searched refs:globalMemory (Results 1 – 6 of 6) sorted by relevance
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | DebugTreeGrammarHelper.cs | 49 private IDictionary<string, BigInteger> globalMemory = new Dictionary<string, BigInteger>(); field in DebugTreeGrammar 65 IDictionary<string, BigInteger> globalMemory, in DebugTreeGrammar() argument 70 this.globalMemory = globalMemory; in DebugTreeGrammar() 108 if ( globalMemory.TryGetValue( name, out value ) && value != null ) in getValue()
|
D | ProfileTreeGrammarHelper.cs | 49 private IDictionary<string, BigInteger> globalMemory = new Dictionary<string, BigInteger>(); field in ProfileTreeGrammar 65 IDictionary<string, BigInteger> globalMemory, in ProfileTreeGrammar() argument 70 this.globalMemory = globalMemory; in ProfileTreeGrammar() 108 if ( globalMemory.TryGetValue( name, out value ) && value != null ) in getValue()
|
D | ProfileTreeGrammar.g3 | 59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; } 83 … ProfileTreeGrammar e = new ProfileTreeGrammar(funcRoot, functionDefinitions, globalMemory, p);
|
D | DebugTreeGrammar.g3 | 59 | ^('=' ID expr) { globalMemory[$ID.text] = $expr.value; } 83 … DebugTreeGrammar e = new DebugTreeGrammar(funcRoot, functionDefinitions, globalMemory, p);
|
D | DebugTreeGrammar.cs | 311 globalMemory[(ID2!=null?ID2.Text:null)] = expr3; in stat() 777 … DebugTreeGrammar e = new DebugTreeGrammar(funcRoot, functionDefinitions, globalMemory, p); in call()
|
D | ProfileTreeGrammar.cs | 316 globalMemory[(ID2!=null?ID2.Text:null)] = expr3; in stat() 782 … ProfileTreeGrammar e = new ProfileTreeGrammar(funcRoot, functionDefinitions, globalMemory, p); in call()
|