HomeSort by relevance Sort by last modified time
    Searched refs:tokenStartCharIndex (Results 1 - 25 of 37) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 72 this.tokenStartCharIndex = -1;
Lexer.js 28 this.state.tokenStartCharIndex = -1;
41 this.state.tokenStartCharIndex = this.input.index();
112 var t = new org.antlr.runtime.CommonToken(this.input, this.state.type, this.state.channel, this.state.tokenStartCharIndex, this.getCharIndex()-1);
195 return this.input.substring(this.state.tokenStartCharIndex,this.getCharIndex()-1);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 130 public int tokenStartCharIndex;
156 tokenStartCharIndex = -1;
175 tokenStartCharIndex = state.tokenStartCharIndex;
Lexer.cs 66 return input.Substring(state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex);
103 state.tokenStartCharIndex = -1;
114 state.tokenStartCharIndex = input.Index;
200 IToken t = new CommonToken(input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 132 public int tokenStartCharIndex;
159 tokenStartCharIndex = -1;
179 tokenStartCharIndex = state.tokenStartCharIndex;
Lexer.cs 74 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
121 state.tokenStartCharIndex = -1;
134 state.tokenStartCharIndex = input.Index;
242 IToken t = new CommonToken( input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1 );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 101 public int tokenStartCharIndex = -1;
138 this.tokenStartCharIndex = state.tokenStartCharIndex;
Lexer.java 63 state.tokenStartCharIndex = -1;
76 state.tokenStartCharIndex = input.index();
160 Token t = new CommonToken(input, state.type, state.channel, state.tokenStartCharIndex, getCharIndex()-1);
243 return input.substring(state.tokenStartCharIndex,getCharIndex()-1);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 177 ANTLR3_MARKER tokenStartCharIndex;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 56 state.tokenStartCharIndex = -1;
69 state.tokenStartCharIndex = input.index;
146 var t:Token = CommonToken.createFromStream(input, state.type, state.channel, state.tokenStartCharIndex, charIndex - 1);
228 return input.substring(state.tokenStartCharIndex, charIndex-1);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 70 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
120 state.tokenStartCharIndex = -1;
138 state.tokenStartCharIndex = input.Index;
258 //IToken t = new CommonToken( input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1 );
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognizerSharedState.h 43 NSInteger tokenStartCharIndex;
64 @property (getter=getTokenStartCharIndex,setter=setTokenStartCharIndex:) NSInteger tokenStartCharIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognizerSharedState.h 43 NSInteger tokenStartCharIndex;
64 @property (getter=getTokenStartCharIndex,setter=setTokenStartCharIndex:) NSInteger tokenStartCharIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognizerSharedState.h 43 NSInteger tokenStartCharIndex;
64 @property (getter=getTokenStartCharIndex,setter=setTokenStartCharIndex:) NSInteger tokenStartCharIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognizerSharedState.h 44 NSInteger tokenStartCharIndex;
65 @property (getter=getTokenStartCharIndex,setter=setTokenStartCharIndex:) NSInteger tokenStartCharIndex;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3lexer.c 184 lexer->rec->state->tokenStartCharIndex = -1;
247 state->tokenStartCharIndex = (ANTLR3_MARKER)(((pANTLR3_UINT8)input->nextChar));
478 width = ANTLR3_UINT32_CAST(((pANTLR3_UINT8)(lexer->input->data)+(lexer->input->size(lexer->input))) - (pANTLR3_UINT8)(lexer->rec->state->tokenStartCharIndex));
482 ANTLR3_FPRINTF(stderr, "looks like this:\n\t\t%.*s\n", width > 20 ? 20 : width ,(pANTLR3_UINT8)(lexer->rec->state->tokenStartCharIndex));
542 lexer->rec->state->tokenStartCharIndex = -1;
659 token->start = lexer->rec->state->tokenStartCharIndex;
887 lexer->rec->state->tokenStartCharIndex,
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 107 self.tokenStartCharIndex = -1
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.m 91 state.tokenStartCharIndex = input.index;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m 361 state.tokenStartCharIndex = [input getIndex];
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 121 this.state.tokenStartCharIndex = input.index;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 227 tokenStartCharIndex = getCharIndex();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 153 state.tokenStartCharIndex = input.index();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 141 tokenStartCharIndex = input.index();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 171 self._state.tokenStartCharIndex = self.input.index()
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 134 state.tokenStartCharIndex = input.index()
    [all...]

Completed in 468 milliseconds

1 2