Uses of Class antlr.collections.impl.Vector

Uses in package antlr.collections.impl

Constructors with parameter type antlr.collections.impl.Vector

Fields of type antlr.collections.impl.Vector

Vector
Vector
Vector

Methods with parameter type antlr.collections.impl.Vector

String
BitSet.toString(String separator, Vector vocabulary)
Create a string representation where instead of integer elements, the ith element of vocabulary is displayed instead.

Methods with return type antlr.collections.impl.Vector

Vector
BitSet.getRanges(int[] elems)
Find ranges in a set element array.

Uses in package antlr.preprocessor

Fields of type antlr.collections.impl.Vector

Vector

Uses in package antlr

Fields of type antlr.collections.impl.Vector

Vector
Vector
List of all bitsets that must be dumped.
Vector
Vector
Vector
Vector
Vector

Methods with parameter type antlr.collections.impl.Vector

RuleBlock
MakeGrammar.createNextTokenRule(Grammar g, Vector lexRules, String rname)
Used to build nextToken() for the lexer.
void
CSharpCodeGenerator.genBitsets(Vector bitsetList, int maxVocabulary)
Generate all the bitsets to be used in the parser or lexer Generate the raw bitset data like "long _tokenSet1_data[] = {...};" and the BitSet object declarations like "BitSet _tokenSet1 = new BitSet(_tokenSet1_data);" Note that most languages do not support object initialization inside a class definition, so other code-generators may have to separate the bitset declarations from the initializations (e.g., put the initializations in the generated constructor instead).
void
JavaCodeGenerator.genBitsets(Vector bitsetList, int maxVocabulary)
Generate all the bitsets to be used in the parser or lexer Generate the raw bitset data like "long _tokenSet1_data[] = {...};" and the BitSet object declarations like "BitSet _tokenSet1 = new BitSet(_tokenSet1_data);" Note that most languages do not support object initialization inside a class definition, so other code-generators may have to separate the bitset declarations from the initializations (e.g., put the initializations in the generated constructor instead).
void
PythonCodeGenerator.genBitsets(Vector bitsetList, int maxVocabulary)
Generate all the bitsets to be used in the parser or lexer Generate the raw bitset data like "long _tokenSet1_data[] = {...}" and the BitSet object declarations like "BitSet _tokenSet1 = new BitSet(_tokenSet1_data)" Note that most languages do not support object initialization inside a class definition, so other code-generators may have to separate the bitset declarations from the initializations (e.g., put the initializations in the generated constructor instead).
void
CppCodeGenerator.genBitsets(Vector bitsetList, int maxVocabulary, String prefix)
Generate all the bitsets to be used in the parser or lexer Generate the raw bitset data like "long _tokenSet1_data[] = {...};" and the BitSet object declarations like "BitSet _tokenSet1 = new BitSet(_tokenSet1_data);" Note that most languages do not support object initialization inside a class definition, so other code-generators may have to separate the bitset declarations from the initializations (e.g., put the initializations in the generated constructor instead).
void
CppCodeGenerator.genBitsetsHeader(Vector bitsetList, int maxVocabulary)
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
String
Get a string for an expression to generate creation of an AST subtree.
void
String
Lookahead.toString(String separator, Vector vocab)

Methods with return type antlr.collections.impl.Vector

Vector
Vector
Get the token vocabulary (read-only).
Vector
Get the token vocabulary (read-only).
Vector
Tool.parseSeparatedList(String list, char separator)
Parse a list such as "f1.g;f2.g;..." and return a Vector of the elements.