HomeSort by relevance Sort by last modified time
    Searched refs:treeToUniqueIDMap (Results 1 - 6 of 6) sorted by null

  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTreeAdaptor.js 197 if ( !this.treeToUniqueIDMap ) {
198 this.treeToUniqueIDMap = {};
200 var prevID = this.treeToUniqueIDMap[node];
205 this.treeToUniqueIDMap[node] = ID;
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 48 protected IDictionary<object, int> treeToUniqueIDMap;
256 if (treeToUniqueIDMap == null) {
257 treeToUniqueIDMap = new Dictionary<object, int>();
260 if (treeToUniqueIDMap.TryGetValue(node, out id))
264 treeToUniqueIDMap[node] = id;
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java 43 protected Map<Object, Integer> treeToUniqueIDMap;
258 if ( treeToUniqueIDMap==null ) {
259 treeToUniqueIDMap = new HashMap<Object, Integer>();
261 Integer prevID = treeToUniqueIDMap.get(node);
266 treeToUniqueIDMap.put(node, ID);
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 51 protected IDictionary<object, int> treeToUniqueIDMap;
343 if ( treeToUniqueIDMap == null )
345 treeToUniqueIDMap = new Dictionary<object, int>();
348 if ( treeToUniqueIDMap.TryGetValue( node, out id ) )
352 treeToUniqueIDMap[node] = id;
  /external/antlr/runtime/ObjC/Framework/
BaseTreeAdaptor.h 33 UniqueIDMap *treeToUniqueIDMap;
179 @property (retain) UniqueIDMap *treeToUniqueIDMap;
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 15 protected var treeToUniqueIDMap:Dictionary;
199 if ( treeToUniqueIDMap==null ) {
200 treeToUniqueIDMap = new Dictionary();
202 if (treeToUniqueIDMap.hasOwnProperty(node)) {
203 return treeToUniqueIDMap[node];
207 treeToUniqueIDMap[node] = ID;

Completed in 341 milliseconds