HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 451 - 475 of 1832) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 59 /** Record every single token pulled from the source so we can reproduce
70 /** The index into the tokens list of the current token (next token
72 * to initialize with first token. The ctor doesn't get a token.
73 * First call to LT(1) or whatever gets the first token and sets p=0;
147 IToken token;
151 token = LB(i);
152 } while (token != null && token.Line <= 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java 32 /** A node representing erroneous token range in token stream */
35 public Token start;
36 public Token stop;
39 public CommonErrorNode(TokenStream input, Token start, Token stop,
45 stop.getType()!=Token.EOF) )
47 // sometimes resync does not consume a token (when LT(1) is
49 // Also handle case where start is the first token and no token
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js 25 this.state.token = null;
26 this.state.type = org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
27 this.state.channel = org.antlr.runtime.Token.DEFAULT_CHANNEL;
34 /** Return a token from this source; i.e., match a token on the char
39 this.state.token = null;
40 this.state.channel = org.antlr.runtime.Token.DEFAULT_CHANNEL;
46 return org.antlr.runtime.Token.EOF_TOKEN;
50 if ( !org.antlr.lang.isValue(this.state.token) ) {
53 else if ( this.state.token==org.antlr.runtime.Token.SKIP_TOKEN )
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognitionException.h 37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognitionException.h 37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognitionException.h 37 id<ANTLRToken> token; variable
45 @property (retain, getter=getToken, setter=setToken:) id<ANTLRToken>token; variable
  /external/antlr/antlr-3.4/runtime/Python/tests/
t020fuzzy.py 20 token = lexer.nextToken()
21 if token.type == antlr3.EOF:
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testrecognizers.py 47 for token in src:
48 tokens.append(token.type)
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 12 include Token
29 src.each do |token|
30 tokens << token.type
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
AST.stg 71 :{var stream_<it>:RewriteRule<rewriteElementType>Stream=new RewriteRule<rewriteElementType>Stream(adaptor,"token <it>");}; separator="\n">
94 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
96 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
102 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
108 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
110 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
113 /** Match ^(label+=TOKEN ...) track for rewrite */
114 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
159 // token labels: <referencedTokenLabels; separator=", ">
161 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
AST.stg 97 :{it|RewriteRule<rewriteElementType>Stream stream_<it>=new RewriteRule<rewriteElementType>Stream(adaptor,"token <it>");}; separator="\n">
120 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
122 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<token>.Add(<label>);<\n>
128 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
134 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
136 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<token>.Add(<label>);
139 /** Match ^(label+=TOKEN ...) track for rewrite */
140 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
184 // token labels: <referencedTokenLabels; separator=", ">
186 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 98 :{it|<\n>RewriteRule<rewriteElementType>Stream stream_<it>=new RewriteRule<rewriteElementType>Stream(adaptor,"token <it>");}>
118 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
120 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<token>.Add(<label>);<\n>
126 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
132 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
134 <if(backtracking)>if (<actions.(actionScope).synpredgate>) <endif>stream_<token>.Add(<label>);
137 /** Match ^(label+=TOKEN ...) track for rewrite */
138 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
182 // token labels: <referencedTokenLabels; separator=", ">
184 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
AST.stg 70 :{it | RewriteRule<rewriteElementType>Stream stream_<it>=new RewriteRule<rewriteElementType>Stream(adaptor,"token <it>");}; separator="\n">
93 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
95 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
101 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
107 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
109 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
112 /** Match ^(label+=TOKEN ...) track for rewrite */
113 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
158 // token labels: <referencedTokenLabels; separator=", ">
160 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
AST.stg 66 :{var stream_<it>=new org.antlr.runtime.tree.RewriteRuleTokenStream(this.adaptor,"token <it>");}; separator="\n">
89 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
91 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
97 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
103 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
105 <if(backtracking)>if ( <actions.(actionScope).synpredgate> ) <endif>stream_<token>.add(<label>);<\n>
108 /** Match ^(label+=TOKEN ...) track for rewrite */
109 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
158 // token labels: <referencedTokenLabels; separator=", ">
160 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 179 description:@"token <it>"] retain];}; separator="\n">
230 tokenRefTrack(token,label,elementIndex) ::= <<
235 [stream_<token> addElement:<label>];<\n>
241 tokenRefTrackAndListLabel(token,label,elementIndex) ::= <<
247 tokenRefRuleRootTrack(token,label,elementIndex) ::= <<
252 [stream_<token> addElement:<label>];<\n>
255 /** Match ^(label+=TOKEN ...) track for rewrite */
256 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex) ::= <<
304 // token labels: <referencedTokenLabels; separator=", ">
306 // token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/linux-tools-perf/src/tools/perf/util/
pmu.y 23 %token PP_CONFIG PP_CONFIG1 PP_CONFIG2
24 %token PP_VALUE PP_ERROR
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 13 (* Prime the first token. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 7 type token = type
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 7 type token = type
  /external/llvm/test/MC/Mips/
mips_directives_bad.s 5 # CHECK: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
15 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected identifier
21 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected identifier
27 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected identifier
37 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
42 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
47 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
52 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
57 # CHECK-NEXT: :{{[0-9]+}}:{{[0-9]+}}: error: unexpected token, expected end of statement
  /external/llvm/test/MC/SystemZ/
tokens.s 6 #CHECK: error: unknown token in expression
24 #CHECK: error: unexpected token in address
28 #CHECK: error: unexpected token in argument list
52 #CHECK: error: unknown token in expression
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RAckParser.java 86 Token token = lexer.getNextToken(); local
87 rack.setMethod(token.getTokenValue());
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAccessNetworkInfoParser.java 37 import gov.nist.core.Token;
58 * "3GPP-UTRAN-TDD" / "3GPP-CDMA2000" / token
61 * cgi-3gpp = "cgi-3gpp" EQUAL (token / quoted-string)
62 * utran-cell-id-3gpp = "utran-cell-id-3gpp" EQUAL (token / quoted-string)
99 Token token = lexer.getNextToken(); local
100 accessNetworkInfo.setAccessType(token.getTokenValue());
PMediaAuthorizationParser.java 39 import gov.nist.core.Token;
91 Token token = lexer.getNextToken(); local
93 mediaAuthorization.setMediaAuthorizationToken(token.getTokenValue());

Completed in 318 milliseconds

<<11121314151617181920>>