HomeSort by relevance Sort by last modified time
    Searched refs:itemIndex (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StaggeredGrid.java 147 int itemIndex;
154 itemIndex = mFirstVisibleIndex - 1;
159 itemIndex = mStartIndex != START_DEFAULT ? mStartIndex : 0;
160 if (itemIndex > getLastIndex() || itemIndex < getFirstIndex() - 1) {
164 } else if (itemIndex < getFirstIndex()) {
169 for (; itemIndex >= mFirstIndex; itemIndex--) {
170 Location loc = getLocation(itemIndex);
172 int size = mProvider.createItem(itemIndex, false, mTmpItem)
    [all...]
StaggeredGridDefault.java 229 int itemIndex;
238 itemIndex = mLastVisibleIndex + 1;
268 itemIndex = mStartIndex != START_DEFAULT ? mStartIndex : 0;
270 rowIndex = (mLocations.size() > 0 ? getLocation(getLastIndex()).row + 1 : itemIndex)
283 if (itemIndex == count || (!oneColumnMode && checkAppendOverLimit(toLimit))) {
300 int size = appendVisibleItemToRow(itemIndex++, rowIndex, location);
307 if (itemIndex == count || (!oneColumnMode && checkAppendOverLimit(toLimit))) {
311 size = appendVisibleItemToRow(itemIndex++, rowIndex, location);
329 int itemIndex;
338 itemIndex = mFirstVisibleIndex - 1
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
ItemGroup.java 150 int itemIndex = getItemIndex(position);
151 ItemHierarchy item = mChildren.get(itemIndex);
152 int subpos = position - mHierarchyStart.get(itemIndex);
188 for (int itemIndex = 0; itemIndex < mChildren.size(); itemIndex++) {
189 ItemHierarchy item = mChildren.get(itemIndex);
191 mHierarchyStart.put(itemIndex, mCount);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPPathFactory.java 75 * @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
85 if (itemIndex > 0)
87 return arrayName + '[' + itemIndex + ']';
89 else if (itemIndex == XMPConst.ARRAY_LAST_ITEM)
XMPMeta.java 72 * @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;
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,
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedDexFile.java 292 private final int itemIndex;
294 public InvalidItemIndex(int itemIndex) {
296 this.itemIndex = itemIndex;
299 public InvalidItemIndex(int itemIndex, String message, Object... formatArgs) {
301 this.itemIndex = itemIndex;
305 return itemIndex;
  /external/lzma/CPP/Windows/Control/
ListView.h 49 bool DeleteItem(int itemIndex) { return BOOLToBool(ListView_DeleteItem(_window, itemIndex)); }
64 bool GetItemParam(int itemIndex, LPARAM &param) const;
65 void GetItemText(int itemIndex, int subItemIndex, LPTSTR text, int textSizeMax) const
66 { ListView_GetItemText(_window, itemIndex, subItemIndex, text, textSizeMax); }
97 HWND EditLabel(int itemIndex) { return ListView_EditLabel(_window, itemIndex) ; }
  /external/icu/icu4c/source/tools/toolutil/
package.h 113 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/
StringIdItem.java 53 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
56 String stringValue = dexFile.getString(itemIndex);
62 System.err.print(itemIndex);
EncodedArrayItem.java 50 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
AnnotationItem.java 54 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
AnnotationSetItem.java 53 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
AnnotationSetRefList.java 53 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
StringDataItem.java 51 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
MapItem.java 81 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
SectionAnnotator.java 62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity);
TypeIdItem.java 52 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAdapterView.java 276 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);
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoritesTileAdapter.java 453 * @param itemIndex Position of the contact in {@link #mContactEntries}.
456 public boolean isIndexInBound(int itemIndex) {
457 return itemIndex >= 0 && itemIndex < mContactEntries.size();
463 * @param itemIndex Position of the contact in {@link #mContactEntries}.
465 private void markDropArea(int itemIndex) {
467 isIndexInBound(itemIndex)) {
472 mDragEnteredEntryIndex = itemIndex;
657 final int itemIndex = mContactEntries.indexOf(view.getContactEntry());
658 popContactEntry(itemIndex);
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPMetaImpl.java 194 public void deleteArrayItem(String schemaNS, String arrayName, int itemIndex)
201 String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
304 public boolean doesArrayItemExist(String schemaNS, String arrayName, int itemIndex)
311 String path = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
368 public XMPProperty getArrayItem(String schemaNS, String arrayName, int itemIndex)
374 String itemPath = XMPPathFactory.composeArrayItemPath(arrayName, itemIndex);
1034 public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue,
1046 doSetArrayItem(arrayNode, itemIndex, itemValue, options, false);
1058 public void setArrayItem(String schemaNS, String arrayName, int itemIndex, String itemValue)
1061 setArrayItem(schemaNS, arrayName, itemIndex, itemValue, null)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
AnnotationsDirectory.java 223 public int seekTo(int itemIndex) {
224 while (currentItemIndex < itemIndex && (currentIndex+1) < size) {
229 if (currentItemIndex == itemIndex) {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
BrowseFragment.java 83 int itemIndex = page * PAGE_SIZE;
84 if (itemIndex >= mMediaItems.size()) {
93 if (itemIndex < mMediaItems.size()) {
94 mMediaItems.set(itemIndex, item);
98 itemIndex++;
104 while (mMediaItems.size() > itemIndex) {
  /frameworks/base/core/java/com/android/internal/widget/
ViewPager.java     [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/
ViewPager.java     [all...]
  /external/icu/icu4c/source/common/
uset.cpp 269 uset_getItem(const USet* uset, int32_t itemIndex,
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);

Completed in 386 milliseconds

1 2 3 4 5 6