Searched defs:stopIndex (Results 1 - 25 of 29) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRuleMemo.h37 NSNumber *stopIndex; variable
41 @property (retain, getter=getStopIndex, setter=setStopIndex) NSNumber *stopIndex; variable
H A DANTLRCommonTree.h34 NSInteger stopIndex; variable
41 @property (assign, getter=getTokenStopIndex, setter=setTokenStopIndex) NSInteger stopIndex; variable
H A DANTLRCommonToken.h45 NSUInteger stopIndex; variable
57 @property (assign, getter=getStop, setter=setStop:) NSUInteger stopIndex; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRuleMemo.h37 NSNumber *stopIndex; variable
41 @property (retain, getter=getStopIndex, setter=setStopIndex) NSNumber *stopIndex; variable
H A DANTLRCommonTree.h34 NSInteger stopIndex; variable
41 @property (assign, getter=getTokenStopIndex, setter=setTokenStopIndex) NSInteger stopIndex; variable
H A DANTLRCommonToken.h45 NSUInteger stopIndex; variable
57 @property (assign, getter=getStop, setter=setStop:) NSUInteger stopIndex; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRuleMemo.h37 NSNumber *stopIndex; variable
41 @property (retain, getter=getStopIndex, setter=setStopIndex) NSNumber *stopIndex; variable
H A DANTLRCommonTree.h34 NSInteger stopIndex; variable
41 @property (assign, getter=getTokenStopIndex, setter=setTokenStopIndex) NSInteger stopIndex; variable
H A DANTLRCommonToken.h45 NSUInteger stopIndex; variable
57 @property (assign, getter=getStop, setter=setStop:) NSUInteger stopIndex; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRuleMemo.h37 NSNumber *stopIndex; variable
41 @property (retain, getter=getStopIndex, setter=setStopIndex:) NSNumber *stopIndex; variable
H A DANTLRCommonTree.h34 NSInteger stopIndex; variable
81 @property (assign, getter=getTokenStopIndex, setter=setTokenStopIndex:) NSInteger stopIndex;
88 @property (assign) NSInteger stopIndex; variable
H A DANTLRCommonToken.h45 NSInteger stopIndex; variable
126 @property (assign, getter=getStop, setter=setStop:) NSInteger stopIndex; variable
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontree.h60 ANTLR3_MARKER stopIndex; member in struct:ANTLR3_COMMON_TREE_struct
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs57 protected int stopIndex = -1; field in class:Antlr.Runtime.Tree.CommonTree
75 this.stopIndex = node.stopIndex;
163 if (stopIndex == -1 && token != null) {
166 return stopIndex;
169 stopIndex = value;
196 if (startIndex < 0 || stopIndex < 0) {
197 startIndex = stopIndex = token.TokenIndex;
204 if (startIndex >= 0 && stopIndex >= 0)
210 stopIndex
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs57 protected int stopIndex = -1; field in class:Antlr.Runtime.Tree.CommonTree
77 this.stopIndex = node.stopIndex;
210 if ( stopIndex == -1 && Token != null )
214 return stopIndex;
219 stopIndex = value;
255 if ( startIndex < 0 || stopIndex < 0 )
256 startIndex = stopIndex = Token.TokenIndex;
270 if ( startIndex >= 0 && stopIndex >= 0 )
278 stopIndex
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTree.java45 protected int startIndex=-1, stopIndex=-1; field in class:CommonTree
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
[all...]
/external/skia/src/gpu/
H A DGrResourceAllocator.cpp203 bool GrResourceAllocator::assign(int* startIndex, int* stopIndex, AssignError* outError) { argument
213 *stopIndex = fEndOfOpListOpIndices.count();
244 *stopIndex = fCurOpListIndex+1;
276 *stopIndex = fCurOpListIndex+1;
H A DGrDrawingManager.cpp206 int startIndex, stopIndex; local
217 while (alloc.assign(&startIndex, &stopIndex, &error)) {
219 for (int i = startIndex; i < stopIndex; ++i) {
224 if (this->executeOpLists(startIndex, stopIndex, &flushState)) {
248 bool GrDrawingManager::executeOpLists(int startIndex, int stopIndex, GrOpFlushState* flushState) { argument
249 SkASSERT(startIndex <= stopIndex && stopIndex <= fOpLists.count());
254 for (int i = startIndex; i < stopIndex; ++i) {
293 for (int i = startIndex; i < stopIndex; ++i) {
311 for (int i = startIndex; i < stopIndex;
[all...]
/external/skqp/src/gpu/
H A DGrResourceAllocator.cpp198 bool GrResourceAllocator::assign(int* startIndex, int* stopIndex, AssignError* outError) { argument
208 *stopIndex = fEndOfOpListOpIndices.count();
234 *stopIndex = fCurOpListIndex+1;
266 *stopIndex = fCurOpListIndex+1;
H A DGrDrawingManager.cpp174 int startIndex, stopIndex; local
186 stopIndex = fOpLists.count();
189 while (alloc.assign(&startIndex, &stopIndex, &error))
194 for (int i = startIndex; i < stopIndex; ++i) {
199 if (this->executeOpLists(startIndex, stopIndex, &flushState)) {
223 bool GrDrawingManager::executeOpLists(int startIndex, int stopIndex, GrOpFlushState* flushState) { argument
224 SkASSERT(startIndex <= stopIndex && stopIndex <= fOpLists.count());
228 for (int i = startIndex; i < stopIndex; ++i) {
263 for (int i = startIndex; i < stopIndex;
[all...]
/external/skia/tests/
H A DResourceAllocatorTest.cpp73 int startIndex, stopIndex; local
75 alloc.assign(&startIndex, &stopIndex, &error);
95 int startIndex, stopIndex; local
97 alloc.assign(&startIndex, &stopIndex, &error);
/external/skqp/tests/
H A DResourceAllocatorTest.cpp74 int startIndex, stopIndex; local
76 alloc.assign(&startIndex, &stopIndex, &error);
96 int startIndex, stopIndex; local
98 alloc.assign(&startIndex, &stopIndex, &error);
/external/aac/libSBRenc/src/
H A Dinvf_est.cpp247 INT stopIndex, /*!< Stop index. */
262 invIndex = GetInvInt(stopIndex - startIndex);
273 for (j = startIndex; j < stopIndex; j++) {
516 INT stopIndex, /*!< Stop index. */
531 stopChannel, startIndex, stopIndex,
238 calculateDetectorValues( FIXP_DBL **quotaMatrixOrig, SCHAR *indexVector, FIXP_DBL *nrgVector, DETECTOR_VALUES *detectorValues, INT startChannel, INT stopChannel, INT startIndex, INT stopIndex, INT numberOfStrongest ) argument
508 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
H A Dnf_est.cpp199 INT stopIndex, /*!< Stop index. */
222 FIXP_DBL invIndex = GetInvInt(stopIndex - startIndex);
235 for (k = startIndex; k < stopIndex; k++) {
242 for (k = startIndex; k < stopIndex; k++) {
251 for (k = startIndex; k < stopIndex; k++) {
258 for (k = startIndex; k < stopIndex; k++) {
190 qmfBasedNoiseFloorDetection( FIXP_DBL *noiseLevel, FIXP_DBL **quotaMatrixOrig, SCHAR *indexVector, INT startIndex, INT stopIndex, INT startChannel, INT stopChannel, FIXP_DBL ana_max_level, FIXP_DBL noiseFloorOffset, INT missingHarmonicFlag, FIXP_DBL weightFac, INVF_MODE diffThres, INVF_MODE inverseFilteringLevel) argument
/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...]

Completed in 806 milliseconds

12