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

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DStyleSheetOutlineDialog.js68 * @param {number} itemIndex
71 itemKeyAt: function(itemIndex)
73 return this._rules[itemIndex].selectorText;
77 * @param {number} itemIndex
81 itemScoreAt: function(itemIndex, query)
83 var rule = this._rules[itemIndex];
88 * @param {number} itemIndex
93 renderItem: function(itemIndex, query, titleElement, subtitleElement)
95 var rule = this._rules[itemIndex];
133 * @param {number} itemIndex
[all...]
H A DFilteredItemSelectionDialog.js363 * @param {number} itemIndex
366 itemKeyAt: function(itemIndex)
372 * @param {number} itemIndex
376 itemScoreAt: function(itemIndex, query)
382 * @param {number} itemIndex
387 renderItem: function(itemIndex, query, titleElement, subtitleElement)
434 * @param {number} itemIndex
437 selectItem: function(itemIndex, promptValue)
523 * @param {number} itemIndex
526 itemKeyAt: function(itemIndex)
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstructionWithReference.java56 int itemIndex = getReferencedItemIndex(buffer, bufferIndex);
57 lookupReferencedItem(dexFile, opcode, itemIndex);
76 private void lookupReferencedItem(DexFile dexFile, Opcode opcode, int itemIndex) { argument
79 referencedItem = dexFile.FieldIdsSection.getItemByIndex(itemIndex);
82 referencedItem = dexFile.MethodIdsSection.getItemByIndex(itemIndex);
85 referencedItem = dexFile.TypeIdsSection.getItemByIndex(itemIndex);
88 referencedItem = dexFile.StringIdsSection.getItemByIndex(itemIndex);
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpackage.h99 void removeItem(int32_t itemIndex);
104 void extractItem(const char *filesPath, int32_t itemIndex, char outType);
109 void extractItem(const char *filesPath, const char *outName, int32_t itemIndex, char outType);
/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 * "i" 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/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyTearOff.h66 void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers) argument
71 ASSERT_WITH_SECURITY_IMPLICATION(itemIndex < m_wrappers->size());
73 RefPtr<ListItemTearOff>& item = m_wrappers->at(itemIndex);
75 m_wrappers->remove(itemIndex);
76 m_values->remove(itemIndex);
H A DSVGPathSegListPropertyTearOff.h57 void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers) argument
60 ASSERT_WITH_SECURITY_IMPLICATION(itemIndex < m_values->size());
62 m_values->remove(itemIndex);
H A DSVGAnimatedPathSegListPropertyTearOff.h55 void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers) argument
59 static_cast<SVGPathSegListPropertyTearOff*>(m_baseVal.get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
H A DSVGAnimatedListPropertyTearOff.h66 void removeItemFromList(size_t itemIndex, bool shouldSynchronizeWrappers) argument
70 static_cast<ListPropertyTearOff*>(m_baseVal.get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
/external/icu4c/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/chromium_org/ui/app_list/cocoa/
H A Dapps_grid_controller.h65 - (AppsGridViewItem*)itemAtIndex:(size_t)itemIndex;
102 - (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...]
H A DXMPNode.java170 * @param itemIndex the index to remove [1..size]
172 public void removeChild(int itemIndex) argument
174 getChildren().remove(itemIndex - 1);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DUniscribeHelper.cpp178 for (int itemIndex = 0; itemIndex < static_cast<int>(m_runs.size()); itemIndex++)
179 width += advanceForItem(itemIndex);
255 int itemIndex = m_screenOrder[screenIndex]; local
256 const SCRIPT_ITEM& item = m_runs[itemIndex];
257 const Shaping& shaping = m_shapes[itemIndex];
278 width += advanceForItem(itemIndex);
291 int itemIndex = m_screenOrder[screenIndex]; local
292 int itemAdvance = advanceForItem(itemIndex);
337 int itemIndex = m_screenOrder[screenIndex]; local
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dcookies_list.js278 * @{code itemIndex}, unselecting any previously selected node first.
279 * @param {number} itemIndex The index to set as the selected index.
281 set selectedIndex(itemIndex) {
291 if (itemIndex == -2)
292 itemIndex = this.itemList_.length - 1;
294 if (itemIndex < 0 || itemIndex >= this.itemList_.length) {
302 this.selectedIndex_ = itemIndex;
303 this.itemList_[itemIndex].div.setAttribute('selected', '');
305 this.itemList_[itemIndex]
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duset.cpp274 uset_getItem(const USet* uset, int32_t itemIndex, argument
282 if (itemIndex < 0) {
285 } else if (itemIndex < (rangeCount = set.getRangeCount())) {
286 *start = set.getRangeStart(itemIndex);
287 *end = set.getRangeEnd(itemIndex);
290 itemIndex -= rangeCount;
291 if (itemIndex < USetAccess::getStringCount(set)) {
292 const UnicodeString* s = USetAccess::getString(set, itemIndex);
/external/icu4c/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.js339 * @{code itemIndex}, unselecting any previously selected node first.
340 * @param {number} itemIndex The index to set as the selected index.
342 set selectedIndex(itemIndex) {
352 if (itemIndex == -2)
353 itemIndex = this.itemList_.length - 1;
355 if (itemIndex < 0 || itemIndex >= this.itemList_.length) {
363 this.selectedIndex_ = itemIndex;
364 this.itemList_[itemIndex].div.setAttribute('selected', '');
366 this.itemList_[itemIndex]
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dusettest.c364 int32_t itemIndex = 0; local
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/icu4c/test/cintltst/
H A Dusettest.c364 int32_t itemIndex = 0; local
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/mdnsresponder/mDNSShared/
H A Ddnssd_clientlib.c315 uint16_t itemIndex,
325 while (p<e && count<itemIndex) { p += 1 + p[0]; count++; } // Find requested item
311 TXTRecordGetItemAtIndex( uint16_t txtLen, const void *txtRecord, uint16_t itemIndex, uint16_t keyBufLen, char *key, uint8_t *valueLen, const void **value ) argument
/external/chromium_org/chrome/browser/resources/file_manager/js/
H A Dfile_table.js407 var itemIndex = ~~(pos.y / itemHeight);
408 if (itemIndex >= this.list.dataModel.length)
413 if (this.lastSelection_.indexOf(itemIndex) != -1)
423 var item = this.list.getListItemByIndex(itemIndex);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duset.h840 * @param itemIndex a non-negative integer in the range 0..
851 * itemIndex is out of range
855 uset_getItem(const USet* set, int32_t itemIndex,

Completed in 721 milliseconds

12