Home
last modified time | relevance | path

Searched refs:GetEnumerator (Results 1 – 5 of 5) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DSubList.cs160 public System.Collections.IEnumerator GetEnumerator() in GetEnumerator() method in Antlr.Runtime.JavaExtensions.SubList
165 .GetEnumerator(); in GetEnumerator()
193 IEnumerator IEnumerable.GetEnumerator() in IEnumerable.GetEnumerator()
195 return GetEnumerator(); in IEnumerable.GetEnumerator()
332 public IEnumerator<T> GetEnumerator() in GetEnumerator() method in Antlr.Runtime.JavaExtensions.SubList
334 return _source.Skip( _startIndex ).Take( Count ).GetEnumerator(); in GetEnumerator()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DHashList.cs271 public IEnumerator GetEnumerator() in GetEnumerator() method in Antlr.Runtime.Collections.HashList.KeyCollection
342 public IEnumerator GetEnumerator() in GetEnumerator() method in Antlr.Runtime.Collections.HashList.ValueCollection
383 public IDictionaryEnumerator GetEnumerator() in GetEnumerator() method in Antlr.Runtime.Collections.HashList
475 IEnumerator System.Collections.IEnumerable.GetEnumerator() in System.Collections.IEnumerable.GetEnumerator()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tools.pas174 function GetEnumerator: TList<T>.TEnumerator;
202 function GetEnumerator: TEnumerator<TPair<TKey, TValue>>;
305 function GetEnumerator: TEnumerator<TPair<TKey, TValue>>;
858 Result := GetEnumerator;
887 function TDictionary<TKey,TValue>.GetEnumerator: TPairEnumerator; in GetEnumerator() function
DAntlr.Runtime.Collections.pas119 function GetEnumerator: TEnumerator<TPair<TKey, TValue>>; in GetEnumerator() function
227 function THashList<TKey, TValue>.GetEnumerator: TEnumerator<TPair<TKey, TValue>>; in THashList() function
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DParseTreeBuilder.cs55 var enumerator = callStack.GetEnumerator(); in GetTree()