Searched refs:itemIndex (Results 1 - 25 of 64) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DStyleSheetOutlineDialog.js68 * @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...]
H A DFilteredItemSelectionDialog.js429 * @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/
H A DCustomContextMenuProvider.cpp114 int itemIndex = menuId - ContextMenuItemBaseCustomTag; local
115 if (itemIndex < 0 || static_cast<unsigned long>(itemIndex) >= m_menuItems.size())
117 return m_menuItems[itemIndex].get();
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPPathFactory.java75 * @param itemIndex The index of the desired item. Arrays in XMP are indexed from 1.
80 * &quot;i&quot; is the decimal representation of itemIndex.
83 public static String composeArrayItemPath(String arrayName, int itemIndex) throws XMPException argument
85 if (itemIndex > 0)
87 return arrayName + '[' + itemIndex + ']';
89 else if (itemIndex == XMPConst.ARRAY_LAST_ITEM)
H A DXMPMeta.java72 * @param itemIndex The index of the desired item. Arrays in XMP are indexed from 1. The
79 XMPProperty getArrayItem(String schemaNS, String arrayName, int itemIndex) throws XMPException; argument
227 * @param itemIndex The index of the desired item. Arrays in XMP are indexed from 1. To address
238 int itemIndex,
248 * @param itemIndex The index to insert the new item
255 int itemIndex,
269 * @param itemIndex The index to insert the new item. Arrays in XMP are indexed from 1. Use
279 int itemIndex,
289 * @param itemIndex The index to insert the new item
296 int itemIndex,
235 setArrayItem( String schemaNS, String arrayName, int itemIndex, String itemValue, PropertyOptions options) argument
252 setArrayItem( String schemaNS, String arrayName, int itemIndex, String itemValue) argument
276 insertArrayItem( String schemaNS, String arrayName, int itemIndex, String itemValue, PropertyOptions options) argument
293 insertArrayItem( String schemaNS, String arrayName, int itemIndex, String itemValue) argument
471 deleteArrayItem(String schemaNS, String arrayName, int itemIndex) argument
534 doesArrayItemExist(String schemaNS, String arrayName, int itemIndex) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedDexFile.java266 private final int itemIndex; field in class:DexBackedDexFile.InvalidItemIndex
268 public InvalidItemIndex(int itemIndex) { argument
270 this.itemIndex = itemIndex;
273 public InvalidItemIndex(int itemIndex, String message, Object... formatArgs) { argument
275 this.itemIndex = itemIndex;
279 return itemIndex;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpackage.h113 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/
H A Dpackage.h113 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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DStringIdItem.java53 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
56 String stringValue = dexFile.getString(itemIndex);
62 System.err.print(itemIndex);
H A DEncodedArrayItem.java50 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DAnnotationItem.java54 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DAnnotationSetItem.java53 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DAnnotationSetRefList.java53 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DStringDataItem.java51 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DMapItem.java81 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DSectionAnnotator.java62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity); argument
/external/chromium_org/ui/app_list/cocoa/
H A Dapps_grid_controller.h64 - (AppsGridViewItem*)itemAtIndex:(size_t)itemIndex;
98 - (void)moveItemWithIndex:(size_t)itemIndex
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAdapterView.java276 int itemIndex = findIndexOfItemContainingText(targetText);
277 if (itemIndex == -1) {
280 return realAdapterView.getChildAt(itemIndex);
284 int itemIndex = findIndexOfItemContainingText(targetText);
285 if (itemIndex == -1) {
288 performItemClick(itemIndex);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java194 public void deleteArrayItem(String schemaNS, String arrayName, int itemIndex) argument
201 String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
304 public boolean doesArrayItemExist(String schemaNS, String arrayName, int itemIndex) argument
311 String path = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
368 public XMPProperty getArrayItem(String schemaNS, String arrayName, int itemIndex) argument
374 String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
1034 public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue, argument
1046 doSetArrayItem(arrayNode, itemIndex, itemValue, options, false);
1058 public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue) argument
1061 setArrayItem(schemaNS, arrayName, itemIndex, itemValu
1070 insertArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue, PropertyOptions options) argument
1094 insertArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue) argument
1302 doSetArrayItem(XMPNode arrayNode, int itemIndex, String itemValue, PropertyOptions itemOptions, boolean insert) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DAnnotationsDirectory.java223 public int seekTo(int itemIndex) { argument
224 while (currentItemIndex < itemIndex && (currentIndex+1) < size) {
229 if (currentItemIndex == itemIndex) {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dexterns.js129 AccessibilityObject.prototype.details.itemIndex;
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Ddirectory_tree.js906 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)
/external/chromium_org/third_party/icu/source/common/
H A Duset.cpp269 uset_getItem(const USet* uset, int32_t itemIndex, argument
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/
H A Duset.cpp269 uset_getItem(const USet* uset, int32_t itemIndex, argument
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/chromium_org/chrome/browser/resources/options/
H A Dcookies_list.js345 * |itemIndex|, unselecting any previously selected node first.
346 * @param {number} itemIndex The index to set as the selected index.
348 set selectedIndex(itemIndex) {
358 if (itemIndex == -2)
359 itemIndex = this.itemList_.length - 1;
361 if (itemIndex < 0 || itemIndex >= this.itemList_.length) {
369 this.selectedIndex_ = itemIndex;
370 this.itemList_[itemIndex].div.setAttribute('selected', '');
372 this.itemList_[itemIndex]
[all...]

Completed in 406 milliseconds

123