HomeSort by relevance Sort by last modified time
    Searched refs:startIndex (Results 51 - 75 of 229) sorted by null

1 23 4 5 6 7 8 910

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaSet.java 201 protected int enumerateMediaItems(ItemConsumer consumer, int startIndex) {
209 consumer.consume(startIndex + start + i, item);
219 ItemConsumer consumer, int startIndex) {
221 start += enumerateMediaItems(consumer, startIndex);
225 consumer, startIndex + start);
ClusterAlbum.java 96 protected int enumerateMediaItems(ItemConsumer consumer, int startIndex) {
97 mDataManager.mapMediaItems(mPaths, consumer, startIndex);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonToken.h 44 NSUInteger startIndex;
56 @property (assign, getter=getStart, setter=setStart:) NSUInteger startIndex;
ANTLRCommonTree.h 33 NSInteger startIndex;
40 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex) NSInteger startIndex;
ANTLRCommonTokenStream.h 79 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonToken.h 44 NSUInteger startIndex;
56 @property (assign, getter=getStart, setter=setStart:) NSUInteger startIndex;
ANTLRCommonTree.h 33 NSInteger startIndex;
40 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex) NSInteger startIndex;
ANTLRCommonTokenStream.h 79 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonToken.h 44 NSUInteger startIndex;
56 @property (assign, getter=getStart, setter=setStart:) NSUInteger startIndex;
ANTLRCommonTree.h 33 NSInteger startIndex;
40 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex) NSInteger startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonToken.h 44 NSInteger startIndex;
125 @property (assign, getter=getStart, setter=setStart:) NSInteger startIndex;
  /external/aac/libSBRenc/src/
invf_est.h 158 INT startIndex,
  /external/skia/src/gpu/gl/
GrGpuGLShaders.h 34 int* startIndex,
  /external/icu4c/common/
uvector.cpp 288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
291 return indexOf(key, startIndex, HINT_KEY_POINTER);
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
297 return indexOf(key, startIndex, HINT_KEY_INTEGER);
301 int32_t UVector::indexOf(UHashTok key, int32_t startIndex, int8_t hint) const {
304 for (i=startIndex; i<count; ++i) {
310 for (i=startIndex; i<count; ++i) {
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 118 const int startIndex = getStartIndexFromCoordinates(x, y);
120 AKLOGI("hasSpaceProximity: index %d, %d, %d", startIndex, x, y);
124 AKLOGI("Index: %d", mProximityCharsArray[startIndex + i]);
126 if (mProximityCharsArray[startIndex + i] == KEYCODE_SPACE) {
159 const int startIndex = getStartIndexFromCoordinates(x, y);
160 if (startIndex >= 0) {
162 const int32_t c = mProximityCharsArray[startIndex + i];
unigram_dictionary.cpp 108 const int startIndex = codesDest - codesBuffer;
111 xCoordinatesBuffer[startIndex + i] = xcoordinates[codesBufferSize - codesRemain + i];
112 yCoordinatesBuffer[startIndex + i] = ycoordinates[codesBufferSize - codesRemain + i];
158 memcpy(&xCoordinatesBuffer[startIndex], &xcoordinates[codesBufferSize - codesRemain],
160 memcpy(&yCoordinatesBuffer[startIndex], &ycoordinates[codesBufferSize - codesRemain],
165 startIndex + codesRemain, bigramMap, bigramFilter, useFullEditDistance, correction,
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java 82 protected int startIndex;
308 * @param startIndex the starting index of this geometry in the batched mesh
310 protected void batch(BatchNode node, int startIndex) {
312 this.startIndex = startIndex;
322 this.startIndex = 0;
  /external/replicaisland/src/com/replica/replicaisland/
Grid.java 240 public void drawStrip(GL10 gl, boolean useTexture, int startIndex, int indexCount) {
242 if (startIndex + indexCount >= mIndexCount) {
243 count = mIndexCount - startIndex;
247 GL10.GL_UNSIGNED_SHORT, mIndexBuffer.position(startIndex));
251 GL11.GL_UNSIGNED_SHORT, startIndex * CHAR_SIZE);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 184 d.startIndex = startingLookaheadIndex;
192 int numHidden = GetNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
193 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
221 int numHidden = GetNumberOfHiddenTokens(d.startIndex, thisRefIndex);
222 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
226 d.decision.ruleName + "-" + d.decision.decision + " start index " + d.startIndex);
252 d.decision.decision + " start index " + d.startIndex);
723 public int startIndex;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 197 d.startIndex = startingLookaheadIndex;
206 int numHidden = GetNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
207 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
239 int numHidden = GetNumberOfHiddenTokens(d.startIndex, thisRefIndex);
240 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
245 d.decision.ruleName + "-" + d.decision.decision + " start index " + d.startIndex);
277 d.decision.decision + " start index " + d.startIndex);
787 public int startIndex;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 103 public int startIndex;
240 d.startIndex = startingLookaheadIndex;
248 int numHidden = getNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
249 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
272 int numHidden = getNumberOfHiddenTokens(d.startIndex, thisRefIndex);
273 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
276 d.decision.ruleName+"-"+d.decision.decision+" start index "+d.startIndex);
297 d.decision.decision+" start index "+d.startIndex);
  /external/icu4c/samples/citer/
citer.cpp 76 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
77 u_fprintf(out, "startIndex() or endIndex() failed\n");
140 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
141 u_fprintf(out, "startIndex() or endIndex() failed\n");
  /external/icu4c/test/intltest/
tstnrapi.cpp 89 copy.startIndex()!=iter.startIndex() ||
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 104 int startIndex =
128 for (int newIndex = startIndex; newIndex < oldIndex; newIndex++)
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 86 int startIndex = mNextServerIndex;
102 if (mNextServerIndex == startIndex) break;

Completed in 522 milliseconds

1 23 4 5 6 7 8 910