Searched defs:folders (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Email/src/com/android/email/provider/
H A DFolderPickerSelectorAdapter.java31 public FolderPickerSelectorAdapter(Context context, Cursor folders, argument
33 super(context, folders, initiallySelected, layout, header);
42 // We only want to show the non-Trash folders that can accept moved messages
H A DEmailProvider.java388 * When we sync folders, we do two passes: First to create the mailbox rows, and second
415 // Top level folders can still have uninitialized parent keys. Update these
2330 * Local-only folders set totalCount < 0; such folders should substitute message count for
2438 * The "ORDER BY" clause for top level folders
2770 * Generate the "all folders" SQLite query, given a projection from UnifiedEmail. The list is
2808 // Special case for Search folders: only permit delete, do not try to give any other caps.
2813 // All folders support delete, except drafts.
2864 // All folders support delete
3538 * Returns a cursor over all the folders fo
4517 updateTimestamp(final Context context, String id, Uri[] folders) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAddableFolderSelectorAdapter.java32 public AddableFolderSelectorAdapter(Context context, Cursor folders, argument
34 super(context, folders, initiallySelected, layout, header);
H A DFolderSettingsObservable.java33 void setIncludedFolders(ArrayList<String> folders); argument
34 void setPartialFolders(ArrayList<String> folders); argument
H A DSystemFolderSelectorAdapter.java29 public SystemFolderSelectorAdapter(Context context, Cursor folders, argument
31 super(context, folders, initiallySelected, layout, header);
34 public SystemFolderSelectorAdapter(Context context, Cursor folders, int layout, argument
36 super(context, folders, layout, header, excludedFolder);
47 * but allow other system folders.
51 // We only want to show system folders.
H A DUserFolderHierarchicalFolderSelectorAdapter.java24 public UserFolderHierarchicalFolderSelectorAdapter(Context context, Cursor folders, int layout, argument
26 super(context, folders, layout, header, excludedFolder);
H A DHierarchicalFolderSelectorAdapter.java41 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders, argument
43 super(context, folders, initiallySelected, layout, header);
47 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders, int layout, argument
49 super(context, folders, layout, header, excludedFolder);
H A DConversationUpdater.java146 * Assign the target conversations to the given folders, and remove them from all other folders
148 * @param folders the folders to assign the conversations to.
155 public void assignFolder(Collection<FolderOperation> folders, Collection<Conversation> target, argument
H A DFolderSelectorAdapter.java49 * applying folders to one or more conversations.
78 // TODO: this should sort the system folders in the appropriate order
97 public FolderSelectorAdapter(Context context, Cursor folders, argument
102 createFolderRows(folders, initiallySelected);
105 public FolderSelectorAdapter(Context context, Cursor folders, int layout, String header, argument
111 createFolderRows(folders, null);
114 protected void createFolderRows(Cursor folders, Set<String> initiallySelected) { argument
115 if (folders == null) {
118 final List<FolderRow> allFolders = new ArrayList<FolderRow>(folders.getCount());
120 if (folders
[all...]
H A DAbstractActivityController.java259 /** Listeners that are interested in changes to the recent folders. */
309 * folders, critical UI settings like show/hide checkboxes, ...
341 * The list of recent folders. Recent folders are shown in the DrawerFragment. The recent
342 * folders are tied to the current account being viewed. When the account is changed,
347 * recent folders, it issues an update on the Recent Folder URI. The underlying provider then
348 * does the appropriate thing to populate recent folders, and notify of a change on the cursor.
349 * Recent folders are needed for the life of the current account.
350 * When the recent folders change, we notify {@link #mRecentFolderObservers}.
355 * current account is (sadly) different from loading other folders
3772 FolderDestruction(final Collection<Conversation> target, final Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, int action, final Folder actionFolder) argument
3841 getFolderChange(Collection<Conversation> target, Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, final boolean isMoveTo, final Folder actionFolder) argument
3850 getDeferredFolderChange(Collection<Conversation> target, Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, final boolean isMoveTo, final Folder actionFolder) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolderList.java20 public final ImmutableList<Folder> folders; field in class:FolderList
26 folders = ImmutableList.of();
28 folders = ImmutableList.copyOf(in);
33 folders = ImmutableList.copyOf(in.createTypedArrayList(Folder.CREATOR));
43 dest.writeTypedList(folders);
88 return folders.equals(o);
93 return folders.hashCode();
H A DConversation.java317 * The column that needs to be updated to change the folders for a conversation.
565 return rawFolders.folders;
568 public void setRawFolders(FolderList folders) { argument
569 rawFolders = folders;
H A DFolder.java48 * A folder is a collection of conversations, and perhaps other folders.
93 * Whether or not this folder has children folders.
110 * The content provider URI to return the list of child folders of this folder.
503 final HashMap<Uri, Folder> folders = new HashMap<Uri, Folder>();
505 folders.put(f.folderUri.getComparisonUri(), f);
507 return folders;
594 // Show black text on a transparent swatch for system folders, effectively hiding the
646 * Get just the uri's from an arraylist of folders.
648 public static String[] getUriArray(List<Folder> folders) { argument
649 if (folders
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherModel.java122 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
126 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
128 // shortcuts within folders).
155 public void bindFolders(HashMap<Long,FolderInfo> folders); argument
347 item.container + ", not in the list of folders";
1594 /** Filters the set of folders which are on the specified screen. */
1597 HashMap<Long, FolderInfo> folders,
1603 currentScreenFolders.putAll(folders);
1606 for (long id : folders.keySet()) {
1608 FolderInfo folder = folders
1595 filterCurrentFolders(int currentScreen, HashMap<Long, ItemInfo> itemsIdMap, HashMap<Long, FolderInfo> folders, HashMap<Long, FolderInfo> currentScreenFolders, HashMap<Long, FolderInfo> otherScreenFolders) argument
1639 bindWorkspaceItems(final Callbacks oldCallbacks, final ArrayList<ItemInfo> workspaceItems, final ArrayList<LauncherAppWidgetInfo> appWidgets, final HashMap<Long, FolderInfo> folders, ArrayList<Runnable> deferredBindRunnables) argument
2496 findOrMakeFolder(HashMap<Long, FolderInfo> folders, long id) argument
[all...]
H A DLauncher.java3470 public void bindFolders(final HashMap<Long, FolderInfo> folders) { argument
3473 bindFolders(folders);
3479 sFolders.putAll(folders);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherModel.java121 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
125 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
127 // shortcuts within folders).
158 public void bindFolders(HashMap<Long,FolderInfo> folders); argument
574 item.container + ", not in the list of folders";
2069 /** Filters the set of folders which are on the specified screen. */
2072 HashMap<Long, FolderInfo> folders,
2078 currentScreenFolders.putAll(folders);
2081 for (long id : folders.keySet()) {
2083 FolderInfo folder = folders
2070 filterCurrentFolders(int currentScreen, HashMap<Long, ItemInfo> itemsIdMap, HashMap<Long, FolderInfo> folders, HashMap<Long, FolderInfo> currentScreenFolders, HashMap<Long, FolderInfo> otherScreenFolders) argument
2130 bindWorkspaceItems(final Callbacks oldCallbacks, final ArrayList<ItemInfo> workspaceItems, final ArrayList<LauncherAppWidgetInfo> appWidgets, final HashMap<Long, FolderInfo> folders, ArrayList<Runnable> deferredBindRunnables) argument
3057 findOrMakeFolder(HashMap<Long, FolderInfo> folders, long id) argument
[all...]
H A DLauncher.java1923 // Close any folders that may be open.
3775 public void bindFolders(final HashMap<Long, FolderInfo> folders) { argument
3778 bindFolders(folders);
3785 sFolders.putAll(folders);

Completed in 1675 milliseconds