HomeSort by relevance Sort by last modified time
    Searched full:folderlist (Results 1 - 18 of 18) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderList.java 16 public class FolderList implements Parcelable {
18 private static final FolderList EMPTY = new FolderList(Collections.<Folder> emptyList());
22 // Private to reinforce the copyOf() API, which makes it more clear that creating a FolderList
24 private FolderList(Collection<Folder> in) {
32 public FolderList(Parcel in) {
59 * @return the marshalled byte-array form of a {@link FolderList}
69 public static FolderList fromBlob(byte[] blob) {
77 final FolderList result = CREATOR.createFromParcel(p);
82 public static FolderList copyOf(Collection<Folder> in)
    [all...]
Conversation.java 136 private FolderList rawFolders;
390 rawFolders = other.rawFolders; // FolderList is immutable, shallow copy is OK
422 boolean seen, boolean starred, FolderList rawFolders, int convFlags, int personalLevel,
494 private static FolderList readRawFolders(Cursor cursor) {
495 final FolderList fl;
501 return FolderList.fromBlob(blob);
518 fl = FolderList.fromBlob(
548 rawFolders = FolderList.fromBlob((byte[]) val);
560 * this list, make a new {@link FolderList} and use {@link #setRawFolders(FolderList)}
    [all...]
UIProvider.java     [all...]
  /external/libmtp/examples/
emptyfolders.c 25 static void prune_empty_folders(LIBMTP_mtpdevice_t *device, LIBMTP_file_t *files, LIBMTP_folder_t *folderlist, int do_delete)
27 if(folderlist==NULL)
30 if(folderlist->child == NULL) { // this *might* be empty
36 if(file->parent_id == folderlist->folder_id) { // folder has a child
44 printf("empty folder %u (%s)\n",folderlist->folder_id,folderlist->name);
46 if (LIBMTP_Delete_Object(device,folderlist->folder_id) != 0) {
47 printf("Couldn't delete folder %u\n",folderlist->folder_id);
55 prune_empty_folders(device,files,folderlist->child,do_delete); // recurse down
56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse alon
    [all...]
folders.c 26 static void dump_folder_list(LIBMTP_folder_t *folderlist, int level)
29 if(folderlist==NULL) {
33 printf("%u\t", folderlist->folder_id);
36 printf("%s\n", folderlist->name);
38 dump_folder_list(folderlist->child, level+1);
39 dump_folder_list(folderlist->sibling, level);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderSelectorAdapter.java 201 * Finally we do a depth-first traversal of the constructed tree to re-fill the folderList in
203 * @param folderList List of {@link Folder} objects to sort
205 private void folderSort(final List<FolderRow> folderList) {
210 final Map<Uri, TreeNode> nodeMap = new HashMap<Uri, TreeNode>(folderList.size());
213 for (final FolderRow folderRow : folderList) {
237 folderList.clear();
240 // folderList list and sets mPathName in the FolderRow objects
264 folderList.add(currentNode.mWrappedObject);
SwipeableListView.java 42 import com.android.mail.providers.FolderList;
252 final FolderList folders = FolderList.copyOf(targetFolders.values());
FolderListFragment.java 99 * True if you want a divided FolderList. A divided folder list shows the following groups:
102 * An undivided FolderList shows all folders without any divisions and without recent folders.
715 final List<Folder> folderList = new ArrayList<Folder>();
717 return folderList;
722 folderList.add(f);
725 return folderList;
    [all...]
TwoPaneController.java 420 final FolderListFragment folderList = getFolderListFragment();
421 if (mode == ViewMode.CONVERSATION_LIST && folderList != null
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java 29 import com.android.mail.providers.FolderList;
222 final FolderList folderList = FolderList.copyOf(folders);
225 ConversationCursorCommand.COMMAND_GET_RAW_FOLDERS, folderList);
  /external/libmtp/src/
libmtp.c     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationCursor.java 44 import com.android.mail.providers.FolderList;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 546 * Find a folder in the db, creating the FolderInfo if necessary, and adding it to folderList.
548 FolderInfo getFolderById(Context context, HashMap<Long,FolderInfo> folderList, long id) {
567 folderInfo = findOrMakeFolder(folderList, id);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java     [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 105 import com.android.mail.providers.FolderList;
    [all...]
  /prebuilts/devtools/tools/lib/
layoutlib-api.jar 
sdk-common.jar 
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 

Completed in 2803 milliseconds