Searched refs:previewStates (Results 1 - 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAttachment.java665 * @param previewStates The packed int describing the states of multiple attachments.
671 public static int updatePreviewStates(int previewStates, int attachmentIndex, int rendition, argument
679 return previewStates | mask;
682 return previewStates & ~mask;
689 * @param previewStates The packed int describing the states of multiple attachments.
694 public static boolean getPreviewState(int previewStates, int attachmentIndex, int rendition) { argument
701 return (previewStates & mask) != 0;
704 return (previewStates & (mask << 1)) != 0;

Completed in 40 milliseconds