Searched defs:treeToUniqueIDMap (Results 1 - 8 of 8) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBaseTreeAdaptor.h33 ANTLRUniqueIDMap *treeToUniqueIDMap; variable
179 @property (retain) ANTLRUniqueIDMap *treeToUniqueIDMap; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBaseTreeAdaptor.h33 ANTLRUniqueIDMap *treeToUniqueIDMap; variable
37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBaseTreeAdaptor.h33 ANTLRUniqueIDMap *treeToUniqueIDMap; variable
37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBaseTreeAdaptor.h33 ANTLRUniqueIDMap *treeToUniqueIDMap; variable
37 @property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *treeToUniqueIDMap; variable
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs48 protected IDictionary<object, int> treeToUniqueIDMap; field in class:Antlr.Runtime.Tree.BaseTreeAdaptor
256 if (treeToUniqueIDMap == null) {
257 treeToUniqueIDMap = new Dictionary<object, int>();
260 if (treeToUniqueIDMap.TryGetValue(node, out id))
264 treeToUniqueIDMap[node] = id;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTreeAdaptor.cs51 protected IDictionary<object, int> treeToUniqueIDMap; field in class:Antlr.Runtime.Tree.BaseTreeAdaptor
343 if ( treeToUniqueIDMap == null )
345 treeToUniqueIDMap = new Dictionary<object, int>();
348 if ( treeToUniqueIDMap.TryGetValue( node, out id ) )
352 treeToUniqueIDMap[node] = id;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.java43 protected Map treeToUniqueIDMap; field in class:BaseTreeAdaptor
238 if ( treeToUniqueIDMap==null ) {
239 treeToUniqueIDMap = new HashMap();
241 Integer prevID = (Integer)treeToUniqueIDMap.get(node);
246 treeToUniqueIDMap.put(node, new Integer(ID));
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 260 milliseconds