Uses of Class
antlr.collections.impl.Vector
Packages that use Vector
-
Uses of Vector in antlr
Modifier and TypeFieldDescriptionprotected VectorAlternativeBlock.alternativesprotected VectorCodeGenerator.bitsetsUsedList of all bitsets that must be dumped.protected VectorExceptionSpec.handlers(package private) VectorRuleBlock.labeledElements(package private) VectorRuleSymbol.referencesprotected VectorGrammar.rulesprotected VectorSimpleTokenManager.vocabularyModifier and TypeMethodDescriptionAlternativeBlock.getAlternatives()SimpleTokenManager.getVocabulary()Get the token vocabulary (read-only).TokenManager.getVocabulary()Get the token vocabulary (read-only).static VectorTool.parseSeparatedList(String list, char separator) Parse a list such as "f1.g;f2.g;..." and return a Vector of the elements.Modifier and TypeMethodDescriptionstatic RuleBlockMakeGrammar.createNextTokenRule(Grammar g, Vector lexRules, String rname) Used to build nextToken() for the lexer.protected voidCppCodeGenerator.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).protected voidCSharpCodeGenerator.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).protected voidJavaCodeGenerator.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).protected voidPythonCodeGenerator.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).protected voidCppCodeGenerator.genBitsetsHeader(Vector bitsetList, int maxVocabulary) abstract StringCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.CppCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.CSharpCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.DiagnosticCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.DocBookCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.HTMLCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.JavaCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.PythonCodeGenerator.getASTCreateString(Vector v) Get a string for an expression to generate creation of an AST subtree.voidAlternativeBlock.setAlternatives(Vector v) -
Uses of Vector in antlr.collections.impl
Fields in antlr.collections.impl declared as VectorModifier and TypeFieldDescriptionprotected VectorIndexedVector.elements(package private) VectorVectorEnumeration.vector(package private) VectorVectorEnumerator.vectorMethods in antlr.collections.impl that return VectorModifier and TypeMethodDescriptionstatic VectorBitSet.getRanges(int[] elems) Find ranges in a set element array.Methods in antlr.collections.impl with parameters of type VectorModifier and TypeMethodDescriptionCreate a string representation where instead of integer elements, the ith element of vocabulary is displayed instead.Constructors in antlr.collections.impl with parameters of type VectorModifierConstructorDescription(package private)(package private) -
Uses of Vector in antlr.preprocessor
Fields in antlr.preprocessor declared as Vector