Home
last modified time | relevance | path

Searched refs:setTokenTypeChannel (Results 1 – 9 of 9) sorted by relevance

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestInterpretedParsing.java67 tokens.setTokenTypeChannel(g.getTokenType("WS"), 99); in testSimpleParse()
102 tokens.setTokenTypeChannel(g.getTokenType("WS"), 99); in testMismatchedTokenError()
137 tokens.setTokenTypeChannel(g.getTokenType("WS"), 99); in testMismatchedSetError()
172 tokens.setTokenTypeChannel(g.getTokenType("WS"), 99); in testNoViableAltError()
DBaseTest.java542 public void setTokenTypeChannel(int ttype, int channel) { in setTokenTypeChannel() method in BaseTest.FilteringTokenStream
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DInterp.java58 public void setTokenTypeChannel(int ttype, int channel) { in setTokenTypeChannel() method in Interp.FilteringTokenStream
118 tokens.setTokenTypeChannel(lexer.getTokenType(tokenName), 99); in main()
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3tokenstream.h247 void (*setTokenTypeChannel) (struct ANTLR3_COMMON_TOKEN_STREAM_struct * tokenStream, member
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3tokenstream.c42 static void setTokenTypeChannel (pANTLR3_COMMON_TOKEN_STREAM cts, ANTLR3_UINT32 ttype, ANTLR3_…
288 stream->setTokenTypeChannel = setTokenTypeChannel; in antlr3CommonTokenStreamNew()
666 setTokenTypeChannel (pANTLR3_COMMON_TOKEN_STREAM tokenStream, ANTLR3_UINT32 ttype, ANTLR3_UINT32 ch… in setTokenTypeChannel() function
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DCommonTokenStream.js112 setTokenTypeChannel: function(ttype, channel) {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DLegacyCommonTokenStream.java166 public void setTokenTypeChannel(int ttype, int channel) { in setTokenTypeChannel() method in LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DCommonTokenStream.as151 public function setTokenTypeChannel(ttype:int, channel:int):void { method in org.antlr.runtime.CommonTokenStream
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dstreams.py761 def setTokenTypeChannel(self, ttype, channel): member in CommonTokenStream