/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
D | SlimTokenStream.cs | 173 public IList<SlimToken> GetTokens() in GetTokens() method in Antlr.Runtime.FastTokenStream 182 public IList<SlimToken> GetTokens( int start, int stop ) in GetTokens() method in Antlr.Runtime.FastTokenStream 184 return GetTokens( start, stop, (BitSet)null ); in GetTokens() 193 public IList<SlimToken> GetTokens( int start, int stop, BitSet types ) in GetTokens() method in Antlr.Runtime.FastTokenStream 229 public IList<SlimToken> GetTokens( int start, int stop, IList<int> types ) in GetTokens() method in Antlr.Runtime.FastTokenStream 231 return GetTokens( start, stop, new BitSet( types ) ); in GetTokens() 234 public IList<SlimToken> GetTokens( int start, int stop, int ttype ) in GetTokens() method in Antlr.Runtime.FastTokenStream 236 return GetTokens( start, stop, BitSet.Of( ttype ) ); in GetTokens()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | BufferedTokenStream.cs | 317 public virtual List<IToken> GetTokens() in GetTokens() method in Antlr.Runtime.BufferedTokenStream 322 public virtual List<IToken> GetTokens(int start, int stop) in GetTokens() method in Antlr.Runtime.BufferedTokenStream 324 return GetTokens(start, stop, default(BitSet)); in GetTokens() 331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) in GetTokens() method in Antlr.Runtime.BufferedTokenStream 359 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) in GetTokens() method in Antlr.Runtime.BufferedTokenStream 361 return GetTokens(start, stop, new BitSet(types)); in GetTokens() 364 public virtual List<IToken> GetTokens(int start, int stop, int ttype) in GetTokens() method in Antlr.Runtime.BufferedTokenStream 366 return GetTokens(start, stop, BitSet.Of(ttype)); in GetTokens()
|
D | LegacyCommonTokenStream.cs | 250 public virtual IList<IToken> GetTokens() in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 259 public virtual IList<IToken> GetTokens( int start, int stop ) in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 261 return GetTokens( start, stop, (BitSet)null ); in GetTokens() 270 public virtual IList<IToken> GetTokens( int start, int stop, BitSet types ) in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 306 public virtual IList<IToken> GetTokens( int start, int stop, IList<int> types ) in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 308 return GetTokens( start, stop, new BitSet( types ) ); in GetTokens() 311 public virtual IList<IToken> GetTokens( int start, int stop, int ttype ) in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 313 return GetTokens( start, stop, BitSet.Of( ttype ) ); in GetTokens()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | BufferedTokenStream.cs | 279 public virtual List<IToken> GetTokens() { in GetTokens() method in Antlr.Runtime.BufferedTokenStream 283 public virtual List<IToken> GetTokens(int start, int stop) { in GetTokens() method in Antlr.Runtime.BufferedTokenStream 284 return GetTokens(start, stop, default(BitSet)); in GetTokens() 291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) { in GetTokens() method in Antlr.Runtime.BufferedTokenStream 315 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) { in GetTokens() method in Antlr.Runtime.BufferedTokenStream 316 return GetTokens(start, stop, new BitSet(types)); in GetTokens() 319 public virtual List<IToken> GetTokens(int start, int stop, int ttype) { in GetTokens() method in Antlr.Runtime.BufferedTokenStream 320 return GetTokens(start, stop, BitSet.Of(ttype)); in GetTokens()
|
D | LegacyCommonTokenStream.cs | 227 public virtual IList<IToken> GetTokens() { in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 234 public virtual IList<IToken> GetTokens(int start, int stop) { in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 235 return GetTokens(start, stop, (BitSet)null); in GetTokens() 244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) { in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 272 public virtual IList<IToken> GetTokens(int start, int stop, IList<int> types) { in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 273 return GetTokens(start, stop, new BitSet(types)); in GetTokens() 276 public virtual IList<IToken> GetTokens(int start, int stop, int ttype) { in GetTokens() method in Antlr.Runtime.LegacyCommonTokenStream 277 return GetTokens(start, stop, BitSet.Of(ttype)); in GetTokens()
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 965 function GetTokens: IList<IToken>; overload; 966 function GetTokens(const Start, Stop: Integer): IList<IToken>; overload; 972 function GetTokens(const Start, Stop: Integer; 975 function GetTokens(const Start, Stop: Integer; 978 function GetTokens(const Start, Stop, 2368 function GetTokens: IList<IToken>; overload; 2369 function GetTokens(const Start, Stop: Integer): IList<IToken>; overload; 2370 function GetTokens(const Start, Stop: Integer; 2372 function GetTokens(const Start, Stop: Integer; 2374 function GetTokens(const Start, Stop, [all …]
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | tokenize.py | 119 def GetTokens(source): function 281 for token in GetTokens(source):
|
D | ast.py | 1663 return AstBuilder(tokenize.GetTokens(source), filename)
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | tokenize.py | 119 def GetTokens(source): function 281 for token in GetTokens(source):
|
D | ast.py | 1676 return AstBuilder(tokenize.GetTokens(source), filename)
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
D | PreprocessorTests.cs | 51 List<IToken> tokens = tokenStream.GetTokens(); in TestEmptyComment()
|