Searched defs:tokenTypeToStreamIndexesMap (Results 1 - 2 of 2) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeWizard.cs138 protected IDictionary<int, IList<int>> tokenTypeToStreamIndexesMap; field in class:Antlr.Runtime.Tree.TreeWizard
533 * Given a node, add this to the reverse index tokenTypeToStreamIndexesMap.
561 if ( tokenTypeToStreamIndexesMap == null )
563 tokenTypeToStreamIndexesMap = new Dictionary<int, IList<int>>(); // first indexing op
573 if ( !tokenTypeToStreamIndexesMap.TryGetValue( tokenType, out indexes ) || indexes == null )
577 tokenTypeToStreamIndexesMap[tokenType] = indexes;
633 if ( tokenTypeToStreamIndexesMap == null )
639 if ( !tokenTypeToStreamIndexesMap.TryGetValue( tokenType, out indexes ) || indexes == null )
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeWizard.cs156 protected IDictionary<int, IList<int>> tokenTypeToStreamIndexesMap; field in class:Antlr.Runtime.Tree.TreeWizard
610 * Given a node, add this to the reverse index tokenTypeToStreamIndexesMap.
638 if ( tokenTypeToStreamIndexesMap == null )
640 tokenTypeToStreamIndexesMap = new Dictionary<int, IList<int>>(); // first indexing op
650 if ( !tokenTypeToStreamIndexesMap.TryGetValue( tokenType, out indexes ) || indexes == null )
654 tokenTypeToStreamIndexesMap[tokenType] = indexes;
710 if ( tokenTypeToStreamIndexesMap == null )
716 if ( !tokenTypeToStreamIndexesMap.TryGetValue( tokenType, out indexes ) || indexes == null )

Completed in 56 milliseconds