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

1 2 34 5

  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 745 ({LT(1).getCharPositionInLine()+LT(1).getText().length()==LT(2).getCharPositionInLine()&&
746 LT(2).getCharPositionInLine()+1==LT(3).getCharPositionInLine()}? id WILDCARD (terminal|ruleref)) =>
1252 int actionColumn = getCharPositionInLine();
CodeGenTreeWalker.g 637 $s.getCharPositionInLine() + 1
705 $e.start.getCharPositionInLine() + 1
911 $el.start.getCharPositionInLine() + 1
923 $act.start.getCharPositionInLine() + 1
932 $el.start.getCharPositionInLine() + 1
    [all...]
ANTLRv3.g 320 $ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
403 $rewrite_tree_ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 87 int charPos = ((CharStream)input).getCharPositionInLine();
446 cs.getLine()+":"+cs.getCharPositionInLine()+" "+re);
GrammarReport.java 310 buf.append(decisionAST.getCharPositionInLine());
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 291 $ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
399 $rewrite_tree_ebnf.tree.getToken().setCharPositionInLine(firstToken.getCharPositionInLine());
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3lexer.c 56 static ANTLR3_UINT32 getCharPositionInLine (pANTLR3_LEXER lexer);
143 lexer->getCharPositionInLine = getCharPositionInLine;
867 getCharPositionInLine (pANTLR3_LEXER lexer)
antlr3baserecognizer.c 339 ex->charPositionInLine = ins->getCharPositionInLine (ins); /* Line offset also comes from the stream */
349 ex->charPositionInLine = ((pANTLR3_COMMON_TOKEN)(ex->token))->getCharPositionInLine (ex->token);
366 ex->charPositionInLine = ((pANTLR3_BASE_TREE)(ex->token))->getCharPositionInLine (ex->token);
    [all...]
antlr3commontreeadaptor.c 356 newToken->setCharPositionInLine (newToken, fromToken->getCharPositionInLine(fromToken));
antlr3debughandlers.c 446 delboy->tokenString->addi(delboy->tokenString, (ANTLR3_INT32)(t->getCharPositionInLine(t)));
516 delboy->tokenString->addi(delboy->tokenString, (ANTLR3_INT32)(token->getCharPositionInLine(token)));
antlr3inputstream.c 170 input->getCharPositionInLine = antlr38BitGetCharPosition; // Return the offset into the current line of input
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 369 public int getCharPositionInLine() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTree.js 279 getCharPositionInLine: function() {
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 257 def getCharPositionInLine(self):
948 def getCharPositionInLine(self):
    [all...]
recognizers.py     [all...]
streams.py 231 def getCharPositionInLine(self):
499 def getCharPositionInLine(self):
    [all...]
debug.py 1053 # pos = token.getCharPositionInLine();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 148 eof.setCharPositionInLine(getCharPositionInLine());
154 state.tokenStartCharPositionInLine = input.getCharPositionInLine();
761 int <label>StartCharPos<elementIndex> = getCharPositionInLine();
824 int <label>StartCharPos<elementIndex> = getCharPositionInLine();
845 int <label>StartCharPos<elementIndex> = getCharPositionInLine();
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 129 eof.setCharPositionInLine(getCharPositionInLine())
135 state.tokenStartCharPositionInLine = input.getCharPositionInLine()
744 val <label>StartCharPos<elementIndex> = getCharPositionInLine()
810 val <label>StartCharPos<elementIndex> = getCharPositionInLine()
833 val <label>StartCharPos<elementIndex> = getCharPositionInLine()
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 95 public int getCharPositionInLine() {
123 return "["+getText()+"/<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+",@"+index+"]";
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 843 <label>StartCharPos<elementIndex> = self.getCharPositionInLine()
905 <label>StartCharPos<elementIndex> = self.getCharPositionInLine()
930 <label>StartCharPos<elementIndex> = self.getCharPositionInLine()
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliFlexLexer.java     [all...]
  /external/smali/smali/src/main/antlr3/
smaliParser.g 340 return "[@"+t.getTokenIndex()+","+ct.getStartIndex()+":"+ct.getStopIndex()+"='"+txt+"',<"+tokenNames[t.getType()]+">"+channelStr+","+t.getLine()+":"+t.getCharPositionInLine()+"]";
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m 362 state.tokenStartCharPositionInLine = [input getCharPositionInLine];
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 142 tokenStartCharPositionInLine = input.getCharPositionInLine();
    [all...]

Completed in 528 milliseconds

1 2 34 5