OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stopIndex
(Results
1 - 4
of
4
) 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
/external/antlr/src/org/antlr/runtime/debug/
Profiler.java
178
int
stopIndex
, // index or MEMO_RULE_UNKNOWN...
181
if (dump) System.out.println("examine memo "+ruleName+" at "+input.index()+": "+
stopIndex
);
182
if (
stopIndex
==BaseRecognizer.MEMO_RULE_UNKNOWN ) {
Completed in 89 milliseconds