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

1 2 3

  /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/third_party/icu/source/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/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/webkit/WebCore/platform/qt/
ContextMenuQt.cpp 54 unsigned ContextMenu::itemCount() const
QtAbstractWebPopup.h 42 int itemCount() const { return m_popupClient->listSize(); }
  /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/third_party/icu/source/tools/toolutil/
package.cpp 384 itemCount=0;
413 for(idx=0; idx<itemCount; ++idx) {
486 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
489 /* itemCount does not fit */
492 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes);
493 if(itemCount==0) {
495 } else if(length<(4+8*itemCount)) {
500 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
510 if(itemCount>0) {
515 if(itemCount>MAX_FILE_COUNT)
    [all...]
package.h 147 int32_t itemCount;
  /external/icu4c/tools/toolutil/
package.cpp 389 itemCount=0;
418 for(idx=0; idx<itemCount; ++idx) {
491 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
494 /* itemCount does not fit */
497 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes);
498 if(itemCount==0) {
500 } else if(length<(4+8*itemCount)) {
505 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
515 if(itemCount>0) {
520 if(itemCount>MAX_FILE_COUNT)
    [all...]
package.h 147 int32_t itemCount;
  /external/webkit/WebCore/platform/
ContextMenu.h 62 unsigned itemCount() const;
  /external/webkit/WebCore/platform/chromium/
ContextMenuChromium.cpp 53 unsigned ContextMenu::itemCount() const
  /external/webkit/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/WebCore/platform/win/
ContextMenuWin.cpp 59 unsigned ContextMenu::itemCount() const
78 insertItem(itemCount(), item);
  /external/webkit/WebCore/platform/haiku/
ContextMenuHaiku.cpp 98 unsigned ContextMenu::itemCount() const
  /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/WebKit/win/
WebHistory.h 77 /* [in] */ int itemCount,
81 /* [in] */ int itemCount,
WebHistory.cpp 317 CFIndex itemCount = CFArrayGetCount(datesArray);
318 for (CFIndex i = 0; i < itemCount; ++i) {
411 /* [in] */ int itemCount,
421 for (int i = itemCount - 1; i >= 0; --i) {
431 /* [in] */ int itemCount,
435 for (int i = 0; i < itemCount; ++i) {
449 CFIndex itemCount = CFDictionaryGetCount(m_entriesByURL.get());
450 Vector<IWebHistoryItem*> itemsVector(itemCount);
452 RetainPtr<CFArrayRef> allItems(AdoptCF, CFArrayCreate(kCFAllocatorDefault, (const void**)itemsVector.data(), itemCount, &MarshallingHelpers::kIUnknownArrayCallBacks));
    [all...]
  /external/webkit/WebCore/svg/
SVGPathSegList.cpp 184 unsigned itemCount = fromList->numberOfItems();
185 if (!itemCount || itemCount != toList->numberOfItems())
189 for (unsigned n = 0; n < itemCount; ++n) {
  /external/webkit/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 144 for (int i = 0; i < itemCount(); ++i) {
  /external/webkit/WebCore/platform/mac/
ContextMenuMac.mm 135 unsigned ContextMenu::itemCount() const
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEvent.java 359 * @param itemCount The number of items.
361 public void setItemCount(int itemCount) {
362 mItemCount = itemCount;
706 builder.append("; ItemCount: " + mItemCount);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
ValueParser.java 224 int itemCount = length / 4;
227 for (int i = 0; i < itemCount; i++, valueIndex += 4) {
  /external/chromium/third_party/icu/source/common/
triedict.cpp     [all...]

Completed in 893 milliseconds

1 2 3