Uses of Class
org.antlr.v4.runtime.atn.ATN
-
-
Uses of ATN in org.antlr.v4.analysis
Fields in org.antlr.v4.analysis declared as ATN Modifier and Type Field Description ATNLeftRecursionDetector. atnConstructors in org.antlr.v4.analysis with parameters of type ATN Constructor Description LeftRecursionDetector(Grammar g, ATN atn) -
Uses of ATN in org.antlr.v4.automata
Fields in org.antlr.v4.automata declared as ATN Modifier and Type Field Description private ATNTailEpsilonRemover. _atnATNParserATNFactory. atnMethods in org.antlr.v4.automata that return ATN Modifier and Type Method Description ATNATNFactory. createATN()ATNLexerATNFactory. createATN()ATNParserATNFactory. createATN()Methods in org.antlr.v4.automata with parameters of type ATN Modifier and Type Method Description static voidATNOptimizer. optimize(Grammar g, ATN atn)private static voidATNOptimizer. optimizeSets(Grammar g, ATN atn)private static voidATNOptimizer. optimizeStates(ATN atn)Constructors in org.antlr.v4.automata with parameters of type ATN Constructor Description TailEpsilonRemover(ATN atn) -
Uses of ATN in org.antlr.v4.codegen.model
Constructors in org.antlr.v4.codegen.model with parameters of type ATN Constructor Description SerializedATN(OutputModelFactory factory, ATN atn)SerializedJavaATN(OutputModelFactory factory, ATN atn) -
Uses of ATN in org.antlr.v4.runtime
Fields in org.antlr.v4.runtime declared as ATN Modifier and Type Field Description protected ATNLexerInterpreter. atnprotected ATNParserInterpreter. atnprivate ATNParser. bypassAltsAtnCacheThis field holds the deserializedATNwith bypass alternatives, created lazily upon first demand.Methods in org.antlr.v4.runtime that return ATN Modifier and Type Method Description ATNLexerInterpreter. getATN()ATNParserInterpreter. getATN()abstract ATNRecognizer. getATN()Get theATNused by the recognizer for prediction.ATNParser. getATNWithBypassAlts()The ATN with bypass alternatives is expensive to create so we create it lazily.Constructors in org.antlr.v4.runtime with parameters of type ATN Constructor Description LexerInterpreter(java.lang.String grammarFileName, java.util.Collection<java.lang.String> tokenNames, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)Deprecated.LexerInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> channelNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)LexerInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)Deprecated.ParserInterpreter(java.lang.String grammarFileName, java.util.Collection<java.lang.String> tokenNames, java.util.Collection<java.lang.String> ruleNames, ATN atn, TokenStream input)Deprecated.ParserInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, ATN atn, TokenStream input) -
Uses of ATN in org.antlr.v4.runtime.atn
Fields in org.antlr.v4.runtime.atn declared as ATN Modifier and Type Field Description ATNATNSerializer. atnATNATNSimulator. atnATNATNState. atnWhich ATN are we in?ATNLL1Analyzer. atnMethods in org.antlr.v4.runtime.atn that return ATN Modifier and Type Method Description ATNATNDeserializer. deserialize(char[] data)ATNATNDeserializer. deserialize(int[] data)Methods in org.antlr.v4.runtime.atn with parameters of type ATN Modifier and Type Method Description protected TransitionATNDeserializer. edgeFactory(ATN atn, int type, int src, int trg, int arg1, int arg2, int arg3, java.util.List<IntervalSet> sets)static PredictionContextPredictionContext. fromRuleContext(ATN atn, RuleContext outerContext)Convert aRuleContexttree to aPredictionContextgraph.static IntegerListATNSerializer. getSerialized(ATN atn)protected voidATNDeserializer. markPrecedenceDecisions(ATN atn)Analyze theStarLoopEntryStatestates in the specified ATN to set theStarLoopEntryState.isPrecedenceDecisionfield to the correct value.protected voidATNDeserializer. verifyATN(ATN atn)Constructors in org.antlr.v4.runtime.atn with parameters of type ATN Constructor Description ATNSerializer(ATN atn)ATNSimulator(ATN atn, PredictionContextCache sharedContextCache)LexerATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)LexerATNSimulator(Lexer recog, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)LL1Analyzer(ATN atn)ParserATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)Testing only!ParserATNSimulator(Parser parser, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache) -
Uses of ATN in org.antlr.v4.runtime.misc
Fields in org.antlr.v4.runtime.misc declared as ATN Modifier and Type Field Description (package private) ATNInterpreterDataReader.InterpreterData. atn -
Uses of ATN in org.antlr.v4.runtime.tree.xpath
Methods in org.antlr.v4.runtime.tree.xpath that return ATN Modifier and Type Method Description ATNXPathLexer. getATN() -
Uses of ATN in org.antlr.v4.tool
Fields in org.antlr.v4.tool declared as ATN Modifier and Type Field Description ATNGrammar. atnThe ATN that represents the grammar with edges labelled with tokens or epsilon.Methods in org.antlr.v4.tool that return ATN Modifier and Type Method Description ATNGrammar. getATN()Constructors in org.antlr.v4.tool with parameters of type ATN Constructor Description GrammarParserInterpreter(Grammar g, java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, ATN atn, TokenStream input)GrammarParserInterpreter(Grammar g, ATN atn, TokenStream input)
-