HomeSort by relevance Sort by last modified time
    Searched refs:getCharPositionInLine (Results 26 - 50 of 110) sorted by null

12 3 4 5

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java 77 state.tokenStartCharPositionInLine = input.getCharPositionInLine();
85 eof.setCharPositionInLine(getCharPositionInLine());
227 public int getCharPositionInLine() {
228 return input.getCharPositionInLine();
336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
Parser.java 73 t.charPositionInLine = current.getCharPositionInLine();
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 163 var cpos = t.getCharPositionInLine(); // column dictates indent/dedent
176 indent.setCharPositionInLine(t.getCharPositionInLine());
186 dedent.setCharPositionInLine(t.getCharPositionInLine());
rhino-python.prog 45 this.startPos = this.getCharPositionInLine();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js 42 this.state.tokenStartCharPositionInLine = this.input.getCharPositionInLine();
179 getCharPositionInLine: function() {
180 return this.input.getCharPositionInLine();
276 var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPositionInLine();
281 var inputSymbol = String.fromCharCode(this.input.LT(1))+" line="+this.getLine()+":"+this.getCharPositionInLine();
CommonToken.js 17 this.charPositionInLine = oldToken.getCharPositionInLine();
72 getCharPositionInLine: function() {
138 return "[@"+this.getTokenIndex()+","+this.start+":"+this.stop+"='"+txt+"',<"+this.type+">"+channelStr+","+this.line+":"+this.getCharPositionInLine()+"]";
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRStringStream.h 50 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
105 - (NSInteger) getCharPositionInLine;
ANTLRRecognizerSharedState.h 63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine;
87 - (NSUInteger) getCharPositionInLine;
ANTLRTree.h 115 - (NSInteger) getCharPositionInLine;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRStringStream.h 50 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
105 - (NSInteger) getCharPositionInLine;
ANTLRRecognizerSharedState.h 63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine;
87 - (NSUInteger) getCharPositionInLine;
ANTLRTree.h 115 - (NSInteger) getCharPositionInLine;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRStringStream.h 50 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
105 - (NSInteger) getCharPositionInLine;
ANTLRRecognizerSharedState.h 63 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSUInteger tokenStartCharPositionInLine;
87 - (NSUInteger) getCharPositionInLine;
ANTLRTree.h 115 - (NSInteger) getCharPositionInLine;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarNonDeterminismMessage.java 62 column = decisionASTNode.getCharPositionInLine();
84 column = ruleStart.associatedASTNode.getCharPositionInLine();
GrammarDanglingStateMessage.java 56 column = decisionASTNode.getCharPositionInLine();
GrammarReport2.java 73 buf.append(decisionAST.getCharPositionInLine());
GrammarSemanticsMessage.java 74 column = offendingToken.getCharPositionInLine();
GrammarSyntaxMessage.java 68 column = offendingToken.getCharPositionInLine();
NonRegularDecisionMessage.java 52 column = decisionASTNode.getCharPositionInLine();
RecursionOverflowMessage.java 64 column = decisionASTNode.getCharPositionInLine();
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h 175 ANTLR3_UINT32 (*getCharPositionInLine)(struct ANTLR3_LEXER_struct * lexer);
antlr3basetree.h 97 ANTLR3_UINT32 (*getCharPositionInLine) (struct ANTLR3_BASE_TREE_struct * tree);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontree.c 47 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_BASE_TREE tree);
307 tree->baseTree.getCharPositionInLine = getCharPositionInLine;
468 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_BASE_TREE tree)
474 if (token == NULL || token->getCharPositionInLine(token) == -1)
482 return child->getCharPositionInLine(child);
486 return token->getCharPositionInLine(token);

Completed in 627 milliseconds

12 3 4 5