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);
42 // We only want to show the non-Trash folders that can accept moved messages
H A DEmailProvider.java426 * When we sync folders, we do two passes: First to create the mailbox rows, and second
453 // Top level folders can still have uninitialized parent keys. Update these
2687 * Local-only folders set totalCount < 0; such folders should substitute message count for
2816 * The "ORDER BY" clause for top level folders
3160 * Generate the "all folders" SQLite query, given a projection from UnifiedEmail. The list is
3198 // Special case for Search folders: only permit delete, do not try to give any other caps.
3203 // All folders support delete, except drafts.
3269 // All folders support delete
4003 * Returns a cursor over all the folders fo
4960 updateTimestamp(final Context context, String id, Uri[] folders) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAddableFolderSelectorAdapter.java34 public AddableFolderSelectorAdapter(Context context, Cursor folders, argument
36 super(context, folders, selected, layout);
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);
34 public SystemFolderSelectorAdapter(Context context, Cursor folders, argument
36 super(context, folders, layout, excludedFolder);
47 * but allow other system folders.
51 // We only want to show system folders.
H A DUserFolderHierarchicalFolderSelectorAdapter.java25 Context context, Cursor folders, int layout, Folder excludedFolder) {
26 super(context, folders, layout, excludedFolder);
24 UserFolderHierarchicalFolderSelectorAdapter( Context context, Cursor folders, int layout, Folder excludedFolder) argument
H A DHierarchicalFolderSelectorAdapter.java42 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders, argument
44 super(context, folders, initiallySelected, layout);
48 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders, argument
50 super(context, folders, layout, excludedFolder);
H A DConversationUpdater.java152 * Assign the target conversations to the given folders, and remove them from all other folders
154 * @param folders the folders to assign the conversations to.
161 public void assignFolder(Collection<FolderOperation> folders, Collection<Conversation> target, argument
H A DFolderSelectorAdapter.java50 * applying folders to one or more conversations.
79 // TODO: this should sort the system folders in the appropriate order
94 public FolderSelectorAdapter(Context context, Cursor folders, argument
98 createFolderRows(folders, selected);
101 public FolderSelectorAdapter(Context context, Cursor folders, argument
106 createFolderRows(folders, null);
109 protected void createFolderRows(Cursor folders, Set<String> selected) { argument
110 if (folders == null) {
113 final List<FolderRow> allFolders = new ArrayList<FolderRow>(folders.getCount());
115 // Rows corresponding to user created, unchecked folders
[all...]
H A DAbstractActivityController.java268 /** Listeners that are interested in changes to the recent folders. */
322 * folders, critical UI settings like show/hide checkboxes, ...
347 * This loader is started when the user switches folders (in {@link #updateFolder(Folder)},
350 * the current folder. When the user switches folders, the old loader is destroyed and a new
382 * The list of recent folders. Recent folders are shown in the DrawerFragment. The recent
383 * folders are tied to the current account being viewed. When the account is changed,
388 * recent folders, it issues an update on the Recent Folder URI. The underlying provider then
389 * does the appropriate thing to populate recent folders, and notify of a change on the cursor.
390 * Recent folders ar
3916 FolderDestruction(final Collection<Conversation> target, final Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, int action, final Folder actionFolder) argument
3990 getFolderChange(Collection<Conversation> target, Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, final boolean isMoveTo, final Folder actionFolder, UndoCallback undoCallback) argument
4000 getDeferredFolderChange(Collection<Conversation> target, Collection<FolderOperation> folders, boolean isDestructive, boolean isBatch, boolean showUndo, final boolean isMoveTo, final Folder actionFolder, UndoCallback undoCallback) 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.java267 * The column that needs to be updated to change the folders for a conversation.
653 return rawFolders.folders;
656 public void setRawFolders(FolderList folders) { argument
657 rawFolders = folders;
H A DFolder.java49 * A folder is a collection of conversations, and perhaps other folders.
94 * Whether or not this folder has children folders.
111 * The content provider URI to return the list of child folders of this folder.
526 final HashMap<Uri, Folder> folders = new HashMap<Uri, Folder>();
528 folders.put(f.folderUri.getComparisonUri(), f);
530 return folders;
620 // Show black text on a transparent swatch for system folders, effectively hiding the
678 * Get just the uri's from an arraylist of folders.
680 public static String[] getUriArray(List<Folder> folders) { argument
681 if (folders
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherModel.java125 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
129 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
131 // shortcuts within folders).
162 public void bindFolders(HashMap<Long,FolderInfo> folders); argument
358 item.container + ", not in the list of folders";
1619 /** Filters the set of folders which are on the specified screen. */
1622 HashMap<Long, FolderInfo> folders,
1628 currentScreenFolders.putAll(folders);
1631 for (long id : folders.keySet()) {
1633 FolderInfo folder = folders
1620 filterCurrentFolders(int currentScreen, HashMap<Long, ItemInfo> itemsIdMap, HashMap<Long, FolderInfo> folders, HashMap<Long, FolderInfo> currentScreenFolders, HashMap<Long, FolderInfo> otherScreenFolders) argument
1664 bindWorkspaceItems(final Callbacks oldCallbacks, final ArrayList<ItemInfo> workspaceItems, final ArrayList<LauncherAppWidgetInfo> appWidgets, final HashMap<Long, FolderInfo> folders, ArrayList<Runnable> deferredBindRunnables) argument
2521 findOrMakeFolder(HashMap<Long, FolderInfo> folders, long id) argument
[all...]
H A DLauncher.java3520 public void bindFolders(final HashMap<Long, FolderInfo> folders) { argument
3523 bindFolders(folders);
3529 sFolders.putAll(folders);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherModel.java149 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
153 // sBgWorkspaceItems is passed to bindItems, which expects a list of all folders and shortcuts
155 // shortcuts within folders).
192 public void bindFolders(HashMap<Long,FolderInfo> folders); argument
708 item.container + ", not in the list of folders";
2200 // no special handling required for restored folders
2533 /** Filters the set of folders which are on the specified screen. */
2536 HashMap<Long, FolderInfo> folders,
2540 for (long id : folders.keySet()) {
2542 FolderInfo folder = folders
2534 filterCurrentFolders(long currentScreenId, HashMap<Long, ItemInfo> itemsIdMap, HashMap<Long, FolderInfo> folders, HashMap<Long, FolderInfo> currentScreenFolders, HashMap<Long, FolderInfo> otherScreenFolders) argument
2589 bindWorkspaceItems(final Callbacks oldCallbacks, final ArrayList<ItemInfo> workspaceItems, final ArrayList<LauncherAppWidgetInfo> appWidgets, final HashMap<Long, FolderInfo> folders, ArrayList<Runnable> deferredBindRunnables) argument
3636 findOrMakeFolder(HashMap<Long, FolderInfo> folders, long id) argument
[all...]
H A DLauncher.java2145 // Close any open folders
2234 // Close any folders that may be open.
4423 public void bindFolders(final HashMap<Long, FolderInfo> folders) { argument
4426 bindFolders(folders);
4433 sFolders.putAll(folders);

Completed in 202 milliseconds