HomeSort by relevance Sort by last modified time
    Searched refs:listSize (Results 26 - 50 of 79) sorted by null

12 3 4

  /packages/apps/Settings/src/com/android/settings/
Utils.java 103 int listSize = list.size();
104 for (int i = 0; i < listSize; i++) {
165 int listSize = list.size();
166 for (int i = 0; i < listSize; i++) {
226 int listSize = list.size();
227 for (int i = 0; i < listSize; i++) {
ZonePicker.java 122 final int listSize = adapter.getCount();
123 for (int i = 0; i < listSize; i++) {
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 552 int listSize = cfgWorklist.size() - 1;
553 SsaBasicBlock block = cfgWorklist.remove(listSize);
558 int listSize = cfgPhiWorklist.size() - 1;
559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize);
564 int listSize = varyingWorklist.size() - 1;
565 SsaInsn insn = varyingWorklist.remove(listSize);
578 int listSize = ssaWorklist.size() - 1;
579 SsaInsn insn = ssaWorklist.remove(listSize);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 552 int listSize = cfgWorklist.size() - 1;
553 SsaBasicBlock block = cfgWorklist.remove(listSize);
558 int listSize = cfgPhiWorklist.size() - 1;
559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize);
564 int listSize = varyingWorklist.size() - 1;
565 SsaInsn insn = varyingWorklist.remove(listSize);
578 int listSize = ssaWorklist.size() - 1;
579 SsaInsn insn = ssaWorklist.remove(listSize);
  /external/webkit/Source/WebCore/platform/wx/
PopupMenuWx.cpp 93 int size = client()->listSize();
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.h 96 virtual int listSize() const;
RenderTextControlSingleLine.h 132 virtual int listSize() const;
RenderTextControlSingleLine.cpp     [all...]
RenderLayerBacking.cpp 858 size_t listSize = negZOrderList->size();
859 for (size_t i = 0; i < listSize; ++i) {
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 701 int32_t listSize;
705 : list(NULL), listMax(16), listSize(0)
711 : list(NULL), listMax(16), listSize(0)
760 if (listSize >= listMax) {
765 uprv_memcpy(newList, list, listSize * sizeof(Order));
770 list[listSize].order = order;
771 list[listSize].lowOffset = low;
772 list[listSize].highOffset = high;
774 listSize += 1;
779 if (index >= listSize) {
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 136 if (!m_scrollbar && visibleItems() < client()->listSize()) {
307 int itemCount = client()->listSize();
384 if (i < 0 || i >= client()->listSize() || i == focusedIndex())
424 int size = client()->listSize();
438 int size = client()->listSize();
452 int size = client()->listSize();
471 int size = client()->listSize();
598 int itemCount = client()->listSize();
805 scrollbar()->setEnabled(visibleItems < client()->listSize());
807 scrollbar()->setProportion(visibleItems, client()->listSize());
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 183 int listSize = list.size();
184 assertEquals("addAll() not atomic; size=" + listSize, 0, listSize % 1000);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
MjpegFileWriter.java 140 public int listSize = 200;
152 baos.write(intBytes(swapInt(listSize)));
378 public int listSize = 0;
388 baos.write(intBytes(swapInt(listSize)));
  /external/webkit/Source/WebCore/page/
Chrome.cpp 412 unsigned listSize = files->length();
413 if (listSize > 1) {
415 for (size_t i = 0; i < listSize; ++i) {
417 if (i != listSize - 1)
  /external/webkit/Source/WebCore/platform/android/
PopupMenuAndroid.cpp 140 int size = m_popupClient->listSize();
  /external/webkit/Source/WebCore/platform/haiku/
PopupMenuHaiku.cpp 105 int itemCount = m_popupClient->listSize();
  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.h 88 virtual int listSize() const { return getSuggestionsCount(); }
ExternalPopupMenu.cpp 130 int itemCount = m_popupMenuClient->listSize();
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebPopupMenu.cpp 77 size_t size = m_popupClient->listSize();
  /packages/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 87 int listSize = list.size();
88 for (int i = 0; i < listSize; i++) {
  /external/icu4c/common/
icuplug.c 61 * @param listSize the number of entries in the list
64 * @return the new listsize
66 static int32_t uplug_removeEntryAt(void *list, int32_t listSize, int32_t memberSize, int32_t itemToRemove) {
70 if(listSize<1) {
71 return listSize;
75 if(listSize > itemToRemove+1) {
79 return listSize-1;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
PopupMenuQt.cpp 44 virtual int itemCount() const { return d ? d->listSize() : 0; }
  /external/srec/srec/Recognizer/src/
RecognizerResultImpl.c 125 const size_t nbest, LCHAR** list, size_t* listSize)
140 CHKLOG(rc, result->getKeyList(result, list, listSize));
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.cpp 234 size_t listSize = sublayers.size();
235 for (size_t i = 0; i < listSize; i++)
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domstringlistitem02.js 94 var listSize;

Completed in 1116 milliseconds

12 3 4