OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tokensource
(Results
51 - 75
of
91
) sorted by null
1
2
3
4
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java
177
public TokenRewriteStream(
TokenSource
tokenSource
) {
178
super(
tokenSource
);
182
public TokenRewriteStream(
TokenSource
tokenSource
, int channel) {
183
super(
tokenSource
, channel);
Lexer.java
35
public abstract class Lexer extends BaseRecognizer implements
TokenSource
{
/external/antlr/antlr-3.4/runtime/C/include/
antlr3tokenstream.h
61
pANTLR3_COMMON_TOKEN (*nextToken)(struct ANTLR3_TOKEN_SOURCE_struct *
tokenSource
);
104
pANTLR3_TOKEN_SOURCE
tokenSource
;
151
pANTLR3_TOKEN_SOURCE
tokenSource
);
antlr3lexer.h
13
* implements. The
Tokensource
interface is called by a token consumer (such as
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonTokenStream.pm
9
use ANTLR::Runtime::
TokenSource
;
22
does => 'ANTLR::Runtime::
TokenSource
',