A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
_text — Property in class org.antlr.runtime.CommonToken
We need to be able to change the text once in a while.
text — Property in class org.antlr.runtime.CommonToken
text — Property in class org.antlr.runtime.Lexer
Return the text matched so far for the current token or any text override.
text — Property in class org.antlr.runtime.RecognizerSharedState
You can set the text for the current token to override what is in the input char buffer.
text — Property in interface org.antlr.runtime.Token
Get the text of the token
text — Property in class org.antlr.runtime.tree.BaseTree
text — Property in class org.antlr.runtime.tree.CommonTree
text — Property in interface org.antlr.runtime.tree.Tree
toArray() — Method in class org.antlr.runtime.BitSet
toDebugString() — Method in class org.antlr.runtime.TokenRewriteStream
toDebugStringWithRange(start, end) — Method in class org.antlr.runtime.TokenRewriteStream
token — Property in class org.antlr.runtime.RecognitionException
The current Token when an error occurred.
token — Property in class org.antlr.runtime.RecognizerSharedState
The goal of all lexer rules/methods is to create a token object.
_token — Property in class org.antlr.runtime.tree.CommonTree
A single token is the payload
token — Property in class org.antlr.runtime.tree.CommonTree
Token — Interface in package org.antlr.runtime
TokenConstants — Class in package org.antlr.runtime
tokenIndex — Property in class org.antlr.runtime.CommonToken
tokenIndex — Property in interface org.antlr.runtime.Token
An index from 0..n-1 of the token object in the input stream.
tokenNames — Property in class org.antlr.runtime.BaseRecognizer
Used to print out token names like ID during debugging and error reporting.
TokenRewriteStream — Class in package org.antlr.runtime
Useful for dumping out the input stream after doing some augmentation or other manipulations.
TokenRewriteStream(tokenSource:org.antlr.runtime:TokenSource, channel) — Constructor in class org.antlr.runtime.TokenRewriteStream
tokens — Property in class org.antlr.runtime.CommonTokenStream
Record every single token pulled from the source so we can reproduce chunks of it later.
tokens — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
IF this tree (root) was created from a token stream, track it.
_tokenSource — Property in class org.antlr.runtime.CommonTokenStream
tokenSource — Property in class org.antlr.runtime.CommonTokenStream
tokenSource — Property in interface org.antlr.runtime.TokenStream
Where is this stream pulling tokens from? This is not the name, but the object that provides Token objects.
TokenSource — Interface in package org.antlr.runtime
A source of tokens must provide a sequence of tokens via nextToken() and also must reveal it's source of characters; CommonToken's text is computed from a CharStream; it only store indices into the char stream.
tokenStartCharIndex — Property in class org.antlr.runtime.RecognizerSharedState
What character index in the stream did the current token start at? Needed, for example, to get the text for current token.
tokenStartCharPositionInLine — Property in class org.antlr.runtime.RecognizerSharedState
The character position of first character within the line
tokenStartIndex — Property in class org.antlr.runtime.tree.BaseTree
tokenStartIndex — Property in class org.antlr.runtime.tree.CommonTree
tokenStartIndex — Property in interface org.antlr.runtime.tree.Tree
What is the smallest token index (indexing from 0) for this node and its children?
tokenStartLine — Property in class org.antlr.runtime.RecognizerSharedState
The line on which the first character of the token resides
tokenStopIndex — Property in class org.antlr.runtime.tree.BaseTree
tokenStopIndex — Property in class org.antlr.runtime.tree.CommonTree
tokenStopIndex — Property in interface org.antlr.runtime.tree.Tree
What is the largest token index (indexing from 0) for this node and its children?
tokenStream — Property in class org.antlr.runtime.Parser
tokenStream — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
tokenStream — Property in interface org.antlr.runtime.tree.TreeNodeStream
If the tree associated with this stream was created from a TokenStream, you can specify it here.
TokenStream — Interface in package org.antlr.runtime
A stream of tokens accessing tokens from a TokenSource
toOriginalString() — Method in class org.antlr.runtime.TokenRewriteStream
toOriginalStringWithRange(start, end) — Method in class org.antlr.runtime.TokenRewriteStream
toPackedArray() — Method in class org.antlr.runtime.BitSet
toString() — Method in class org.antlr.runtime.BitSet
toString() — Method in class org.antlr.runtime.CommonToken
toString() — Method in class org.antlr.runtime.CommonTokenStream
toString() — Method in class org.antlr.runtime.MismatchedRangeException
toString() — Method in class org.antlr.runtime.MismatchedSetException
toString() — Method in class org.antlr.runtime.MismatchedTokenException
toString() — Method in class org.antlr.runtime.MismatchedTreeNodeException
toString() — Method in class org.antlr.runtime.MissingTokenException
toString() — Method in class org.antlr.runtime.NoViableAltException
toString() — Method in class org.antlr.runtime.TokenRewriteStream
toString() — Method in class org.antlr.runtime.UnwantedTokenException
toString() — Method in class org.antlr.runtime.tree.CommonErrorNode
toString() — Method in class org.antlr.runtime.tree.CommonTree
toString() — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
Used for testing, just return the token type stream
toStringFromTokens(tokenNames) — Method in class org.antlr.runtime.BitSet
toStrings(tokens) — Method in class org.antlr.runtime.BaseRecognizer
A convenience method for use most often with template rewrites.
toStringTree() — Method in class org.antlr.runtime.tree.BaseTree
Print out a whole tree not just a node
toStringTree() — Method in interface org.antlr.runtime.tree.Tree
toStringWithRange(start, stop) — Method in class org.antlr.runtime.CommonTokenStream
toStringWithRange(start, end) — Method in class org.antlr.runtime.TokenRewriteStream
toStringWithRange(start, stop) — Method in interface org.antlr.runtime.TokenStream
Return the text of all tokens from start to stop, inclusive.
toStringWithRange(start, stop) — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
toStringWithRange(start, stop) — Method in interface org.antlr.runtime.tree.TreeNodeStream
Return the text of all nodes from start to stop, inclusive.
toStringWithRangeAndProgram(start, end, programName) — Method in class org.antlr.runtime.TokenRewriteStream
toStringWithTokenRange(start:org.antlr.runtime:Token, stop:org.antlr.runtime:Token) — Method in class org.antlr.runtime.CommonTokenStream
toStringWithTokenRange(start:org.antlr.runtime:Token, stop:org.antlr.runtime:Token) — Method in interface org.antlr.runtime.TokenStream
Because the user is not required to use a token with an index stored in it, we must provide a means for two token objects themselves to indicate the start/end location.
toTokenString(start, stop) — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
Debugging
toTree(el) — Method in class org.antlr.runtime.tree.RewriteRuleElementStream
Ensure stream emits trees; tokens must be converted to AST nodes.
toTree(el) — Method in class org.antlr.runtime.tree.RewriteRuleNodeStream
toTree(el) — Method in class org.antlr.runtime.tree.RewriteRuleTokenStream
Don't convert to a tree unless they explicitly call nextTree.
traceIn(ruleName, ruleIndex) — Method in class org.antlr.runtime.Lexer
traceIn(ruleName, ruleIndex) — Method in class org.antlr.runtime.Parser
traceIn(ruleName, ruleIndex) — Method in class org.antlr.runtime.tree.TreeParser
traceInSymbol(ruleName, ruleIndex, inputSymbol) — Method in class org.antlr.runtime.BaseRecognizer
traceOut(ruleName, ruleIndex) — Method in class org.antlr.runtime.Lexer
traceOut(ruleName, ruleIndex) — Method in class org.antlr.runtime.Parser
traceOut(ruleName, ruleIndex) — Method in class org.antlr.runtime.tree.TreeParser
traceOutSymbol(ruleName, ruleIndex, inputSymbol) — Method in class org.antlr.runtime.BaseRecognizer
transition — Property in class org.antlr.runtime.DFA
trappedException — Property in class org.antlr.runtime.tree.CommonErrorNode
tree — Property in class org.antlr.runtime.ParserRuleReturnScope
Has a value potentially if output=AST;
tree — Property in class org.antlr.runtime.RuleReturnScope
Has a value potentially if output=AST;
tree — Property in class org.antlr.runtime.tree.TreeRuleReturnScope
Has a value potentially if output=AST;
Tree — Interface in package org.antlr.runtime.tree
What does a tree look like? ANTLR has a number of support classes such as CommonTreeNodeStream that work on these kinds of trees.
treeAdaptor — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
treeAdaptor — Property in interface org.antlr.runtime.tree.TreeNodeStream
What adaptor can tell me how to interpret/navigate nodes and trees.
TreeAdaptor — Interface in package org.antlr.runtime.tree
How to create and navigate trees.
TreeConstants — Class in package org.antlr.runtime.tree
treeNodeStream — Property in class org.antlr.runtime.tree.TreeParser
TreeNodeStream — Interface in package org.antlr.runtime.tree
A stream of tree nodes, accessing nodes from a tree of some kind
TreeParser — Class in package org.antlr.runtime.tree
A parser for a stream of tree nodes.
TreeParser(input:org.antlr.runtime.tree:TreeNodeStream, state:org.antlr.runtime:RecognizerSharedState) — Constructor in class org.antlr.runtime.tree.TreeParser
TreeRuleReturnScope — Class in package org.antlr.runtime.tree
This is identical to the ParserRuleReturnScope except that the start property is a tree nodes not Token object when you are parsing trees.
treeSource — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
treeSource — Property in interface org.antlr.runtime.tree.TreeNodeStream
Where is this stream pulling nodes from? This is not the name, but the object that provides node objects.
treeToUniqueIDMap — Property in class org.antlr.runtime.tree.BaseTreeAdaptor
System.identityHashCode() is not always unique; we have to track ourselves.
_type — Property in class org.antlr.runtime.CommonToken
type — Property in class org.antlr.runtime.CommonToken
type — Property in class org.antlr.runtime.RecognizerSharedState
The token type for the current token
type — Property in interface org.antlr.runtime.Token
type — Property in class org.antlr.runtime.tree.BaseTree
type — Property in class org.antlr.runtime.tree.CommonTree
type — Property in interface org.antlr.runtime.tree.Tree
Return a token type; needed for tree parsing
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z