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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOListElement.h 35 int start() const { return m_hasExplicitStart ? m_start : (m_isReversed ? itemCount() : 1); }
47 unsigned itemCount() const
  /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 55 private final int itemCount;
121 * @param itemCount {@code > 0;} count of items covered
124 Item lastItem, int itemCount) {
143 if (itemCount <= 0) {
144 throw new IllegalArgumentException("itemCount <= 0");
151 this.itemCount = itemCount;
171 this.itemCount = 1;
225 out.annotate(4, " size: " + Hex.u4(itemCount));
231 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_org/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/icu/icu4c/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/chromium_org/third_party/icu/source/tools/toolutil/
package.cpp 396 itemCount=0;
428 for(idx=0; idx<itemCount; ++idx) {
512 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
515 /* itemCount does not fit */
518 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes);
519 setItemCapacity(itemCount); /* resize so there's space */
520 if(itemCount==0) {
522 } else if(length<(4+8*itemCount)) {
527 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
537 if(itemCount<=0)
    [all...]
package.h 168 int32_t itemCount;
192 * Grow itemMax to at least itemCount+1
  /external/icu/icu4c/source/tools/toolutil/
package.cpp 396 itemCount=0;
428 for(idx=0; idx<itemCount; ++idx) {
512 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
515 /* itemCount does not fit */
518 itemCount=udata_readInt32(ds, *(const int32_t *)inBytes);
519 setItemCapacity(itemCount); /* resize so there's space */
520 if(itemCount==0) {
522 } else if(length<(4+8*itemCount)) {
527 offset=20+(int32_t)ds->readUInt32(inEntries[itemCount-1].dataOffset);
537 if(itemCount<=0)
    [all...]
package.h 168 int32_t itemCount;
192 * Grow itemMax to at least itemCount+1
  /external/chromium_org/third_party/WebKit/Source/web/
ExternalPopupMenu.cpp 189 int itemCount = popupMenuClient.listSize();
191 Vector<WebMenuItemInfo> items(static_cast<size_t>(itemCount));
192 for (int i = 0; i < itemCount; ++i) {
217 if (count < itemCount)
228 int itemCount = popupMenuClient.listSize();
230 for (int i = 0; i < itemCount ; ++i) {
244 int itemCount = popupMenuClient.listSize();
246 for (int i = 0; i < itemCount; ++i) {
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobData.h 67 BLINK_PLATFORM_EXPORT size_t itemCount() const;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportControl.js 78 itemCount: function() { return 0; },
200 this._cachedProviderElements = new Array(this._provider.itemCount());
213 var itemCount = this._provider.itemCount();
214 if (!itemCount)
216 this._cumulativeHeights = new Int32Array(itemCount);
218 for (var i = 1; i < itemCount; ++i)
297 this._headSelection = this._createSelectionModel(this._provider.itemCount() - 1, this.element, this.element.children.length);
365 var itemCount = this._provider.itemCount();
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/chrome/browser/ui/toolbar/
wrench_menu_model_unittest.cc 121 int itemCount = model.GetItemCount();
125 EXPECT_GT(itemCount, 10);
145 for (int i = 0; i < itemCount; ++i) {
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebBlobData.cpp 49 size_t WebBlobData::itemCount() const
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 235 final int itemCount = adapter.getCount();
236 for (int i = 0; i < itemCount; i++) {
358 final int itemCount = adapter.getCount();
359 for (int i = 0; i < itemCount; i++) {
496 final int itemCount = years.length;
497 for (int i = 0; i < itemCount; i++) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
StyleSheetOutlineDialog.js 62 itemCount: function()
FilteredItemSelectionDialog.js 120 if (!this._delegate.itemCount())
208 for (var i = fromIndex; i < this._delegate.itemCount() && workDone < maxWorkItems; ++i) {
235 if (i < this._delegate.itemCount()) {
352 itemCount: function()
423 itemCount: function()
576 itemCount: function()
701 itemCount: function()
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
SelectFileDialog.java 228 int itemCount = clipData.getItemCount();
229 if (itemCount == 0) {
234 Uri[] filePathArray = new Uri[itemCount];
235 for (int i = 0; i < itemCount; ++i) {
  /external/chromium_org/ui/app_list/cocoa/
apps_grid_controller.h 79 - (size_t)itemCount;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 110 int itemCount = IsoTypeReader.readUInt16(content);
111 for (int i = 0; i < itemCount; i++) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListItem.cpp 187 unsigned itemCount = 0;
189 itemCount++;
191 return itemCount;
  /external/chromium_org/third_party/icu/source/test/intltest/
colldata.cpp 333 int32_t itemCount;
357 itemCount = uset_getItemCount(charsToTest);
358 for(int32_t item = 0; item < itemCount; item += 1) {

Completed in 1298 milliseconds

1 2 3