Searched refs:itemCount (Results 1 - 25 of 53) sorted by relevance

123

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCountingAdapter.java9 private int itemCount; field in class:CountingAdapter
11 public CountingAdapter(int itemCount) { argument
12 this.itemCount = itemCount;
15 public void setCount(int itemCount) { argument
16 this.itemCount = itemCount;
22 return itemCount;
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuQt.cpp51 unsigned ContextMenu::itemCount() const function in class:WebCore::ContextMenu
78 int itemCount = items->size(); local
79 Vector<ContextMenuItem> menuItemVector(itemCount);
80 for (int i = 0; i < itemCount; ++i)
/external/webkit/Source/WebCore/svg/
H A DSVGPointList.cpp55 unsigned itemCount = fromList.size(); local
56 if (!itemCount || itemCount != toList.size())
58 for (unsigned n = 0; n < itemCount; ++n) {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMapItem.java56 private final int itemCount; field in class:MapItem
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);
124 MapItem(ItemType type, Section section, Item firstItem, Item lastItem, int itemCount) argument
[all...]
/external/chromium/chrome/browser/ui/toolbar/
H A Dwrench_menu_model_unittest.cc59 int itemCount = model.GetItemCount(); local
63 EXPECT_GT(itemCount, 10);
82 for (int i = 0; i < itemCount; ++i) {
/external/icu4c/tools/icuswap/
H A Dicuswap.cpp345 uint32_t itemCount, offset, i; local
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/
H A Dpackage.cpp394 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>
[all...]
H A Dpackage.h151 int32_t itemCount; member in class:Package
175 * Grow itemMax to at least itemCount+1
/external/webkit/Source/WebKit/chromium/src/
H A DExternalPopupMenu.cpp130 int itemCount = m_popupMenuClient->listSize(); local
132 static_cast<size_t>(itemCount));
133 for (int i = 0; i < itemCount; ++i) {
H A DWebBlobData.cpp54 size_t WebBlobData::itemCount() const function in class:WebKit::WebBlobData
/external/webkit/Source/WebCore/platform/brew/
H A DContextMenuBrew.cpp53 unsigned ContextMenu::itemCount() const function in class:WebCore::ContextMenu
/external/webkit/Source/WebCore/platform/chromium/
H A DContextMenuChromium.cpp51 unsigned ContextMenu::itemCount() const function in class:WebCore::ContextMenu
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHistory.idl108 HRESULT addItems([in] int itemCount, [in] IWebHistoryItem** items);
115 HRESULT removeItems([in] int itemCount, [in] IWebHistoryItem** items);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAdapterView.java33 private int itemCount = 0; field in class:ShadowAdapterView
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/
H A DPopupMenuHaiku.cpp105 int itemCount = m_popupClient->listSize(); local
106 for (int i = 0; i < itemCount; i++) {
H A DContextMenuHaiku.cpp95 unsigned ContextMenu::itemCount() const function in class:WebCore::ContextMenu
/external/webkit/Source/WebKit/chromium/public/
H A DWebBlobData.h69 WEBKIT_API size_t itemCount() const;
/external/icu4c/tools/genren/
H A Dgenren.pl129 $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/webkit/Source/WebCore/platform/mac/
H A DContextMenuMac.mm65 unsigned ContextMenu::itemCount() const
/external/webkit/Source/WebKit/win/
H A DWebHistory.h76 /* [in] */ int itemCount,
80 /* [in] */ int itemCount,
H A DWebHistory.cpp315 CFIndex itemCount = CFArrayGetCount(datesArray); local
316 for (CFIndex i = 0; i < itemCount; ++i) {
409 /* [in] */ int itemCount,
419 for (int i = itemCount - 1; i >= 0; --i) {
429 /* [in] */ int itemCount,
433 for (int i = 0; i < itemCount; ++i) {
447 CFIndex itemCount = CFDictionaryGetCount(m_entriesByURL.get()); local
448 Vector<IWebHistoryItem*> itemsVector(itemCount);
450 RetainPtr<CFArrayRef> allItems(AdoptCF, CFArrayCreate(kCFAllocatorDefault, (const void**)itemsVector.data(), itemCount, &MarshallingHelpers::kIUnknownArrayCallBacks));
408 addItems( int itemCount, IWebHistoryItem** items) argument
428 removeItems( int itemCount, IWebHistoryItem** items) argument
/external/webkit/Source/WebCore/platform/
H A DContextMenu.h80 unsigned itemCount() const;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
H A DWebPopupMenuWin.cpp47 int itemCount = m_popupClient->listSize(); local
56 for (size_t i = 0; i < itemCount; ++i) {
81 IntSize backingStoreSize(backingStoreWidth, (itemCount * data.m_itemHeight));
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebkitplatformplugin.h48 virtual int itemCount() const = 0;
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A Dqwebkitplatformplugin.h47 virtual int itemCount() const = 0;

Completed in 410 milliseconds

123