HomeSort by relevance Sort by last modified time
    Searched refs:itemCount (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CountingAdapter.java 9 private int itemCount;
11 public CountingAdapter(int itemCount) {
12 this.itemCount = itemCount;
15 public void setCount(int itemCount) {
16 this.itemCount = itemCount;
22 return itemCount;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterEmptyPromptSet.java 38 int itemCount = mBaseSet.getMediaItemCount();
39 if (itemCount > 0) {
40 return itemCount;
48 int itemCount = mBaseSet.getMediaItemCount();
49 if (itemCount > 0) {
  /external/webkit/Source/WebCore/platform/qt/
ContextMenuQt.cpp 51 unsigned ContextMenu::itemCount() const
78 int itemCount = items->size();
79 Vector<ContextMenuItem> menuItemVector(itemCount);
80 for (int i = 0; i < itemCount; ++i)
  /external/webkit/Source/WebCore/svg/
SVGPointList.cpp 55 unsigned itemCount = fromList.size();
56 if (!itemCount || itemCount != toList.size())
58 for (unsigned n = 0; n < itemCount; ++n) {
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenu.java 130 final int itemCount = items.size();
131 for (int i = 0; i < itemCount; i++) {
150 final int itemCount = items.size();
152 for (int i = 0; i < itemCount; i++) {
165 final int itemCount = items.size();
167 for (int i = 0; i < itemCount; i++) {
202 int itemCount = items.size();
204 while (i < itemCount) {
207 itemCount--;
221 final int itemCount = items.size()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MapItem.java 56 private final int itemCount;
122 * @param itemCount {@code > 0;} count of items covered
125 Item lastItem, int itemCount) {
144 if (itemCount <= 0) {
145 throw new IllegalArgumentException("itemCount <= 0");
152 this.itemCount = itemCount;
172 this.itemCount = 1;
226 out.annotate(4, " size: " + Hex.u4(itemCount));
232 out.writeInt(itemCount);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MapItem.java 56 private final int itemCount;
122 * @param itemCount {@code > 0;} count of items covered
125 Item lastItem, int itemCount) {
144 if (itemCount <= 0) {
145 throw new IllegalArgumentException("itemCount <= 0");
152 this.itemCount = itemCount;
172 this.itemCount = 1;
226 out.annotate(4, " size: " + Hex.u4(itemCount));
232 out.writeInt(itemCount);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 56 private final int itemCount;
122 * @param itemCount {@code > 0;} count of items covered
125 Item lastItem, int itemCount) {
144 if (itemCount <= 0) {
145 throw new IllegalArgumentException("itemCount <= 0");
152 this.itemCount = itemCount;
172 this.itemCount = 1;
226 out.annotate(4, " size: " + Hex.u4(itemCount));
232 out.writeInt(itemCount);
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
wrench_menu_model_unittest.cc 59 int itemCount = model.GetItemCount();
63 EXPECT_GT(itemCount, 10);
82 for (int i = 0; i < itemCount; ++i) {
  /external/icu4c/tools/icuswap/
icuswap.cpp 345 uint32_t itemCount, offset, i;
413 itemCount=ds->readUInt32(*(const uint32_t *)inBytes);
414 if(itemCount==0) {
420 offset=ds->readUInt32(inEntries[itemCount-1].dataOffset);
429 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
432 /* itemCount does not fit */
434 itemCount=0; /* make compilers happy */
436 itemCount=ds->readUInt32(*(const uint32_t *)inBytes);
437 if(itemCount==0) {
439 } else if((uint32_t)length<(4+8*itemCount)) {
    [all...]
  /external/icu4c/tools/toolutil/
package.cpp 394 itemCount=0;
426 for(idx=0; idx<itemCount; ++idx) {
501 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
504 /* itemCount does not fit */
507 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes);
508 setItemCapacity(itemCount); /* resize so there's space */
509 if(itemCount==0) {
511 } else if(length<(4+8*itemCount)) {
516 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
526 if(itemCount>0)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListScrollListener.java 65 public void onScroll(AbsListView view, int firstCell, int cellCount, int itemCount) {
67 mText.setText("Showing " + firstCell + "-" + last + "/" + itemCount);
  /external/webkit/Source/WebKit/chromium/src/
ExternalPopupMenu.cpp 130 int itemCount = m_popupMenuClient->listSize();
132 static_cast<size_t>(itemCount));
133 for (int i = 0; i < itemCount; ++i) {
  /external/webkit/Source/WebCore/platform/brew/
ContextMenuBrew.cpp 53 unsigned ContextMenu::itemCount() const
  /external/webkit/Source/WebCore/platform/chromium/
ContextMenuChromium.cpp 51 unsigned ContextMenu::itemCount() const
  /external/webkit/Source/WebKit/chromium/public/
WebBlobData.h 69 WEBKIT_API size_t itemCount() const;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHistory.idl 108 HRESULT addItems([in] int itemCount, [in] IWebHistoryItem** items);
115 HRESULT removeItems([in] int itemCount, [in] IWebHistoryItem** items);
  /external/icu4c/tools/genren/
genren.pl 129 $itemCount = 0;
145 $itemCount++;
222 die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n";
226 die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n";
229 print " Loaded $symbolCount symbols from $itemCount lines in $fileCount files.\n";
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAdapterView.java 33 private int itemCount = 0;
72 itemCount = adapter == null ? 0 : adapter.getCount();
74 updateEmptyStatus(itemCount == 0);
77 if (hasOnItemSelectedListener() && itemCount == 0) {
181 return itemCount;
  /external/webkit/Source/WebCore/platform/haiku/
PopupMenuHaiku.cpp 105 int itemCount = m_popupClient->listSize();
106 for (int i = 0; i < itemCount; i++) {
ContextMenuHaiku.cpp 95 unsigned ContextMenu::itemCount() const
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeAdapter.java 48 final int itemCount = getBinding().getItemCount();
52 int[] typeCount = new int[itemCount];
  /external/webkit/Source/WebCore/platform/
ContextMenu.h 80 unsigned itemCount() const;
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
qwebkitplatformplugin.h 47 virtual int itemCount() const = 0;
  /external/webkit/Source/WebCore/platform/mac/
ContextMenuMac.mm 65 unsigned ContextMenu::itemCount() const

Completed in 907 milliseconds

1 2 3 4 5 6