Uses of Class
org.antlr.v4.runtime.atn.ATN
Packages that use ATN
Package
Description
-
Uses of ATN in org.antlr.v4.analysis
Fields in org.antlr.v4.analysis declared as ATNConstructors in org.antlr.v4.analysis with parameters of type ATN -
Uses of ATN in org.antlr.v4.automata
Fields in org.antlr.v4.automata declared as ATNModifier and TypeFieldDescriptionprivate final ATN
TailEpsilonRemover._atn
final ATN
ParserATNFactory.atn
Methods in org.antlr.v4.automata that return ATNModifier and TypeMethodDescriptionATNFactory.createATN()
LexerATNFactory.createATN()
ParserATNFactory.createATN()
Methods in org.antlr.v4.automata with parameters of type ATNModifier and TypeMethodDescriptionstatic void
private static void
ATNOptimizer.optimizeSets
(Grammar g, ATN atn) private static void
ATNOptimizer.optimizeStates
(ATN atn) Constructors in org.antlr.v4.automata with parameters of type ATN -
Uses of ATN in org.antlr.v4.codegen.model
Constructors in org.antlr.v4.codegen.model with parameters of type ATNModifierConstructorDescriptionSerializedATN
(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 ATNModifier and TypeFieldDescriptionprotected final ATN
LexerInterpreter.atn
protected final ATN
ParserInterpreter.atn
private ATN
Parser.bypassAltsAtnCache
This field holds the deserializedATN
with bypass alternatives, created lazily upon first demand.Methods in org.antlr.v4.runtime that return ATNModifier and TypeMethodDescriptionLexerInterpreter.getATN()
ParserInterpreter.getATN()
abstract ATN
Recognizer.getATN()
Get theATN
used by the recognizer for prediction.Parser.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 ATNModifierConstructorDescriptionLexerInterpreter
(String grammarFileName, Collection<String> tokenNames, Collection<String> ruleNames, Collection<String> modeNames, ATN atn, CharStream input) Deprecated.LexerInterpreter
(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, Collection<String> channelNames, Collection<String> modeNames, ATN atn, CharStream input) LexerInterpreter
(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, Collection<String> modeNames, ATN atn, CharStream input) Deprecated.ParserInterpreter
(String grammarFileName, Collection<String> tokenNames, Collection<String> ruleNames, ATN atn, TokenStream input) Deprecated.ParserInterpreter
(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, ATN atn, TokenStream input) -
Uses of ATN in org.antlr.v4.runtime.atn
Fields in org.antlr.v4.runtime.atn declared as ATNModifier and TypeFieldDescriptionATNSerializer.atn
final ATN
ATNSimulator.atn
ATNState.atn
Which ATN are we in?final ATN
LL1Analyzer.atn
Methods in org.antlr.v4.runtime.atn that return ATNModifier and TypeMethodDescriptionATNDeserializer.deserialize
(char[] data) ATNDeserializer.deserialize
(int[] data) Methods in org.antlr.v4.runtime.atn with parameters of type ATNModifier and TypeMethodDescriptionprotected Transition
ATNDeserializer.edgeFactory
(ATN atn, int type, int src, int trg, int arg1, int arg2, int arg3, List<IntervalSet> sets) static PredictionContext
PredictionContext.fromRuleContext
(ATN atn, RuleContext outerContext) Convert aRuleContext
tree to aPredictionContext
graph.static IntegerList
ATNSerializer.getSerialized
(ATN atn) protected void
ATNDeserializer.markPrecedenceDecisions
(ATN atn) Analyze theStarLoopEntryState
states in the specified ATN to set theStarLoopEntryState.isPrecedenceDecision
field to the correct value.protected void
Constructors in org.antlr.v4.runtime.atn with parameters of type ATNModifierConstructorDescriptionATNSerializer
(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 -
Uses of ATN in org.antlr.v4.runtime.tree.xpath
Methods in org.antlr.v4.runtime.tree.xpath that return ATN -
Uses of ATN in org.antlr.v4.tool
Fields in org.antlr.v4.tool declared as ATNModifier and TypeFieldDescriptionGrammar.atn
The ATN that represents the grammar with edges labelled with tokens or epsilon.Methods in org.antlr.v4.tool that return ATNConstructors in org.antlr.v4.tool with parameters of type ATNModifierConstructorDescriptionGrammarParserInterpreter
(Grammar g, String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, ATN atn, TokenStream input) GrammarParserInterpreter
(Grammar g, ATN atn, TokenStream input)
ParserInterpreter(String, Vocabulary, Collection, ATN, TokenStream)
instead.