HomeSort by relevance Sort by last modified time
    Searched full:firstindex (Results 1 - 25 of 37) sorted by null

1 2

  /external/proguard/src/proguard/classfile/util/
InternalTypeEnumeration.java 37 private int firstIndex;
48 this.firstIndex = descriptor.indexOf(ClassConstants.INTERNAL_METHOD_ARGUMENTS_OPEN);
50 this.index = firstIndex + 1;
65 return descriptor.substring(0, firstIndex);
183 if (enumeration.firstIndex >= 0)
  /external/webkit/Source/WebCore/inspector/front-end/
CSSCompletions.js 43 var firstIndex = this._firstIndexOfPrefix(prefix);
44 if (firstIndex === -1)
48 while (firstIndex < this._values.length && this._values[firstIndex].indexOf(prefix) === 0)
49 results.push(this._values[firstIndex++]);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListRemoveTester.java 43 int firstIndex = getList().indexOf(duplicate);
51 firstIndex == getList().indexOf(duplicate));
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
grid.js 156 * @param {number} firstIndex Index of the first item in viewport.
161 getItemsInViewPort: function(itemHeight, firstIndex, scrollTop) {
166 this.countItemsInRange_(firstIndex, scrollTop + clientHeight));
168 count = Math.min(count, this.dataModel.length - firstIndex);
174 * @param {number} firstIndex The index of first item, inclusively.
180 addItems: function(firstIndex, lastIndex, cachedItems, newCachedItems) {
187 for (var y = firstIndex; y < lastIndex; y++) {
list.js 796 * @param {number} firstIndex Index of the first item in viewport.
800 getItemsInViewPort: function(itemHeight, firstIndex, scrollTop) {
809 this.dataModel.length - firstIndex,
812 this.countItemsInRange_(firstIndex, scrollTop + clientHeight)));
817 * @param {number} firstIndex The index of first item, inclusively.
822 addItems: function(firstIndex, lastIndex, cachedItems, newCachedItems) {
826 for (var y = firstIndex; y < lastIndex; y++) {
871 var firstIndex = autoExpands ? 0 : this.getIndexForListOffset_(scrollTop);
878 var itemsInViewPort = this.getItemsInViewPort(itemHeight, firstIndex,
880 var lastIndex = firstIndex + itemsInViewPort
    [all...]
  /external/chromium-trace/src/shared/js/cr/ui/
grid.js 230 var firstIndex =
235 this.countItemsInRange_(firstIndex, scrollTop + clientHeight));
237 count = Math.min(count, this.dataModel.length - firstIndex);
239 first: firstIndex,
241 last: firstIndex + count - 1
248 * @param {number} firstIndex The index of first item, inclusively.
254 mergeItems: function(firstIndex, lastIndex, cachedItems, newCachedItems) {
256 firstIndex, lastIndex, cachedItems, newCachedItems);
273 // [firstIndex, lastIndex). Ignore it.
274 if (index >= firstIndex && nextIndex < lastIndex &
    [all...]
list.js 912 var firstIndex = this.getIndexForListOffset_(scrollTop);
916 first: firstIndex,
917 length: lastIndex - firstIndex + 1,
924 * [firstIndex, lastIndex). Removes or adds items if needed.
927 * @param {number} firstIndex The index of first item, inclusively.
932 mergeItems: function(firstIndex, lastIndex, cachedItems, newCachedItems) {
951 var currentIndex = firstIndex;
980 this.pinnedItem_.hidden = index < firstIndex || index >= lastIndex;
    [all...]
  /libcore/luni/src/main/java/java/sql/
Date.java 217 int firstIndex = dateString.indexOf('-');
218 int secondIndex = dateString.indexOf('-', firstIndex + 1);
224 if (secondIndex == -1 || firstIndex == 0
229 int year = Integer.parseInt(dateString.substring(0, firstIndex));
230 int month = Integer.parseInt(dateString.substring(firstIndex + 1,
Time.java 228 int firstIndex = timeString.indexOf(':');
229 int secondIndex = timeString.indexOf(':', firstIndex + 1);
235 if (secondIndex == -1 || firstIndex == 0
240 int hour = Integer.parseInt(timeString.substring(0, firstIndex));
241 int minute = Integer.parseInt(timeString.substring(firstIndex + 1,
  /sdk/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp 420 int firstIndex = stride * first;
427 (unsigned char *)state->data + firstIndex, datalen);
431 (unsigned char *)state->data + firstIndex, datalen);
435 (unsigned char *)state->data + firstIndex, datalen);
446 (unsigned char *)state->data + firstIndex, datalen);
450 (unsigned char *) state->data + firstIndex, datalen);
454 (unsigned char * ) state->data + firstIndex, datalen);
458 (unsigned char *)state->data + firstIndex, datalen);
467 (GLuint)state->data + firstIndex);
471 (GLuint) state->data + firstIndex);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 333 size_t firstIndex = 0;
334 for ( ; firstIndex < valueList.size(); ++firstIndex) {
335 if (operationsAt(valueList, firstIndex)->operations().size() > 0)
339 if (firstIndex >= valueList.size())
342 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
345 for (size_t i = firstIndex + 1; i < valueList.size(); ++i) {
382 for (size_t i = firstIndex + 1; i < valueList.size(); ++i) {
  /external/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 155 int firstIndex = 0;
158 firstIndex = static_cast<int>(subsetGlyphIDs[0]);
162 curRange = appendRange(&result, firstIndex);
164 for (int gId = firstIndex; gId <= lastIndex; gId++) {
  /dalvik/dx/src/com/android/dx/ssa/
PhiTypeResolver.java 134 int firstIndex = -1;
142 firstIndex = i;
155 if (i == firstIndex) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
PhiTypeResolver.java 134 int firstIndex = -1;
142 firstIndex = i;
155 if (i == firstIndex) {
  /external/chromium/chrome/browser/ui/cocoa/
table_model_array_controller.mm 121 for (NSUInteger i = [rows firstIndex];
130 for (NSUInteger i = [rows firstIndex];
230 for (NSUInteger i = [proposedIndexes firstIndex];
task_manager_mac_unittest.mm 109 EXPECT_EQ(1u, [selection firstIndex]);
  /external/skia/src/pdf/
SkPDFDocument.cpp 17 // Add the resources, starting at firstIndex to the catalog, removing any dupes.
19 void addResourcesToCatalog(int firstIndex, bool firstPage,
22 for (int i = firstIndex; i < resourceList->count(); i++) {
  /dalvik/vm/
Debugger.h 186 bool dvmDbgOutputArray(ObjectId arrayId, int firstIndex, int count,
188 bool dvmDbgSetArrayElements(ObjectId arrayId, int firstIndex, int count,
  /packages/apps/Calendar/src/com/android/calendar/
EventLoader.java 104 int firstIndex = Math.max(firstDay - startDay, 0);
107 for(int i = firstIndex; i <= lastIndex; i++) {
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 410 final int firstIndex = buildInto.size();
448 builder.withValueBackReference(Data.RAW_CONTACT_ID, firstIndex);
461 final boolean addedOperations = buildInto.size() > firstIndex;
465 buildInto.add(firstIndex, builder.build());
475 builder.withSelectionBackReference(0, firstIndex);
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 370 final int firstIndex = buildInto.size();
401 builder.withValueBackReference(Data.RAW_CONTACT_ID, firstIndex);
414 final boolean addedOperations = buildInto.size() > firstIndex;
418 buildInto.add(firstIndex, builder.build());
428 builder.withSelectionBackReference(0, firstIndex);
  /external/icu4c/samples/cal/
cal.c 51 int32_t firstIndex,
282 * firstIndex is the index of the symbol to place first in
291 int32_t firstIndex,
307 int32_t idx = (i + firstIndex) % arrayLength;
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
Stripifier.java     [all...]
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 163 int firstIndex = select->activeSelectionStartListIndex();
164 if (firstIndex >= 0 && !listIndexIsVisible(select->activeSelectionEndListIndex()))
165 scrollToRevealElementAtListIndex(firstIndex);
  /frameworks/native/libs/binder/
Parcel.cpp 369 int firstIndex = -1, lastIndex = -2;
386 if (firstIndex == -1) {
387 firstIndex = i;
392 int numObjects = lastIndex - firstIndex + 1;
424 for (int i = firstIndex; i <= lastIndex; i++) {
    [all...]

Completed in 2270 milliseconds

1 2