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

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
StyleSheetOutlineDialog.js 68 * @param {number} itemIndex
71 itemKeyAt: function(itemIndex)
73 var rule = this._cssParser.rules()[itemIndex];
78 * @param {number} itemIndex
82 itemScoreAt: function(itemIndex, query)
84 var rule = this._cssParser.rules()[itemIndex];
89 * @param {number} itemIndex
94 renderItem: function(itemIndex, query, titleElement, subtitleElement)
96 var rule = this._cssParser.rules()[itemIndex];
103 * @param {number} itemIndex
    [all...]
FilteredItemSelectionDialog.js 429 * @param {number} itemIndex
432 itemKeyAt: function(itemIndex)
438 * @param {number} itemIndex
442 itemScoreAt: function(itemIndex, query)
448 * @param {number} itemIndex
453 renderItem: function(itemIndex, query, titleElement, subtitleElement)
500 * @param {?number} itemIndex
503 selectItem: function(itemIndex, promptValue)
582 * @param {number} itemIndex
585 itemKeyAt: function(itemIndex)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
CustomContextMenuProvider.cpp 114 int itemIndex = menuId - ContextMenuItemBaseCustomTag;
115 if (itemIndex < 0 || static_cast<unsigned long>(itemIndex) >= m_menuItems.size())
117 return m_menuItems[itemIndex].get();
  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.h 113 void removeItem(int32_t itemIndex);
118 void extractItem(const char *filesPath, int32_t itemIndex, char outType);
123 void extractItem(const char *filesPath, const char *outName, int32_t itemIndex, char outType);
  /external/icu/icu4c/source/tools/toolutil/
package.h 113 void removeItem(int32_t itemIndex);
118 void extractItem(const char *filesPath, int32_t itemIndex, char outType);
123 void extractItem(const char *filesPath, const char *outName, int32_t itemIndex, char outType);
  /external/chromium_org/ui/app_list/cocoa/
apps_grid_controller.h 64 - (AppsGridViewItem*)itemAtIndex:(size_t)itemIndex;
98 - (void)moveItemWithIndex:(size_t)itemIndex
  /external/chromium_org/third_party/icu/source/common/
uset.cpp 269 uset_getItem(const USet* uset, int32_t itemIndex,
277 if (itemIndex < 0) {
280 } else if (itemIndex < (rangeCount = set.getRangeCount())) {
281 *start = set.getRangeStart(itemIndex);
282 *end = set.getRangeEnd(itemIndex);
285 itemIndex -= rangeCount;
286 if (itemIndex < USetAccess::getStringCount(set)) {
287 const UnicodeString* s = USetAccess::getString(set, itemIndex);
  /external/icu/icu4c/source/common/
uset.cpp 269 uset_getItem(const USet* uset, int32_t itemIndex,
277 if (itemIndex < 0) {
280 } else if (itemIndex < (rangeCount = set.getRangeCount())) {
281 *start = set.getRangeStart(itemIndex);
282 *end = set.getRangeEnd(itemIndex);
285 itemIndex -= rangeCount;
286 if (itemIndex < USetAccess::getStringCount(set)) {
287 const UnicodeString* s = USetAccess::getString(set, itemIndex);
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
ExploreByTouchHelperActivity.java 121 final int itemIndex = getItemIndexUnder(event.getX(), event.getY());
122 if (itemIndex >= 0) {
123 onItemClicked(itemIndex);
  /external/chromium_org/third_party/icu/source/test/cintltst/
usettest.c 364 int32_t itemIndex = 0;
393 if (itemIndex >= itemCount) {
398 itemLen = uset_getItem(set, itemIndex, &start, &end,
407 itemIndex, oneUCharToChar(start),
412 log_verbose("Ok: %s item %d is \"%s\"\n", pat, itemIndex, buf);
415 ++itemIndex;
  /external/icu/icu4c/source/test/cintltst/
usettest.c 364 int32_t itemIndex = 0;
393 if (itemIndex >= itemCount) {
398 itemLen = uset_getItem(set, itemIndex, &start, &end,
407 itemIndex, oneUCharToChar(start),
412 log_verbose("Ok: %s item %d is \"%s\"\n", pat, itemIndex, buf);
415 ++itemIndex;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
externs.js 129 AccessibilityObject.prototype.details.itemIndex;
  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 315 uint16_t itemIndex,
325 while (p<e && count<itemIndex) { p += 1 + p[0]; count++; } // Find requested item
dns_sd.h     [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 12 self.itemIndex = overflowTuple[4]
15 return str((self.tableType, "LookupIndex:", self.LookupListIndex, "SubTableIndex:", self.SubTableIndex, "ItemName:", self.itemName, "ItemIndex:", self.itemIndex))
462 LookupListIndex = SubTableIndex = itemName = itemIndex = None
471 itemIndex = item.repeatIndex
492 return OverflowErrorRecord( (self.globalState.tableType, LookupListIndex, SubTableIndex, itemName, itemIndex) )
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_tree.js 906 var itemIndex = 0;
908 if (itemIndex < this.items.length &&
909 NavigationModelItem.isSame(this.items[itemIndex].modelItem,
911 if (recursive && this.items[itemIndex] instanceof VolumeItem)
912 this.items[itemIndex].updateSubDirectories(true);
916 this.addAt(new VolumeItem(modelItem, this), itemIndex);
918 this.addAt(new ShortcutItem(modelItem, this), itemIndex);
920 itemIndex++;
924 if (itemIndex !== 0)
    [all...]
file_table.js 392 var itemIndex = ~~(pos.y / itemHeight);
393 if (itemIndex >= this.list.dataModel.length)
398 if (this.lastSelection_ && this.lastSelection_.indexOf(itemIndex) !== -1)
408 var item = this.list.getListItemByIndex(itemIndex);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.idl 243 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex);
244 long selectPopupItemStyleFontHeight(Node select, long itemIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
HeapSnapshot.js 40 itemIndex: function() { },
122 itemIndex: function()
388 itemIndex: function()
590 itemIndex: function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportControl.js 245 * @param {number} itemIndex
250 _createSelectionModel: function(itemIndex, node, offset)
253 item: itemIndex,
  /external/chromium_org/third_party/icu/source/common/unicode/
uset.h 844 * @param itemIndex a non-negative integer in the range 0..
855 * itemIndex is out of range
859 uset_getItem(const USet* set, int32_t itemIndex,
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtptngen_impl.h 149 void getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex);
  /external/icu/icu4c/source/common/unicode/
uset.h 844 * @param itemIndex a non-negative integer in the range 0..
855 * itemIndex is out of range
859 uset_getItem(const USet* set, int32_t itemIndex,
    [all...]
  /external/icu/icu4c/source/i18n/
dtptngen_impl.h 149 void getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotGridNodes.js 343 var itemIndex = 0;
394 itemIndex += skipCount;
403 insertRetrievedChild.call(this, items[itemIndex++], insertionIndex++);
    [all...]

Completed in 1750 milliseconds

1 2