/external/chromium_org/v8/test/webkit/ |
array-lastIndexOf.js | 30 var lastIndex = 0; 32 lastIndex = testArray.lastIndexOf(2,-500); 33 shouldBe('lastIndex', '-1'); 34 lastIndex = testArray.lastIndexOf(9,500); 35 shouldBe('lastIndex', '2'); 36 lastIndex = testArray.lastIndexOf(2); 37 shouldBe('lastIndex', '3'); 38 lastIndex = testArray.lastIndexOf(7); 39 shouldBe('lastIndex', '-1'); 40 lastIndex = testArray.lastIndexOf(2, 3) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTokenRewriteStream.h | 79 NSInteger lastIndex; 82 @property (getter=getLastIndex, setter=setLastIndex:) NSInteger lastIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTokenRewriteStream.h | 79 NSInteger lastIndex; 82 @property (getter=getLastIndex, setter=setLastIndex:) NSInteger lastIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTokenRewriteStream.h | 79 NSInteger lastIndex; 82 @property (getter=getLastIndex, setter=setLastIndex:) NSInteger lastIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTokenRewriteStream.h | 79 NSInteger lastIndex; 82 @property (assign) NSInteger lastIndex;
|
/dalvik/libdex/ |
DexClass.cpp | 56 * The lastIndex value should be set to 0 before the first field in 64 DexField* pField, u4* lastIndex) { 69 dexReadClassDataField(pData, pField, lastIndex); 77 * The lastIndex value should be set to 0 before the first method in 85 DexMethod* pMethod, u4* lastIndex) { 90 dexReadClassDataMethod(pData, pMethod, lastIndex); 106 u4 lastIndex; 162 lastIndex = 0; 165 &result->staticFields[i], &lastIndex); 168 lastIndex = 0 [all...] |
/external/chromium_org/v8/test/mjsunit/ |
mirror-regexp.js | 39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
ByteBufferHelper.java | 30 int lastIndex = nuSamples.size() - 1; 31 if (lastIndex >= 0 && buffer.hasArray() && nuSamples.get(lastIndex).hasArray() && buffer.array() == nuSamples.get(lastIndex).array() && 32 nuSamples.get(lastIndex).arrayOffset() + nuSamples.get(lastIndex).limit() == buffer.arrayOffset()) { 33 ByteBuffer oldBuffer = nuSamples.remove(lastIndex); 37 } else if (lastIndex >= 0 && 38 buffer instanceof MappedByteBuffer && nuSamples.get(lastIndex) instanceof MappedByteBuffer && 39 nuSamples.get(lastIndex).limit() == nuSamples.get(lastIndex).capacity() - buffer.capacity()) [all...] |
/external/v8/test/mjsunit/ |
mirror-regexp.js | 39 'lastIndex': debug.PropertyAttribute.DontEnum | debug.PropertyAttribute.DontDelete
|
/external/apache-http/src/org/apache/http/message/ |
BasicListHeaderIterator.java | 68 protected int lastIndex; 95 this.lastIndex = -1; 162 this.lastIndex = current; 189 if (this.lastIndex < 0) { 192 this.allHeaders.remove(this.lastIndex); 193 this.lastIndex = -1;
|
/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 39 int lastIndex = 0; 43 lastIndex = it.index(); 44 if(lastIndex==i) 46 tmp -= lastVal * other.coeff(lastIndex,col); 52 eigen_assert(lastIndex==i);
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/ |
ArrayInitializerFormatter.java | 42 final int lastIndex = mCurrentIndex - 1; 43 if (mBufferedIndex == lastIndex) { 45 } else if (mBufferedIndex == lastIndex - 1) { 50 mIndent, lastIndex, elements[1]); 56 mIndent, lastIndex);
|
/external/chromium_org/third_party/skia/src/core/ |
SkAdvancedTypefaceMetrics.cpp | 160 int lastIndex = num_glyphs; 163 lastIndex = 168 for (int gId = firstIndex; gId <= lastIndex; gId++) { 170 if (gId < lastIndex) { 245 if (curRange->fStartId == lastIndex) { 247 SkASSERT(prevRange->fNext->fStartId == lastIndex); 250 finishRange(curRange, lastIndex - 1,
|
SkRegion_path.cpp | 279 int lastIndex = verb_to_initial_last_index(verb); 280 if (lastIndex > 0) { 281 for (int i = 1; i <= lastIndex; i++) {
|
/external/proguard/src/proguard/classfile/util/ |
InternalTypeEnumeration.java | 38 private int lastIndex; 49 this.lastIndex = descriptor.indexOf(ClassConstants.INTERNAL_METHOD_ARGUMENTS_CLOSE); 52 if (lastIndex < 0) 54 lastIndex = descriptor.length(); 75 return index < lastIndex; 114 return descriptor.substring(lastIndex + 1); 193 if (enumeration.lastIndex < descriptor.length())
|
/external/skia/src/core/ |
SkAdvancedTypefaceMetrics.cpp | 160 int lastIndex = num_glyphs; 163 lastIndex = 168 for (int gId = firstIndex; gId <= lastIndex; gId++) { 170 if (gId < lastIndex) { 245 if (curRange->fStartId == lastIndex) { 247 SkASSERT(prevRange->fNext->fStartId == lastIndex); 250 finishRange(curRange, lastIndex - 1,
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
TokenRewriteStream.cs | 151 public int lastIndex; 154 lastIndex = to; 160 return lastIndex + 1; 163 return "<ReplaceOp@" + index + ".." + lastIndex + ":\"" + text + "\">"; 172 return "<DeleteOp@" + index + ".." + lastIndex + ">"; 505 if (iop.index >= rop.index && iop.index <= rop.lastIndex) { 514 if (prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex) { 521 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex; [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
TokenRewriteStream.cs | 171 public int lastIndex; 175 lastIndex = to; 184 return lastIndex + 1; 191 return string.Format("<DeleteOp@{0}..{1}>", stream._tokens[index], stream._tokens[lastIndex]); 194 return string.Format("<ReplaceOp@{0}..{1}:\"{2}\">", stream._tokens[index], stream._tokens[lastIndex], text); 590 else if (iop.index > rop.index && iop.index <= rop.lastIndex) 601 if ( prevRop.index >= rop.index && prevRop.lastIndex <= rop.lastIndex ) 609 prevRop.lastIndex < rop.index || prevRop.index > rop.lastIndex; [all...] |
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
VNodeBuilder.java | 94 int lastIndex = mVNodeList.size() - 1; 95 mVNodeList.remove(lastIndex--); 96 mCurrentVNode = lastIndex >= 0 ? mVNodeList.get(lastIndex) : null;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ClassDataItem.java | 398 int lastIndex = 0; 409 lastIndex = list.get(i).encode(file, out, lastIndex, i);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
ClassDataItem.java | 394 int lastIndex = 0; 405 lastIndex = list.get(i).encode(file, out, lastIndex, i);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ThrowableTest.java | 102 int lastIndex = 0; 103 while (lastIndex < trace.length()) { 104 int index = trace.indexOf('\n', lastIndex); 107 String line = trace.substring(lastIndex, index); 108 lastIndex = index + 1;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
KeyframeAnimation.cpp | 91 size_t lastIndex = numKeyframes - 1; 96 currentIndex = (lastIndex + firstIndex) >> 1; 98 distance = lastIndex - currentIndex; 105 lastIndex = currentIndex;
|
/external/chromium_org/third_party/skia/src/images/ |
SkMovie_gif.cpp | 381 int lastIndex = fCurrIndex; 382 if (lastIndex < 0) { 384 lastIndex = 0; 385 } else if (lastIndex > fGIF->ImageCount - 1) { 387 lastIndex = fGIF->ImageCount - 1; 398 for (int i = startIndex; i <= lastIndex; i++) { 421 if (i == lastIndex || !checkIfWillBeCleared(cur)) { 427 fLastDrawIndex = lastIndex;
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsOp.cpp | 74 int lastIndex = firstIndex != 0 ? firstIndex : angleCount; 97 } while (++nextIndex != lastIndex);
|