HomeSort by relevance Sort by last modified time
    Searched full:tokenstream (Results 51 - 75 of 177) sorted by null

1 23 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs 87 if ( TokenStream == null )
90 return TokenStream.SourceName;
94 public virtual ITokenStream TokenStream
ITreeNodeStream.cs 59 * This is analogus to the LT() method of the TokenStream, but this
77 * If the tree associated with this stream was created from a TokenStream,
83 ITokenStream TokenStream
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 83 public virtual ITokenStream TokenStream
87 return input.TokenStream;
202 return TokenStream.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 58 * This is analogus to the LT() method of the TokenStream, but this
76 * If the tree associated with this stream was created from a TokenStream,
82 ITokenStream TokenStream
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
__init__.py 42 A Parser needs a TokenStream as input (which in turn is usually fed by a
45 - CommonTokenStream: A basic and most commonly used TokenStream
58 A Lexer emits Token objects which are usually buffered by a TokenStream. A
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 92 istringstream tokenStream(s);
95 return vector<string>(istream_iterator<string>(tokenStream),
102 while (std::getline(tokenStream, token, delim))
  /external/smali/smali/src/test/java/
LexerTest.java 165 CommonTokenStream tokenStream = new CommonTokenStream(lexer);
166 tokenStream.fill();
167 List tokens = tokenStream.getTokens();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRUnbufferedCommonTreeNodeStream.m 40 @synthesize tokenStream;
142 return tokenStream;
147 if (tokenStream != aTokenStream) {
148 [tokenStream release];
150 tokenStream = aTokenStream;
ANTLRToken.h 83 // the index of this Token into the TokenStream
  /external/google-breakpad/src/client/windows/unittests/
minidump_test.cc 202 EXPECT_FALSE(mini.HasStream(TokenStream));
237 EXPECT_FALSE(mini.HasStream(TokenStream));
272 EXPECT_FALSE(mini.HasStream(TokenStream));
329 EXPECT_FALSE(mini.HasStream(TokenStream));
330 EXPECT_FALSE(full.HasStream(TokenStream));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 31 import org.antlr.runtime.TokenStream;
76 protected var tokens:TokenStream;
238 return tokenStream.sourceName;
241 public function get tokenStream():TokenStream {
245 public function set tokenStream(tokens:TokenStream):void {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 105 if ( input is TokenStream ) {
106 this.token = TokenStream(input).LT(1);
168 if ( input is TokenStream ) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 105 if ( input instanceof TokenStream ) {
106 this.token = ((TokenStream)input).LT(1);
168 if ( input instanceof TokenStream ) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRToken.h 74 // the index of this Token into the TokenStream
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRToken.h 74 // the index of this Token into the TokenStream
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRToken.h 74 // the index of this Token into the TokenStream
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 12 does => 'ANTLR::Runtime::TokenStream'
  /external/deqp/framework/randomshaders/
rsgPrettyPrinter.hpp 41 void append (const TokenStream& tokens);
rsgVariable.hpp 68 void tokenizeDeclaration (GeneratorState& state, TokenStream& str) const;
rsgShader.cpp 93 void Shader::tokenize (GeneratorState& state, TokenStream& str) const
125 void Function::tokenize (GeneratorState& state, TokenStream& str) const
rsgVariableType.hpp 34 class TokenStream;
156 void tokenizeShortType (TokenStream& str) const;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeFilter.cs 95 originalTokenStream = input.TokenStream;
108 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 32 import org.antlr.runtime.TokenStream;
135 public TokenStream getTokenStream() {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeFilter.java 32 import org.antlr.runtime.TokenStream;
83 protected TokenStream originalTokenStream;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 82 TokenStream tokens = new CommonTokenStream(lex);
216 TokenStream tokens = new CommonTokenStream(lex);

Completed in 1345 milliseconds

1 23 4 5 6 7 8