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  
c — Property in class org.antlr.runtime.RecognitionException
The current char when an error occurred.
calls — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
Stack of indexes used for push/pop calls
catOpText(a, b) — Method in class org.antlr.runtime.TokenRewriteStream
_channel — Property in class org.antlr.runtime.CommonToken
channel — Property in class org.antlr.runtime.CommonToken
channel — Property in class org.antlr.runtime.CommonTokenStream
Skip tokens on any channel but this one; this is how we skip whitespace...
channel — Property in class org.antlr.runtime.RecognizerSharedState
The channel number for the current token
channel — Property in interface org.antlr.runtime.Token
channelOverrideMap — Property in class org.antlr.runtime.CommonTokenStream
Map to override some Tokens' channel numbers
charIndex — Property in class org.antlr.runtime.Lexer
What is the index of the current character of lookahead?
_charPositionInLine — Property in class org.antlr.runtime.ANTLRStringStream
The index of the character relative to the beginning of the line 0..n-1
charPositionInLine — Property in class org.antlr.runtime.ANTLRStringStream
charPositionInLine — Property in interface org.antlr.runtime.CharStream
The index of the character relative to the beginning of the line 0..n-1
charPositionInLine — Property in class org.antlr.runtime.CharStreamState
What char position 0..n-1 in line is scanner before processing buffer[p]?
_charPositionInLine — Property in class org.antlr.runtime.CommonToken
charPositionInLine — Property in class org.antlr.runtime.CommonToken
charPositionInLine — Property in class org.antlr.runtime.Lexer
charPositionInLine — Property in class org.antlr.runtime.RecognitionException
charPositionInLine — Property in interface org.antlr.runtime.Token
The index of the first character relative to the beginning of the line 0..n-1
charPositionInLine — Property in class org.antlr.runtime.tree.BaseTree
charPositionInLine — Property in class org.antlr.runtime.tree.CommonTree
charPositionInLine — Property in interface org.antlr.runtime.tree.Tree
charStream — Property in class org.antlr.runtime.Lexer
CharStream — Interface in package org.antlr.runtime
A source of characters for an ANTLR lexer
CharStreamConstants — Class in package org.antlr.runtime
CharStreamState — Class in package org.antlr.runtime
When walking ahead with cyclic DFA or for syntactic predicates, we need to record the state of the input stream (char index, line, etc...) so that we can rewind the state after scanning ahead.
childCount — Property in class org.antlr.runtime.tree.BaseTree
childCount — Property in interface org.antlr.runtime.tree.Tree
childIndex — Property in class org.antlr.runtime.tree.BaseTree
BaseTree doesn't track child indexes.
_childIndex — Property in class org.antlr.runtime.tree.CommonTree
What index is this node in the child list? Range: 0..n-1
childIndex — Property in class org.antlr.runtime.tree.CommonTree
childIndex — Property in interface org.antlr.runtime.tree.Tree
This node is what child index? 0..n-1
_children — Property in class org.antlr.runtime.tree.BaseTree
children — Property in class org.antlr.runtime.tree.BaseTree
Get the children internal List; note that if you directly mess with the list, do so at your own risk.
clone() — Method in class org.antlr.runtime.BitSet
cloneToken(oldToken:org.antlr.runtime:Token) — Static method in class org.antlr.runtime.CommonToken
combineFollows(exact) — Method in class org.antlr.runtime.BaseRecognizer
CommonErrorNode — Class in package org.antlr.runtime.tree
CommonErrorNode(input:org.antlr.runtime:TokenStream, start:org.antlr.runtime:Token, stop:org.antlr.runtime:Token, e:org.antlr.runtime:RecognitionException) — Constructor in class org.antlr.runtime.tree.CommonErrorNode
CommonToken — Class in package org.antlr.runtime
CommonToken(type, text) — Constructor in class org.antlr.runtime.CommonToken
CommonTokenStream — Class in package org.antlr.runtime
The most common stream of tokens is one where every token is buffered up and tokens are prefiltered for a certain channel (the parser will only see these tokens and cannot change the filter channel number during the parse).
CommonTokenStream(tokenSource:org.antlr.runtime:TokenSource, channel) — Constructor in class org.antlr.runtime.CommonTokenStream
CommonTree — Class in package org.antlr.runtime.tree
A tree node that is wrapper for a Token object.
CommonTree(node:org.antlr.runtime.tree:CommonTree) — Constructor in class org.antlr.runtime.tree.CommonTree
CommonTreeAdaptor — Class in package org.antlr.runtime.tree
A TreeAdaptor that works with any Tree implementation.
CommonTreeNodeStream — Class in package org.antlr.runtime.tree
A buffered stream of tree nodes.
CommonTreeNodeStream(tree, adaptor:org.antlr.runtime.tree:TreeAdaptor, initialBufferSize) — Constructor in class org.antlr.runtime.tree.CommonTreeNodeStream
computeContextSensitiveRuleFOLLOW() — Method in class org.antlr.runtime.BaseRecognizer
Compute the context-sensitive FOLLOW set for current rule.
computeErrorRecoverySet() — Method in class org.antlr.runtime.BaseRecognizer
consume() — Method in class org.antlr.runtime.ANTLRStringStream
consume() — Method in class org.antlr.runtime.CommonTokenStream
Move the input pointer to the next incoming token.
consume() — Method in interface org.antlr.runtime.IntStream
consume() — Method in class org.antlr.runtime.tree.CommonTreeNodeStream
consumeUntil(input:org.antlr.runtime:IntStream, bitSet:org.antlr.runtime:BitSet) — Method in class org.antlr.runtime.BaseRecognizer
Consume tokens until one matches the given token set
consumeUntilToken(input:org.antlr.runtime:IntStream, tokenType) — Method in class org.antlr.runtime.BaseRecognizer
create(... rest) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
create(... rest) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Private method used by generated code.
createFromStream(input:org.antlr.runtime:CharStream, type, channel, start, stop) — Static method in class org.antlr.runtime.CommonToken
createFromToken(tokenType, fromToken:org.antlr.runtime:Token, text) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
createFromToken(t:org.antlr.runtime:Token) — Static method in class org.antlr.runtime.tree.CommonTree
createFromToken(tokenType, fromToken:org.antlr.runtime:Token, text) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Create a new node derived from a token, with a new token type.
createFromType(tokenType, text) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
createFromType(tokenType, text) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Create a new node derived from a token, with a new token type.
createToken(fromToken:org.antlr.runtime:Token) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
Tell me how to create a token for use with imaginary token nodes.
createToken(fromToken:org.antlr.runtime:Token) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
Tell me how to create a token for use with imaginary token nodes.
createTokenFromType(tokenType, text) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
Tell me how to create a token for use with imaginary token nodes.
createTokenFromType(tokenType, text) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
Tell me how to create a token for use with imaginary token nodes.
createWithPayload(payload:org.antlr.runtime:Token) — Method in class org.antlr.runtime.tree.BaseTreeAdaptor
createWithPayload(payload:org.antlr.runtime:Token) — Method in class org.antlr.runtime.tree.CommonTreeAdaptor
createWithPayload(payload:org.antlr.runtime:Token) — Method in interface org.antlr.runtime.tree.TreeAdaptor
Create a tree node from Token object; for CommonTree type trees, then the token just becomes the payload.
currentSymbol — Property in class org.antlr.runtime.tree.CommonTreeNodeStream
cursor — Property in class org.antlr.runtime.tree.RewriteRuleElementStream
Cursor 0..n-1.
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