Searched defs:getCharPositionInLine (Results 1 - 24 of 24) sorted by relevance

/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 DANTLRStringStream.java213 public int getCharPositionInLine() { method in class:ANTLRStringStream
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()+"]";
H A DLexer.java77 state.tokenStartCharPositionInLine = input.getCharPositionInLine();
85 eof.setCharPositionInLine(getCharPositionInLine());
227 public int getCharPositionInLine() { method in class:Lexer
228 return input.getCharPositionInLine();
336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
H A DToken.java74 public int getCharPositionInLine(); method in interface:Token
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3lexer.h175 ANTLR3_UINT32 (*getCharPositionInLine)(struct ANTLR3_LEXER_struct * lexer); member in struct:ANTLR3_LEXER_struct
H A Dantlr3basetree.h97 ANTLR3_UINT32 (*getCharPositionInLine) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3input.h189 ANTLR3_UINT32 (*getCharPositionInLine) (struct ANTLR3_INPUT_STREAM_struct * input); member in struct:ANTLR3_INPUT_STREAM_struct
H A Dantlr3commontoken.h262 ANTLR3_INT32 (*getCharPositionInLine) (struct ANTLR3_COMMON_TOKEN_struct * token); member in struct:ANTLR3_COMMON_TOKEN_struct
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontree.c47 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_BASE_TREE tree);
307 tree->baseTree.getCharPositionInLine = getCharPositionInLine;
468 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_BASE_TREE tree) function
474 if (token == NULL || token->getCharPositionInLine(token) == -1)
482 return child->getCharPositionInLine(child);
486 return token->getCharPositionInLine(token);
H A Dantlr3basetree.c38 static ANTLR3_UINT32 getCharPositionInLine
69 tree->getCharPositionInLine = getCharPositionInLine;
84 getCharPositionInLine (pANTLR3_BASE_TREE tree) function
H A Dantlr3commontoken.c47 static ANTLR3_INT32 getCharPositionInLine (pANTLR3_COMMON_TOKEN token);
336 token->getCharPositionInLine = getCharPositionInLine;
484 static ANTLR3_INT32 getCharPositionInLine (pANTLR3_COMMON_TOKEN token) function
557 * return "[@"+getTokenIndex()+","+start+":"+stop+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
581 outtext->addi (outtext, token->getCharPositionInLine(token));
H A Dantlr3lexer.c56 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_LEXER lexer);
143 lexer->getCharPositionInLine = getCharPositionInLine;
867 getCharPositionInLine (pANTLR3_LEXER lexer) function
/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
H A DBaseTree.java369 public int getCharPositionInLine() { method in class:BaseTree
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtokens.py91 def getCharPositionInLine(self): member in class:Token
259 def getCharPositionInLine(self): member in class:CommonToken
364 def getCharPositionInLine(self): member in class:ClassicToken
H A Dstreams.py231 def getCharPositionInLine(self): member in class:CharStream
499 def getCharPositionInLine(self): member in class:ANTLRStringStream
H A Drecognizers.py1234 def getCharPositionInLine(self): member in class:Lexer
1346 self.getCharPositionInLine()
1355 self.getCharPositionInLine()
H A Dtree.py257 def getCharPositionInLine(self): member in class:Tree
948 def getCharPositionInLine(self): member in class:BaseTree
1283 def getCharPositionInLine(self): member in class:CommonTree
1284 if self.token is None or self.token.getCharPositionInLine() == -1:
1286 return self.getChild(0).getCharPositionInLine()
1291 return self.token.getCharPositionInLine()
1293 charPositionInLine = property(getCharPositionInLine)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DRemoteDebugEventSocketListener.java95 public int getCharPositionInLine() { method in class:RemoteDebugEventSocketListener.ProxyToken
123 return "["+getText()+"/<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+",@"+index+"]";
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAST.java299 public int getCharPositionInLine(){ method in class:GrammarAST
302 col = token.getCharPositionInLine();
307 col = child.getCharPositionInLine();
430 token.getCharPositionInLine() == t.getCharPositionInLine();
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 151 milliseconds