Searched defs:itemIndex (Results 1 - 23 of 23) sorted by relevance

/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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DSectionAnnotator.java62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity); argument
/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/util/
H A DAnnotationsDirectory.java223 public int seekTo(int itemIndex) { argument
224 while (currentItemIndex < itemIndex && (currentIndex+1) < size) {
229 if (currentItemIndex == 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/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/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/icu/icu4c/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/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java170 * @param itemIndex the index to remove [1..size]
172 public void removeChild(int itemIndex) argument
174 getChildren().remove(itemIndex - 1);
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/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/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DHeapSnapshot.js40 itemIndex: function() { },
122 itemIndex: function()
388 itemIndex: function()
590 itemIndex: function()
2009 this._iterationOrder.push(iterator.item().itemIndex());
2044 var itemIndex = this._iterationOrder[position++];
2045 var item = this._indexProvider.itemForIndex(itemIndex);
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtptngen.cpp1849 // This function aussumes the current itemIndex points to the quote literal.
1852 FormatParser::getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex) { argument
1853 int32_t i=*itemIndex;
1878 *itemIndex=i;
/external/icu/icu4c/source/i18n/
H A Ddtptngen.cpp1850 // This function aussumes the current itemIndex points to the quote literal.
1853 FormatParser::getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex) { argument
1854 int32_t i=*itemIndex;
1879 *itemIndex=i;
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp2019 bool Internals::selectPopupItemStyleIsRtl(Node* node, int itemIndex) argument
2031 PopupMenuStyle itemStyle = menuList.itemStyle(itemIndex);
2035 int Internals::selectPopupItemStyleFontHeight(Node* node, int itemIndex) argument
2047 PopupMenuStyle itemStyle = menuList.itemStyle(itemIndex);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 5207 milliseconds