HomeSort by relevance Sort by last modified time
    Searched refs:mItemPath (Results 1 - 3 of 3) sorted by null

  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSet.java 24 Path mItemPath;
28 mItemPath = Path.fromString("/mock/item");
35 Path childPath = mItemPath.getChild(item_id_start + i);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbum.java 58 private final Path mItemPath;
76 mItemPath = LocalImage.ITEM_PATH;
83 mItemPath = LocalVideo.ITEM_PATH;
133 Path childPath = mItemPath.getChild(id);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 149 private Path mItemPath;
167 // The path of the current viewing item will be stored in mItemPath.
168 // If mItemPath is not null, mCurrentIndex is only a hint for where we
169 // can find the item. If mItemPath is null, then we use the mCurrentIndex to
177 mItemPath = Utils.checkNotNull(itemPath);
401 mItemPath = item == null ? null : item.getPath();
408 mDataListener.onPhotoChanged(index, mItemPath);
577 if (mItemPath == path) return;
578 mItemPath = path;
661 if (item == null || item.getPath() != mItemPath) {
    [all...]

Completed in 75 milliseconds