HomeSort by relevance Sort by last modified time
    Searched full:itemcount (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /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/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) {
  /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...]
  /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...]
  /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/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/chromium/chrome/browser/extensions/
extension_accessibility_api_constants.cc 15 const char kItemCountKey[] = "details.itemCount";
  /external/chromium/chrome/browser/ui/cocoa/applescript/
bookmark_folder_applescript_unittest.mm 86 unsigned int folderCount = 2, itemCount = 3;
89 EXPECT_EQ(itemCount, [[bookmarkBar_.get() bookmarkItems] count]);
184 unsigned int folderCount = 2, itemCount = 3;
185 for (unsigned int i = 0; i < itemCount; ++i) {
187 EXPECT_EQ(itemCount - i, [[bookmarkBar_.get() bookmarkItems] count]);
  /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";
  /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));
  /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/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/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 47 int itemCount = m_popupClient->listSize();
56 for (size_t i = 0; i < itemCount; ++i) {
81 IntSize backingStoreSize(backingStoreWidth, (itemCount * data.m_itemHeight));
  /cts/tests/tests/view/src/android/view/cts/
AccessibilityEventTest.java 179 assertEquals("itemCount has incorrect value", expectedEvent.getItemCount(), receivedEvent
214 assertEquals("itemCount has incorrect value", expectedRecord.getItemCount(),
260 TestCase.assertEquals("itemCount not properly recycled", -1, event.getItemCount());
  /external/webkit/Source/WebCore/platform/
ContextMenu.h 80 unsigned itemCount() const;
  /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/WebCore/platform/graphics/mac/
ComplexTextControllerATSUI.cpp 48 ItemCount count;
58 ItemCount j = 0;
75 for (ItemCount i = 0; i < count; ++i, ++j) {
218 ItemCount boundsCount;
  /external/webkit/Source/WebCore/platform/haiku/
ContextMenuHaiku.cpp 95 unsigned ContextMenu::itemCount() const
  /external/webkit/Source/WebCore/platform/mac/
ContextMenuMac.mm 65 unsigned ContextMenu::itemCount() const
  /external/webkit/Source/WebKit/chromium/public/
WebBlobData.h 69 WEBKIT_API size_t itemCount() const;
  /external/webkit/Source/WebKit/win/
WebHistory.cpp 315 CFIndex itemCount = CFArrayGetCount(datesArray);
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());
448 Vector<IWebHistoryItem*> itemsVector(itemCount);
450 RetainPtr<CFArrayRef> allItems(AdoptCF, CFArrayCreate(kCFAllocatorDefault, (const void**)itemsVector.data(), itemCount, &MarshallingHelpers::kIUnknownArrayCallBacks));
    [all...]

Completed in 1347 milliseconds

1 2 3 4