OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cstream
(Results
1 - 25
of
99
) sorted by null
1
2
3
4
/external/antlr/antlr-3.4/runtime/Python/tests/
t023scopes.py
12
cStream
= antlr3.StringStream('foobar')
13
lexer = self.getLexer(
cStream
)
t030specialStates.py
12
cStream
= antlr3.StringStream('foo')
13
lexer = self.getLexer(
cStream
)
20
cStream
= antlr3.StringStream('foo name1')
21
lexer = self.getLexer(
cStream
)
28
cStream
= antlr3.StringStream('bar name1')
29
lexer = self.getLexer(
cStream
)
37
cStream
= antlr3.StringStream('bar name1 name2')
38
lexer = self.getLexer(
cStream
)
t031emptyAlt.py
12
cStream
= antlr3.StringStream('foo')
13
lexer = self.getLexer(
cStream
)
t045dfabug.py
11
cStream
= antlr3.StringStream("public fooze")
12
lexer = self.getLexer(
cStream
)
t022scopes.py
26
cStream
= antlr3.StringStream('foobar')
27
lexer = self.getLexer(
cStream
)
34
cStream
= antlr3.StringStream('foobar')
35
lexer = self.getLexer(
cStream
)
47
cStream
= antlr3.StringStream('foobar')
48
lexer = self.getLexer(
cStream
)
55
cStream
= antlr3.StringStream(
64
lexer = self.getLexer(
cStream
)
76
cStream
= antlr3.StringStream(
86
lexer = self.getLexer(
cStream
)
[
all
...]
t013parser.py
11
cStream
= antlr3.StringStream('foobar')
12
lexer = self.getLexer(
cStream
)
22
cStream
= antlr3.StringStream('')
23
lexer = self.getLexer(
cStream
)
t021hoist.py
14
cStream
= antlr3.StringStream('enum')
15
lexer = self.getLexer(
cStream
)
25
cStream
= antlr3.StringStream('enum')
26
lexer = self.getLexer(
cStream
)
t032subrulePredict.py
21
cStream
= antlr3.StringStream(
25
lexer = self.getLexer(
cStream
)
33
cStream
= antlr3.StringStream(
37
lexer = self.getLexer(
cStream
)
t014parser.py
11
cStream
= antlr3.StringStream('var foobar; gnarz(); var blupp; flupp ( ) ;')
12
lexer = self.getLexer(
cStream
)
27
cStream
= antlr3.StringStream('var; foo();')
28
lexer = self.getLexer(
cStream
)
41
cStream
= antlr3.StringStream('var foobar(); gnarz();')
42
lexer = self.getLexer(
cStream
)
57
cStream
= antlr3.StringStream('gnarz(; flupp();')
58
lexer = self.getLexer(
cStream
)
t016actions.py
11
cStream
= antlr3.StringStream("int foo;")
12
lexer = self.getLexer(
cStream
)
t024finally.py
12
cStream
= antlr3.StringStream('foobar')
13
lexer = self.getLexer(
cStream
)
t050decorate.py
11
cStream
= antlr3.StringStream('foobar')
12
lexer = self.getLexer(
cStream
)
t017parser.py
24
cStream
= antlr3.StringStream("int foo;")
25
lexer = self.getLexer(
cStream
)
34
cStream
= antlr3.StringStream('int foo() { 1+2 }')
35
lexer = self.getLexer(
cStream
)
46
cStream
= antlr3.StringStream('int foo() { 1+; 1+2 }')
47
lexer = self.getLexer(
cStream
)
t018llstar.py
16
cStream
= antlr3.StringStream(open(inputPath).read())
17
lexer = self.getLexer(
cStream
)
59
##
cStream
= antlr3.StringStream(input)
60
## lexer = Lexer(
cStream
)
73
## print "%s at %d:%d" % (exc,
cStream
.line,
cStream
.charPositionInLine)
t027eof.py
13
cStream
= antlr3.StringStream(' ')
14
lexer = self.getLexer(
cStream
)
t033backtracking.py
22
cStream
= antlr3.StringStream('int a;')
24
lexer = self.getLexer(
cStream
)
t034tokenLabelPropertyRef.py
30
cStream
= antlr3.StringStream(' a')
32
lexer = self.getLexer(
cStream
)
t038lexerRuleLabel.py
21
cStream
= antlr3.StringStream('a 2')
23
lexer = self.getLexer(
cStream
)
t040bug80.py
21
cStream
= antlr3.StringStream('defined')
22
lexer = self.getLexer(
cStream
)
t043synpred.py
30
cStream
= antlr3.StringStream(' +foo>')
31
lexer = self.getLexer(
cStream
)
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t022scopes.html
28
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foobar"),
29
lexer = new t022scopesLexer(
cstream
),
38
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foobar"),
39
lexer = new t022scopesLexer(
cstream
),
52
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foobar"),
53
lexer = new t022scopesLexer(
cstream
),
69
var
cstream
= new org.antlr.runtime.ANTLRStringStream(xinput),
70
lexer = new t022scopesLexer(
cstream
),
90
var
cstream
= new org.antlr.runtime.ANTLRStringStream(xinput),
91
lexer = new t022scopesLexer(
cstream
),
[
all
...]
t030specialStates.html
26
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foo"),
27
lexer = new t030specialStatesLexer(
cstream
),
35
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foo name1"),
36
lexer = new t030specialStatesLexer(
cstream
),
44
var
cstream
= new org.antlr.runtime.ANTLRStringStream("bar name1"),
45
lexer = new t030specialStatesLexer(
cstream
),
54
var
cstream
= new org.antlr.runtime.ANTLRStringStream("bar name1 name2"),
55
lexer = new t030specialStatesLexer(
cstream
),
t013parser.html
18
var
cstream
= new org.antlr.runtime.ANTLRStringStream("foobar"),
19
lexer = new t013parserLexer(
cstream
),
29
var
cstream
= new org.antlr.runtime.ANTLRStringStream(""),
30
lexer = new t013parserLexer(
cstream
),
t021hoist.html
19
var
cstream
= new org.antlr.runtime.ANTLRStringStream("enum"),
20
lexer = new t021hoistLexer(
cstream
),
31
var
cstream
= new org.antlr.runtime.ANTLRStringStream("enum"),
32
lexer = new t021hoistLexer(
cstream
),
t017parser.html
29
var
cstream
= new org.antlr.runtime.ANTLRStringStream("int foo;"),
30
lexer = new t017parserLexer(
cstream
),
39
var
cstream
= new org.antlr.runtime.ANTLRStringStream("int foo() { 1+2 }");
40
lexer = new t017parserLexer(
cstream
),
50
var
cstream
= new org.antlr.runtime.ANTLRStringStream("int foo() { 1+; 1+2 }"),
51
lexer = new t017parserLexer(
cstream
),
Completed in 361 milliseconds
1
2
3
4