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

123

/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/lzma/CPP/Windows/Control/
H A DListView.h63 bool DeleteItem(int itemIndex) { return BOOLToBool(ListView_DeleteItem(_window, itemIndex)); } argument
78 bool GetItemParam(int itemIndex, LPARAM &param) const;
79 void GetItemText(int itemIndex, int subItemIndex, LPTSTR text, int textSizeMax) const argument
80 { ListView_GetItemText(_window, itemIndex, subItemIndex, text, textSizeMax); }
111 HWND EditLabel(int itemIndex) { return ListView_EditLabel(_window, itemIndex) ; } argument
/external/icu/icu4c/source/tools/toolutil/
H A Dpackage.h115 void removeItem(int32_t itemIndex);
120 void extractItem(const char *filesPath, int32_t itemIndex, char outType);
125 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
H A DTypeIdItem.java52 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DTypeListItem.java53 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DAnnotationDirectoryItem.java58 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DFieldIdItem.java56 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DMethodIdItem.java56 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
H A DProtoIdItem.java56 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedDexFile.java344 private final int itemIndex; field in class:DexBackedDexFile.InvalidItemIndex
346 public InvalidItemIndex(int itemIndex) { argument
348 this.itemIndex = itemIndex;
351 public InvalidItemIndex(int itemIndex, String message, Object... formatArgs) { argument
353 this.itemIndex = itemIndex;
357 return itemIndex;
/external/robolectric/v1/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/libjpeg-turbo/doc/html/search/
H A Dsearch.js620 this.Nav = function(evt,itemIndex)
628 var newIndex = itemIndex-1;
663 var newIndex = itemIndex+1;
665 var item = document.getElementById('Item'+itemIndex);
669 focusItem = document.getElementById('Item'+itemIndex+'_c0');
676 var item = document.getElementById('Item'+itemIndex);
682 var item = document.getElementById('Item'+itemIndex);
698 this.NavChild = function(evt,itemIndex,childIndex)
709 document.getElementById('Item'+itemIndex+'_c'+newIndex).focus();
713 document.getElementById('Item'+itemIndex)
[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/icu/icu4c/source/common/
H A Duset.cpp271 uset_getItem(const USet* uset, int32_t itemIndex, argument
279 if (itemIndex < 0) {
282 } else if (itemIndex < (rangeCount = set.getRangeCount())) {
283 *start = set.getRangeStart(itemIndex);
284 *end = set.getRangeEnd(itemIndex);
287 itemIndex -= rangeCount;
288 if (itemIndex < USetAccess::getStringCount(set)) {
289 const UnicodeString* s = USetAccess::getString(set, itemIndex);
/external/icu/icu4c/source/test/cintltst/
H A Dusettest.c365 int32_t itemIndex = 0; local
394 if (itemIndex >= itemCount) {
399 itemLen = uset_getItem(set, itemIndex, &start, &end,
408 itemIndex, oneUCharToChar(start),
413 log_verbose("Ok: %s item %d is \"%s\"\n", pat, itemIndex, buf);
416 ++itemIndex;

Completed in 434 milliseconds

123