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

/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/WebKit/Source/core/svg/properties/
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);
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 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);
/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/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/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/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/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_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/third_party/icu/source/i18n/
H A Ddtptngen.cpp1791 // This function aussumes the current itemIndex points to the quote literal.
1794 FormatParser::getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex) { argument
1795 int32_t i=*itemIndex;
1820 *itemIndex=i;
/external/icu4c/i18n/
H A Ddtptngen.cpp1819 // This function aussumes the current itemIndex points to the quote literal.
1822 FormatParser::getQuoteLiteral(UnicodeString& quote, int32_t *itemIndex) { argument
1823 int32_t i=*itemIndex;
1848 *itemIndex=i;
/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 ...

Completed in 436 milliseconds