HomeSort by relevance Sort by last modified time
    Searched refs:folders (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/chromium_org/third_party/sqlite/src/test/
tkt2391.test 19 CREATE TABLE folders(folderid, parentid, foldername COLLATE binary);
20 INSERT INTO folders VALUES(1, 3, 'FolderA');
21 INSERT INTO folders VALUES(1, 3, 'folderB');
22 INSERT INTO folders VALUES(4, 0, 'FolderC');
28 SELECT count(*) FROM folders WHERE foldername < 'FolderC';
34 SELECT count(*) FROM folders WHERE foldername < 'FolderC' COLLATE nocase;
44 CREATE INDEX f_i ON folders(foldername);
45 SELECT count(*) FROM folders WHERE foldername < 'FolderC' COLLATE nocase;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderSettingsObservable.java 33 void setIncludedFolders(ArrayList<String> folders);
34 void setPartialFolders(ArrayList<String> folders);
SystemFolderSelectorAdapter.java 29 public SystemFolderSelectorAdapter(Context context, Cursor folders,
31 super(context, folders, initiallySelected, layout, header);
34 public SystemFolderSelectorAdapter(Context context, Cursor folders, int layout,
36 super(context, folders, layout, header, excludedFolder);
47 * but allow other system folders.
51 // We only want to show system folders.
UserFolderHierarchicalFolderSelectorAdapter.java 24 public UserFolderHierarchicalFolderSelectorAdapter(Context context, Cursor folders, int layout,
26 super(context, folders, layout, header, excludedFolder);
FolderOperation.java 41 * Get all the unique folders associated with a set of folder operations.
46 HashSet<Folder> folders = new HashSet<Folder>(); local
48 folders.add(op.mFolder);
50 return new ArrayList<Folder>(folders);
FolderSelectorAdapter.java 49 * 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,
102 createFolderRows(folders, initiallySelected);
105 public FolderSelectorAdapter(Context context, Cursor folders, int layout, String header,
111 createFolderRows(folders, null);
114 protected void createFolderRows(Cursor folders, Set<String> initiallySelected) {
115 if (folders == null) {
118 final List<FolderRow> allFolders = new ArrayList<FolderRow>(folders.getCount());
120 if (folders.moveToFirst())
    [all...]
HierarchicalFolderSelectorAdapter.java 41 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders,
43 super(context, folders, initiallySelected, layout, header);
47 public HierarchicalFolderSelectorAdapter(Context context, Cursor folders, int layout,
49 super(context, folders, layout, header, excludedFolder);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderList.java 20 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);
58 * @param in a list of Folders
88 return folders.equals(o);
93 return folders.hashCode();
  /external/libmtp/examples/
emptyfolders.c 3 * Example program that prunes empty folders.
78 printf("This is a dummy run. No folders will be deleted.\n");
79 printf("To delete folders, use the '-d' option.\n");
83 LIBMTP_folder_t *folders; local
97 folders = LIBMTP_Get_Folder_List(device);
99 if(folders == NULL) {
100 printf("No folders found\n");
102 prune_empty_folders(device,files,folders,do_delete);
105 LIBMTP_destroy_folder_t(folders);
folders.c 2 * \file folders.c
3 * Example program that lists all folders on a device.
45 LIBMTP_folder_t *folders; local
53 fprintf(stdout, "mtp-folders: No Devices have been found\n");
56 fprintf(stderr, "mtp-folders: There has been an error connecting. Exit\n");
59 fprintf(stderr, "mtp-folders: Memory Allocation Error. Exit\n");
65 fprintf(stderr, "mtp-folders: Unknown error, please report "
71 fprintf(stdout, "mtp-folders: Successfully connected\n");
91 folders = LIBMTP_Get_Folder_List(iter);
93 if (folders == NULL)
    [all...]
getfile.c 32 extern LIBMTP_folder_t *folders;
44 int id = parse_path (from_path,files,folders);
newfolder.c 31 extern LIBMTP_folder_t *folders;
60 int id = parse_path (parent,files,folders);
delfile.c 34 extern LIBMTP_folder_t *folders;
45 uint32_t id = parse_path (path,files,folders);
96 id = parse_path (argv[i],files,folders);
sendfile.c 36 extern LIBMTP_folder_t *folders;
67 parent_id = parse_path (to_path,files,folders);
  /external/chromium_org/chrome/utility/media_galleries/
picasa_album_table_reader_unittest.cc 36 // Only folders require filenames. Tests handling of different length columns.
75 const std::vector<AlbumInfo>& folders = reader.folders(); local
78 ASSERT_EQ(1u, folders.size());
81 EXPECT_EQ(test_folder_name, folders[0].name);
83 EXPECT_EQ(test_folder_path, folders[0].path);
85 base::TimeDelta time_delta = albums[0].timestamp - folders[0].timestamp;
picasa_album_table_reader.h 29 const std::vector<AlbumInfo>& folders() const;
  /packages/apps/Email/src/com/android/email/provider/
FolderPickerSelectorAdapter.java 31 public FolderPickerSelectorAdapter(Context context, Cursor folders,
33 super(context, folders, initiallySelected, layout, header);
42 // We only want to show the non-Trash folders that can accept moved messages
  /external/libmtp/src/
playlist-spl.c 72 static void tracks_from_spl_text_t(text_t* p, uint32_t* tracks, LIBMTP_folder_t* folders, LIBMTP_file_t* files);
73 static void spl_text_t_from_tracks(text_t** p, uint32_t* tracks, const uint32_t trackno, const uint32_t ver_major, const uint32_t ver_minor, char* dnse, LIBMTP_folder_t* folders, LIBMTP_file_t* files);
75 static uint32_t discover_id_from_filepath(const char* s, LIBMTP_folder_t* folders, LIBMTP_file_t* files); // TODO add file/dir cached args
76 static void discover_filepath_from_id(char** p, uint32_t track, LIBMTP_folder_t* folders, LIBMTP_file_t* files);
77 static void find_folder_name(LIBMTP_folder_t* folders, uint32_t* id, char** name);
78 static uint32_t find_folder_id(LIBMTP_folder_t* folders, uint32_t parent, char* name);
155 LIBMTP_folder_t *folders; local
157 folders = LIBMTP_Get_Folder_List(device);
164 tracks_from_spl_text_t(p, pl->tracks, folders, files);
185 LIBMTP_folder_t *folders; local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
safe_picasa_albums_indexer.cc 35 const AlbumMap& folders,
42 folders_inis_.reserve(folders.size());
47 for (AlbumMap::const_iterator it = folders.begin(); it != folders.end(); ++it)
84 // If queue of folders to process not empty, post self onto task runner again.
safe_picasa_album_table_reader.h 67 const std::vector<AlbumInfo>& folders);
safe_picasa_albums_indexer.h 28 // INI files found in Folders. The SafePicasaAlbumsIndexer object is ref-counted
38 const AlbumMap& folders,
53 // Processes a batch of folders. Reposts itself until done, then starts IPC.
71 // List of folders that still need their INI files read.
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
Android.mk 12 # Add new folders with header files here
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 176 folders = mh.listfolders()
177 folders.sort()
178 eq(folders, ['deep', 'inbox', 'wide'])
180 folders = mh.listallfolders()
181 folders.sort()
185 eq(folders, tfolders)
187 folders = mh.listsubfolders('deep')
188 folders.sort()
189 eq(folders, map(normF, ['deep/f1', 'deep/f2']))
191 folders = mh.listallsubfolders('deep'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mhlib.py 176 folders = mh.listfolders()
177 folders.sort()
178 eq(folders, ['deep', 'inbox', 'wide'])
180 folders = mh.listallfolders()
181 folders.sort()
185 eq(folders, tfolders)
187 folders = mh.listsubfolders('deep')
188 folders.sort()
189 eq(folders, map(normF, ['deep/f1', 'deep/f2']))
191 folders = mh.listallsubfolders('deep'
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
Android.mk 14 # Add new folders with header files here

Completed in 349 milliseconds

1 2 3 4