Searched refs:getCharPositionInLine (Results 1 - 25 of 105) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java56 int getCharPositionInLine(); method in interface:CharStream
H A DClassicToken.java55 charPositionInLine = oldToken.getCharPositionInLine();
90 public int getCharPositionInLine() { method in class:ClassicToken
139 return "[@"+getTokenIndex()+",'"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
H A DRecognitionException.java108 this.charPositionInLine = token.getCharPositionInLine();
116 this.charPositionInLine = ((CharStream)input).getCharPositionInLine();
139 this.charPositionInLine = priorPayload.getCharPositionInLine();
149 this.charPositionInLine = payload.getCharPositionInLine();
154 this.charPositionInLine = ((Tree)this.node).getCharPositionInLine();
H A DToken.java74 public int getCharPositionInLine(); method in interface:Token
H A DCommonToken.java77 charPositionInLine = oldToken.getCharPositionInLine();
123 public int getCharPositionInLine() { method in class:CommonToken
189 return "[@"+getTokenIndex()+","+start+":"+stop+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCharStreamState.h43 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
55 - (NSInteger) getCharPositionInLine;
H A DANTLRCharStream.h50 - (NSInteger) getCharPositionInLine;
H A DANTLRRecognitionException.h48 @property (getter=getCharPositionInLine, setter=setCharPositionInLine:) NSInteger charPositionInLine;
69 - (NSInteger)getCharPositionInLine;
H A DANTLRToken.h65 - (NSUInteger) getCharPositionInLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCharStreamState.h43 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
55 - (NSInteger) getCharPositionInLine;
H A DANTLRCharStream.h50 - (NSInteger) getCharPositionInLine;
H A DANTLRRecognitionException.h48 @property (getter=getCharPositionInLine, setter=setCharPositionInLine:) NSInteger charPositionInLine;
69 - (NSInteger)getCharPositionInLine;
H A DANTLRToken.h65 - (NSUInteger) getCharPositionInLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCharStreamState.h43 @property (getter=getCharPositionInLine,setter=setCharPositionInLine:) NSInteger charPositionInLine;
55 - (NSInteger) getCharPositionInLine;
H A DANTLRCharStream.h50 - (NSInteger) getCharPositionInLine;
H A DANTLRRecognitionException.h48 @property (getter=getCharPositionInLine, setter=setCharPositionInLine:) NSInteger charPositionInLine;
69 - (NSInteger)getCharPositionInLine;
H A DANTLRToken.h65 - (NSUInteger) getCharPositionInLine;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTree.js71 getCharPositionInLine: function() {
72 if ( !this.token || this.token.getCharPositionInLine()===-1 ) {
74 return this.getChild(0).getCharPositionInLine();
78 return this.token.getCharPositionInLine();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js38 this.charPositionInLine = this.token.getCharPositionInLine();
48 this.charPositionInLine = input.getCharPositionInLine();
138 this.charPositionInLine = priorPayload.getCharPositionInLine();
148 this.charPositionInLine = payload.getCharPositionInLine();
153 this.charPositionInLine = this.node.getCharPositionInLine();
H A DCommonToken.js17 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/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTree.java102 public int getCharPositionInLine() { method in class:CommonTree
103 if ( token==null || token.getCharPositionInLine()==-1 ) {
105 return getChild(0).getCharPositionInLine();
109 return token.getCharPositionInLine();
H A DTree.java122 int getCharPositionInLine(); method in interface:Tree
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRStringStreamState.h50 - (NSUInteger) getCharPositionInLine;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarUnreachableAltsMessage.java58 column = decisionASTNode.getCharPositionInLine();
76 column = ruleStart.associatedASTNode.getCharPositionInLine();
/external/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java57 this.charPositionInLine = token.getCharPositionInLine();
67 this.charPositionInLine = token.getCharPositionInLine();

Completed in 423 milliseconds

12345