Searched refs:stopIndex (Results 26 - 50 of 54) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTokenStream.h79 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
H A DANTLRStringStream.h99 - (NSString *) substring:(NSInteger)startIndex To:(NSInteger)stopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTokenStream.h79 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
H A DANTLRStringStream.h99 - (NSString *) substring:(NSInteger)startIndex To:(NSInteger)stopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTokenStream.h79 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
H A DANTLRStringStream.h99 - (NSString *) substring:(NSInteger)startIndex To:(NSInteger)stopIndex;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTokenStream.h90 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
H A DANTLRStringStream.h86 - (NSString *) substring:(NSInteger)startIndex To:(NSInteger)stopIndex;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DDbg.stg71 int stopIndex = GetRuleMemoization(ruleIndex, input.Index);
72 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DDbg.stg70 int stopIndex = GetRuleMemoization(ruleIndex, input.Index);
71 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/aac/libSBRenc/src/
H A Dinvf_est.cpp195 INT stopIndex, /*!< Stop index. */
210 invIndex = GetInvInt(stopIndex-startIndex);
221 for(j=startIndex; j<stopIndex; j++) {
425 INT stopIndex, /*!< Stop index. */
447 stopIndex,
188 calculateDetectorValues(FIXP_DBL **quotaMatrixOrig, SCHAR *indexVector, FIXP_DBL *nrgVector, DETECTOR_VALUES *detectorValues, INT startChannel, INT stopChannel, INT startIndex, INT stopIndex, INT numberOfStrongest ) argument
420 FDKsbrEnc_qmfInverseFilteringDetector(HANDLE_SBR_INV_FILT_EST hInvFilt, FIXP_DBL **quotaMatrix, FIXP_DBL *nrgVector, SCHAR *indexVector, INT startIndex, INT stopIndex, INT transientFlag, INVF_MODE* infVec ) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs855 int stopIndex;
856 if (!state.ruleMemo[ruleIndex].TryGetValue(ruleStartIndex, out stopIndex))
859 return stopIndex;
876 int stopIndex = GetRuleMemoization(ruleIndex, input.Index);
877 if (stopIndex == MemoRuleUnknown) {
880 if (stopIndex == MemoRuleFailed) {
884 //System.out.println("seen rule "+ruleIndex+" before; skipping ahead to @"+(stopIndex+1)+" failed="+state.failed);
885 input.Seek(stopIndex + 1); // jump to one past stop token
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs965 int stopIndex;
966 if ( !state.ruleMemo[ruleIndex].TryGetValue( ruleStartIndex, out stopIndex ) )
969 return stopIndex;
987 int stopIndex = GetRuleMemoization( ruleIndex, input.Index );
988 if ( stopIndex == MemoRuleUnknown )
992 if ( stopIndex == MemoRuleFailed )
999 //System.out.println("seen rule "+ruleIndex+" before; skipping ahead to @"+(stopIndex+1)+" failed="+state.failed);
1000 input.Seek( stopIndex + 1 ); // jump to one past stop token
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c1860 ANTLR3_MARKER stopIndex; local
1884 /* We cannot have a stopIndex in a trie we have just created of course
1893 stopIndex = 0;
1898 stopIndex = (ANTLR3_MARKER)(entry->data.intVal);
1901 if (stopIndex == 0)
1906 return stopIndex;
1920 ANTLR3_MARKER stopIndex; local
1964 stopIndex = recognizer->getRuleMemoization(recognizer, ruleIndex, is->index(is));
1966 if (stopIndex == MEMO_RULE_UNKNOWN)
1971 if (stopIndex
1995 ANTLR3_MARKER stopIndex; local
[all...]
H A Dantlr3commontreeadaptor.c405 ct->stopIndex = stop;
428 return ((pANTLR3_COMMON_TREE)(t->super))->stopIndex;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java815 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/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js867 var stopIndex = this.getRuleMemoization(ruleIndex, input.index());
868 if ( stopIndex==org.antlr.runtime.BaseRecognizer.MEMO_RULE_UNKNOWN ) {
871 if ( stopIndex==org.antlr.runtime.BaseRecognizer.MEMO_RULE_FAILED ) {
876 input.seek(stopIndex+1); // jump to one past stop token
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAST.java163 this.stopIndex = t.stopIndex;
175 stopIndex = startIndex;
550 if ( stopToken!=null ) stopIndex = stopToken.getTokenIndex();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DDbg.stg66 int stopIndex = getRuleMemoization(ruleIndex, input.index());
67 ((Profiler)dbg).examineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py1216 self.stopIndex = -1
1231 self.stopIndex = payload.stopIndex
1309 if self.stopIndex == -1 and self.token is not None:
1312 return self.stopIndex
1315 self.stopIndex = index
1327 if self.startIndex < 0 or self.stopIndex < 0:
1328 self.startIndex = self.stopIndex = self.token.getTokenIndex()
1335 if self.startIndex >= 0 and self.stopIndex >= 0:
1343 self.stopIndex
[all...]
H A Drecognizers.py940 stopIndex = self.getRuleMemoization(ruleIndex, input.index())
941 if stopIndex == self.MEMO_RULE_UNKNOWN:
944 if stopIndex == self.MEMO_RULE_FAILED:
948 input.seek(stopIndex + 1)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs122 int stopIndex, // index or MEMO_RULE_UNKNOWN...
125 Console.WriteLine("examine memo " + ruleName + " at " + input.Index + ": " + stopIndex);
126 if (stopIndex == BaseRecognizer.MemoRuleUnknown) {
120 ExamineRuleMemoization(IIntStream input, int ruleIndex, int stopIndex, string ruleName) argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs126 int stopIndex, // index or MEMO_RULE_UNKNOWN...
130 Console.WriteLine("examine memo " + ruleName + " at " + input.Index + ": " + stopIndex);
131 if (stopIndex == BaseRecognizer.MemoRuleUnknown)
124 ExamineRuleMemoization(IIntStream input, int ruleIndex, int stopIndex, string ruleName) argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DProfiler.java178 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 ) {
176 examineRuleMemoization(IntStream input, int ruleIndex, int stopIndex, String ruleName) argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as725 var stopIndex:* = state.ruleMemo[ruleIndex][ruleStartIndex];
726 if ( stopIndex == undefined ) {
729 return stopIndex as int;
742 var stopIndex:int = getRuleMemoization(ruleIndex, input.index);
743 if ( stopIndex==MEMO_RULE_UNKNOWN ) {
746 if ( stopIndex==MEMO_RULE_FAILED ) {
751 //System.out.println("seen rule "+ruleIndex+" before; skipping ahead to @"+(stopIndex+1)+" failed="+failed);
752 input.seek(stopIndex+1); // jump to one past stop token

Completed in 1163 milliseconds

123