HomeSort by relevance Sort by last modified time
    Searched full:tokensource (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/antlr/antlr-3.4/runtime/C/doxygen/
changes31.dox 47 /// C macro TOKENSOURCE(lxr), which will expand to point at the token source interface. This MACRO
53 /// tstream = antlr3CommonTokenStreamSourceNew(ANTLR3_SIZE_HINT, TOKENSOURCE(lxr));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenStream.cs 34 /** <summary>A stream of tokens accessing tokens from a TokenSource</summary> */
68 ITokenSource TokenSource {
LegacyCommonTokenStream.cs 89 public LegacyCommonTokenStream(ITokenSource tokenSource)
91 this._tokenSource = tokenSource;
94 public LegacyCommonTokenStream(ITokenSource tokenSource, int channel)
95 : this(tokenSource) {
114 public virtual void SetTokenSource(ITokenSource tokenSource) {
115 this._tokenSource = tokenSource;
409 public virtual ITokenSource TokenSource {
417 return TokenSource.SourceName;
BufferedTokenStream.cs 79 public BufferedTokenStream(ITokenSource tokenSource) {
80 this._tokenSource = tokenSource;
83 public virtual ITokenSource TokenSource {
197 IToken t = TokenSource.NextToken();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenStream.cs 35 /** <summary>A stream of tokens accessing tokens from a TokenSource</summary> */
71 ITokenSource TokenSource
BufferedTokenStream.cs 82 public BufferedTokenStream(ITokenSource tokenSource)
84 this._tokenSource = tokenSource;
87 public virtual ITokenSource TokenSource
228 IToken t = TokenSource.NextToken();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenStream.java 32 /** A stream of tokens accessing tokens from a TokenSource */
59 public TokenSource getTokenSource();
TokenSource.java 43 public interface TokenSource {
  /external/smali/smali/src/main/java/org/jf/smali/
SmaliTestUtils.java 37 import org.antlr.runtime.TokenSource;
65 tokens = new CommonTokenStream((TokenSource)lexer);
Smali.java 37 import org.antlr.runtime.TokenSource;
157 CommonTokenStream tokens = new CommonTokenStream((TokenSource)lexer);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenStream`1.cs 41 ITokenSource<T> TokenSource
  /external/antlr/antlr-3.4/runtime/Perl5/
MANIFEST 43 lib/ANTLR/Runtime/TokenSource.pm
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 58 static void setTokenSource (pANTLR3_TOKEN_STREAM ts, pANTLR3_TOKEN_SOURCE tokenSource);
377 pANTLR3_COMMON_TOKEN teof = &(ts->tokenSource->eofToken);
397 pANTLR3_COMMON_TOKEN teof = &(ts->tokenSource->eofToken);
509 return ts->tokenSource;
514 pANTLR3_TOKEN_SOURCE tokenSource)
516 ts->tokenSource = tokenSource;
964 tok = tokenStream->tstream->tokenSource->nextToken(tokenStream->tstream->tokenSource);
1013 tok = tokenStream->tstream->tokenSource->nextToken(tokenStream->tstream->tokenSource)
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenSource.as 43 public interface TokenSource {
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 246 @brief A stream of tokens accessing tokens from a TokenSource
617 def __init__(self, tokenSource=None, channel=DEFAULT_CHANNEL):
619 @param tokenSource A TokenSource instance (usually a Lexer) to pull
629 self.tokenSource = tokenSource
660 return self.tokenSource.makeEOFToken()
663 def setTokenSource(self, tokenSource):
666 self.tokenSource = tokenSource
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTokenStream.h 34 id<ANTLRTokenSource> tokenSource;
56 @property (retain, getter=getTokenSource,setter=setTokenSource) id<ANTLRTokenSource> tokenSource;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTokenStream.h 34 id<ANTLRTokenSource> tokenSource;
56 @property (retain, getter=getTokenSource,setter=setTokenSource) id<ANTLRTokenSource> tokenSource;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h 34 id<ANTLRTokenSource> tokenSource;
56 @property (retain, getter=getTokenSource,setter=setTokenSource) id<ANTLRTokenSource> tokenSource;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 36 __strong id<ANTLRTokenSource> tokenSource;
58 @property (retain, getter=getTokenSource,setter=setTokenSource:) id<ANTLRTokenSource> tokenSource;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 114 proxy->grammarFileName = INPUT->tokenSource->strFactory->newStr8(INPUT->tokenSource->strFactory, (pANTLR3_UINT8)ctx->getGrammarFileName());
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
PsiBuilderTokenStream.java 40 import org.antlr.runtime.TokenSource;
76 @Override public TokenSource getTokenSource() {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/
.flexLibProperties 29 <classEntry path="org.antlr.runtime.TokenSource"/>
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTokenStream.java 137 public TokenSource getTokenSource() {
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2-sources.jar 
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCommonTokenStream.java 172 TokenSource lexer = // simulate input " x =34 ;\n"
173 new TokenSource() {

Completed in 847 milliseconds

12 3 4