OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:treeToUniqueIDMap
(Results
1 - 11
of
11
) sorted by null
/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTreeAdaptor.java
43
protected Map
treeToUniqueIDMap
;
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/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/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTreeAdaptor.h
33
ANTLRUniqueIDMap *
treeToUniqueIDMap
;
37
@property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *
treeToUniqueIDMap
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTreeAdaptor.h
33
ANTLRUniqueIDMap *
treeToUniqueIDMap
;
37
@property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *
treeToUniqueIDMap
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTreeAdaptor.h
33
ANTLRUniqueIDMap *
treeToUniqueIDMap
;
37
@property (retain, getter=getTreeToUniqueIDMap, setter=setTreeToUniqueIDMap:) ANTLRUniqueIDMap *
treeToUniqueIDMap
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseTreeAdaptor.h
33
ANTLRUniqueIDMap *
treeToUniqueIDMap
;
179
@property (retain) ANTLRUniqueIDMap *
treeToUniqueIDMap
;
/external/antlr/antlr-3.4/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;
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
Completed in 1438 milliseconds