HomeSort by relevance Sort by last modified time
    Searched defs:addedCount (Results 1 - 25 of 31) sorted by null

1 2

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
RankAwarePromoter.java 196 int addedCount = 0;
201 addedCount++;
204 } while (cursor.moveToNext() && addedCount < count);
205 return addedCount;
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 310 int addedCount = 0;
312 if (indexOf(o, newElements, 0, elements.length + addedCount) == -1) {
313 newElements[elements.length + addedCount++] = o;
316 if (addedCount < toAdd.length) {
318 newElements, 0, elements.length + addedCount); // trim to size
321 return addedCount;
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshot.js     [all...]