HomeSort by relevance Sort by last modified time
    Searched defs:stopIndex (Results 1 - 3 of 3) sorted by null

  /external/antlr/src/org/antlr/runtime/tree/
CommonTree.java 45 protected int startIndex=-1, stopIndex=-1;
59 this.stopIndex = node.stopIndex;
124 if ( stopIndex==-1 && token!=null ) {
127 return stopIndex;
131 stopIndex = index;
140 if ( startIndex<0 || stopIndex<0 ) {
141 startIndex = stopIndex = token.getTokenIndex();
148 if ( startIndex>=0 && stopIndex>=0 ) return; // already set
153 stopIndex = lastChild.getTokenStopIndex()
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestBasic.java 81 int stopIndex = startDomainIndex + domainAndRegistry.length();
92 stopIndex,
95 if (stopIndex < urlString.length()) {
97 stopIndex,
  /external/antlr/src/org/antlr/runtime/
BaseRecognizer.java 815 int stopIndex = getRuleMemoization(ruleIndex, input.index());
816 if ( stopIndex==MEMO_RULE_UNKNOWN ) {
819 if ( stopIndex==MEMO_RULE_FAILED ) {
824 //System.out.println("seen rule "+ruleIndex+" before; skipping ahead to @"+(stopIndex+1)+" failed="+state.failed);
825 input.seek(stopIndex+1); // jump to one past stop token

Completed in 858 milliseconds