/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...] |
BaseMenuPresenter.java | 89 final int itemCount = visibleItems.size(); 90 for (int i = 0; i < itemCount; i++) {
|
/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/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 | 393 itemCount=0; 425 for(idx=0; idx<itemCount; ++idx) { 500 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */ 503 /* itemCount does not fit */ 506 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes); 507 setItemCapacity(itemCount); /* resize so there's space */ 508 if(itemCount==0) { 510 } else if(length<(4+8*itemCount)) { 515 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset); 525 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 | 124 $itemCount = 0; 140 $itemCount++; 207 die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n"; 211 die "Error: $itemCount lines from $fileCount files processed, but $symbolCount symbols were found.\n"; 214 print " Loaded $symbolCount symbols from $itemCount lines in $fileCount files.\n";
|
/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];
|
FakeExpandableAdapter.java | 46 private void createItems(Iterable<DataBindingItem> iterable, final int itemCount, 50 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;
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/ |
DisplayLog.java | 123 int itemCount = mLogTable.getItemCount(); 124 if (itemCount > 0) { 125 mLogTable.showItem(mLogTable.getItem(itemCount - 1)); 170 int itemCount = mLogTable.getItemCount(); 171 if (itemCount > 0) { 172 mLogTable.showItem(mLogTable.getItem(itemCount - 1));
|
/external/webkit/Source/WebCore/platform/mac/ |
ContextMenuMac.mm | 65 unsigned ContextMenu::itemCount() const
|
/external/webkit/Source/WebKit/win/ |
WebHistory.h | 76 /* [in] */ int itemCount, 80 /* [in] */ int itemCount,
|