OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TreeNodeStream
(Results
1 - 25
of
41
) sorted by null
1
2
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeNodeStream.js
2
org.antlr.runtime.tree.
TreeNodeStream
= function() {};
4
org.antlr.lang.extend(org.antlr.runtime.tree.
TreeNodeStream
,
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedTreeNodeException.java
30
import org.antlr.runtime.tree.
TreeNodeStream
;
41
public MismatchedTreeNodeException(int expecting,
TreeNodeStream
input) {
RecognitionException.java
110
if ( input instanceof
TreeNodeStream
) {
124
TreeNodeStream
nodes = (
TreeNodeStream
)input;
171
else if ( input instanceof
TreeNodeStream
) {
172
TreeNodeStream
nodes = (
TreeNodeStream
)input;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedTreeNodeException.as
2
import org.antlr.runtime.tree.
TreeNodeStream
;
7
public function MismatchedTreeNodeException(expecting:int, input:
TreeNodeStream
) {
RecognitionException.as
30
import org.antlr.runtime.tree.
TreeNodeStream
;
110
if ( input is
TreeNodeStream
) {
124
var nodes:
TreeNodeStream
=
TreeNodeStream
(input);
171
else if ( input is
TreeNodeStream
) {
172
var nodes:
TreeNodeStream
=
TreeNodeStream
(input);
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestBufferedTreeNodeStream.java
34
import org.antlr.runtime.tree.
TreeNodeStream
;
40
public
TreeNodeStream
newStream(Object t) {
44
public String toTokenTypeString(
TreeNodeStream
stream) {
62
TreeNodeStream
stream = newStream(r0);
TestTreeNodeStream.java
39
public
TreeNodeStream
newStream(Object t) {
43
public String toTokenTypeString(
TreeNodeStream
stream) {
50
TreeNodeStream
stream = newStream(t);
67
TreeNodeStream
stream = newStream(t);
90
TreeNodeStream
stream = newStream(root);
107
TreeNodeStream
stream = newStream(root);
122
TreeNodeStream
stream = newStream(root);
136
TreeNodeStream
stream = newStream(t);
153
TreeNodeStream
stream = newStream(t);
181
TreeNodeStream
stream = newStream(r0)
[
all
...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeParser.java
31
import org.antlr.runtime.tree.
TreeNodeStream
;
48
public DebugTreeParser(
TreeNodeStream
input, DebugEventListener dbg, RecognizerSharedState state) {
53
public DebugTreeParser(
TreeNodeStream
input, RecognizerSharedState state) {
57
public DebugTreeParser(
TreeNodeStream
input, DebugEventListener dbg) {
DebugTreeNodeStream.java
31
import org.antlr.runtime.tree.
TreeNodeStream
;
38
public class DebugTreeNodeStream implements
TreeNodeStream
{
41
protected
TreeNodeStream
input;
47
public DebugTreeNodeStream(
TreeNodeStream
input,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as
39
protected var input:
TreeNodeStream
;
41
public function TreeParser(input:
TreeNodeStream
, state:RecognizerSharedState = null) {
43
treeNodeStream
= input;
54
public function set
treeNodeStream
(input:
TreeNodeStream
):void {
58
public function get
treeNodeStream
():
TreeNodeStream
{
67
return
TreeNodeStream
(input).LT(1);
114
throw new MismatchedTreeNodeException(ttype,
TreeNodeStream
(input));
131
var adaptor:TreeAdaptor =
TreeNodeStream
(e.input).treeAdaptor
[
all
...]
TreeNodeStream.as
33
public interface
TreeNodeStream
extends IntStream {
CommonErrorNode.as
52
badText =
TreeNodeStream
(input).toStringWithRange(start, stop);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java
34
public interface
TreeNodeStream
extends IntStream {
TreeParser.java
49
protected
TreeNodeStream
input;
51
public TreeParser(
TreeNodeStream
input) {
56
public TreeParser(
TreeNodeStream
input, RecognizerSharedState state) {
69
public void setTreeNodeStream(
TreeNodeStream
input) {
73
public
TreeNodeStream
getTreeNodeStream() {
82
return ((
TreeNodeStream
)input).LT(1);
92
TreeAdaptor adaptor = ((
TreeNodeStream
)e.input).getTreeAdaptor();
135
throw new MismatchedTreeNodeException(ttype, (
TreeNodeStream
)input);
152
TreeAdaptor adaptor = ((
TreeNodeStream
)e.input).getTreeAdaptor();
TreeFilter.java
86
public TreeFilter(
TreeNodeStream
input) {
89
public TreeFilter(
TreeNodeStream
input, RecognizerSharedState state) {
TreeRewriter.java
44
public TreeRewriter(
TreeNodeStream
input) {
47
public TreeRewriter(
TreeNodeStream
input, RecognizerSharedState state) {
CommonErrorNode.java
78
badText = ((
TreeNodeStream
)input).toString(start, stop);
CommonTreeNodeStream.java
37
public class CommonTreeNodeStream extends LookaheadStream<Object> implements
TreeNodeStream
{
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb
104
=begin rdoc ANTLR3::Debug::
TreeNodeStream
108
not already a Debug::
TreeNodeStream
.
111
class
TreeNodeStream
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js
27
* @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.
TreeNodeStream
|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
40
if ( input instanceof org.antlr.runtime.tree.
TreeNodeStream
) {
114
* @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.
TreeNodeStream
|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
172
else if ( this.input instanceof org.antlr.runtime.tree.
TreeNodeStream
) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py
117
from antlr3.tree import
TreeNodeStream
124
if isinstance(self.input,
TreeNodeStream
):
181
from antlr3.tree import
TreeNodeStream
186
elif isinstance(self.input,
TreeNodeStream
):
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java
41
public SimpleCTP(
TreeNodeStream
input) {
44
public SimpleCTP(
TreeNodeStream
input, RecognizerSharedState state) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java
41
public SimpleCTP(
TreeNodeStream
input) {
44
public SimpleCTP(
TreeNodeStream
input, RecognizerSharedState state) {
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursiveRuleAnalyzer.java
7
import org.antlr.runtime.tree.
TreeNodeStream
;
33
public LeftRecursiveRuleAnalyzer(
TreeNodeStream
input, Grammar g, String ruleName) {
AssignTokenTypesBehavior.java
33
import org.antlr.runtime.tree.
TreeNodeStream
;
Completed in 2048 milliseconds
1
2