Searched refs:tokenStartCharPositionInLine (Results 1 - 25 of 29) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognizerSharedState.cs136 public int tokenStartCharPositionInLine; field in class:Antlr.Runtime.RecognizerSharedState
176 tokenStartCharPositionInLine = state.tokenStartCharPositionInLine;
H A DLexer.cs104 state.tokenStartCharPositionInLine = -1;
115 state.tokenStartCharPositionInLine = input.CharPositionInLine;
203 t.CharPositionInLine = state.tokenStartCharPositionInLine;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognizerSharedState.cs138 public int tokenStartCharPositionInLine; field in class:Antlr.Runtime.RecognizerSharedState
180 tokenStartCharPositionInLine = state.tokenStartCharPositionInLine;
H A DLexer.cs122 state.tokenStartCharPositionInLine = -1;
135 state.tokenStartCharPositionInLine = input.CharPositionInLine;
245 t.CharPositionInLine = state.tokenStartCharPositionInLine;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognizerSharedState.java107 public int tokenStartCharPositionInLine; field in class:RecognizerSharedState
139 this.tokenStartCharPositionInLine = state.tokenStartCharPositionInLine;
H A DLexer.java64 state.tokenStartCharPositionInLine = -1;
77 state.tokenStartCharPositionInLine = input.getCharPositionInLine();
163 t.setCharPositionInLine(state.tokenStartCharPositionInLine);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3recognizersharedstate.h171 ANTLR3_INT32 tokenStartCharPositionInLine; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognizerSharedState.h45 NSUInteger tokenStartCharPositionInLine; variable
63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognizerSharedState.h45 NSUInteger tokenStartCharPositionInLine; variable
63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognizerSharedState.h45 NSUInteger tokenStartCharPositionInLine; variable
63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognizerSharedState.h46 NSUInteger tokenStartCharPositionInLine; variable
64 @property (getter=charPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine; variable
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DLexer.as57 state.tokenStartCharPositionInLine = -1;
70 state.tokenStartCharPositionInLine = input.charPositionInLine;
149 t.charPositionInLine = state.tokenStartCharPositionInLine;
H A DRecognizerSharedState.as79 public var tokenStartCharPositionInLine:int; variable
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DLexer.js29 this.state.tokenStartCharPositionInLine = -1;
42 this.state.tokenStartCharPositionInLine = this.input.getCharPositionInLine();
115 t.setCharPositionInLine(this.state.tokenStartCharPositionInLine);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs122 state.tokenStartCharPositionInLine = -1;
140 state.tokenStartCharPositionInLine = input.CharPositionInLine;
251 //CharPositionInLine = state.tokenStartCharPositionInLine,
261 //t.CharPositionInLine = state.tokenStartCharPositionInLine;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c185 lexer->rec->state->tokenStartCharPositionInLine = -1;
248 state->tokenStartCharPositionInLine = input->charPositionInLine;
476 (ANTLR3_UINT32)(lexer->rec->state->tokenStartCharPositionInLine)
662 token->charPosition = lexer->rec->state->tokenStartCharPositionInLine;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py113 self.tokenStartCharPositionInLine = None
1081 self._state.tokenStartCharPositionInLine = -1
1104 self._state.tokenStartCharPositionInLine = self.input.charPositionInLine
1182 token.charPositionInLine = self._state.tokenStartCharPositionInLine
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
H A DFuzzy.m92 state.tokenStartCharPositionInLine = input.charPositionInLine;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
H A DFuzzy.m362 state.tokenStartCharPositionInLine = [input getCharPositionInLine];
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg122 this.state.tokenStartCharPositionInLine = input.charPositionInLine;
1254 lexerRulePropertyRef_pos(scope,attr) ::= "state.tokenStartCharPositionInLine"
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg154 state.tokenStartCharPositionInLine = input.getCharPositionInLine();
1366 lexerRulePropertyRef_pos(scope,attr) ::= "state.tokenStartCharPositionInLine"
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg142 tokenStartCharPositionInLine = input.getCharPositionInLine();
1334 lexerRulePropertyRef_pos(scope,attr) ::= "tokenStartCharPositionInLine"
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg172 self._state.tokenStartCharPositionInLine = self.input.charPositionInLine
1431 lexerRulePropertyRef_pos(scope,attr) ::= "self._state.tokenStartCharPositionInLine"
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg135 state.tokenStartCharPositionInLine = input.getCharPositionInLine()
1350 lexerRulePropertyRef_pos(scope,attr) ::= "state.tokenStartCharPositionInLine"
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg220 state.tokenStartCharPositionInLine = input.CharPositionInLine;
1675 lexerRulePropertyRef_pos(scope,attr) ::= "state.tokenStartCharPositionInLine"

Completed in 967 milliseconds

12