Home
last modified time | relevance | path

Searched refs:SUPPORT_EDIT (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/
DSelectionManager.java87 if ((itemSupportedOperations & MediaObject.SUPPORT_EDIT) > 0) { in onItemSelectedStateChanged()
148 supported |= MediaObject.SUPPORT_EDIT; in getSupportedOperations()
DMultiChoiceManager.java142 editItem.setVisible((supportedOperations & MediaObject.SUPPORT_EDIT) > 0); in updateActionItemVisibilities()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DPhotoPage.java590 && (mCurrentPhoto.getSupportedOperations() & MediaItem.SUPPORT_EDIT) != 0 in canDisplayBottomControl()
681 & MediaObject.SUPPORT_EDIT) == 0) { in launchPhotoEditor()
703 & MediaObject.SUPPORT_EDIT) == 0) { in launchSimpleEditor()
776 supportedOperations ^= MediaObject.SUPPORT_EDIT; in updateMenuOperations()
783 supportedOperations &= ~MediaObject.SUPPORT_EDIT; in updateMenuOperations()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DMediaObject.java36 public static final int SUPPORT_EDIT = 1 << 9; field in MediaObject
DUriImage.java217 supported |= SUPPORT_EDIT | SUPPORT_FULL_IMAGE; in getSupportedOperations()
DLocalImage.java242 operation |= SUPPORT_FULL_IMAGE | SUPPORT_EDIT; in getSupportedOperations()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DActionModeHandler.java300 operation &= ~MediaObject.SUPPORT_EDIT; in computeMenuOptions()
DMenuExecutor.java178 boolean supportEdit = (supported & MediaObject.SUPPORT_EDIT) != 0; in updateMenuOperation()