HomeSort by relevance Sort by last modified time
    Searched defs:folders (Results 1 - 21 of 21) sorted by null

  /external/libmtp/examples/
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...]
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);
connect.c 31 LIBMTP_folder_t *folders; variable
92 folders = LIBMTP_Get_Folder_List (device);
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 87 const char* folders[] = { local
112 COMPILE_ASSERT(arraysize(folders) == disk_cache::MAX_CRASH, sync_folders);
115 *full_path = path.AppendASCII(folders[action]);
  /external/chromium/chrome/browser/importer/
toolbar_importer.cc 310 std::vector<BookmarkFolderType> folders; local
311 if (ExtractBookmarkInformation(reader, &bookmark_entry, &folders,
315 for (std::vector<BookmarkFolderType>::iterator folder = folders.begin();
316 folder != folders.end();
  /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...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintClient.java 173 * Returns the list of source folders for Java source files
176 * @return a list of source folders to search for .java files
184 * Returns the list of output folders for class files
187 * @return a list of output folders to search for .class files
291 * its source or its output folders depending on the {@code attribute} parameter.
296 List<File> folders = new ArrayList<File>(); local
316 folders.add(sourceFolder);
326 if (folders.size() == 0) {
330 folders.add(folder);
335 return folders;
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
UnusedResourceDetector.java 256 File[] folders = res.listFiles(); local
257 if (folders != null) {
258 // Process folders in alphabetical order such that we process
259 // based folders first: we want the locations in base folder
261 Arrays.sort(folders, new Comparator<File>() {
267 for (File folder : folders) {
292 // We were prepending locations, but we want to prefer the base folders
IconDetector.java 90 /** Pattern for the expected density folders to be found in the project */
134 "but some folders are forgotten.",
178 /** Missing density folders */
181 "Ensures that all the density folders are present",
184 "This lint check identifies folders which are missing, such as drawable-hdpi." +
243 "Bitmaps that appear in drawable-nodpi folders will not be scaled by the " +
283 File[] folders = res.listFiles(); local
284 if (folders != null) {
299 for (File folder : folders) {
536 "The %1$s icon has identical contents in the following configuration folders: %2$s"
    [all...]
  /sdk/ide_common/src/com/android/ide/common/resources/
ResourceRepository.java 51 * give access to the folders and files of the resource folder.
132 // get the list of folders for the resource type.
252 * Processes a folder and adds it to the list of existing folders.
293 // could be created from multiple folders, even for the folders that only create
302 List<ResourceFolder> folders = mFolderMap.get(folderType); local
303 if (folders != null) {
304 for (ResourceFolder folder : folders) {
389 // get the folders for the given type
390 List<ResourceFolder> folders = mFolderMap.get(type) local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 258 * Test small Store & Folder functions that manage folders & namespace
263 Folder[] folders = mStore.updateFolders(); local
264 assertEquals(1, folders.length);
265 assertSame(mFolder, folders[0]);
    [all...]
ImapStoreUnitTests.java 522 * TODO: Test this with multiple folders provided by mock server
1270 Folder[] folders = mStore.updateFolders(); local
2150 final Folder[] folders = mStore.updateFolders(); local
2331 ImapFolder[] folders = { local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 114 // sBgItemsIdMap maps *all* the ItemInfos (shortcuts, folders, and widgets) created by
118 // sBgItems is passed to bindItems, which expects a list of all folders and shortcuts created by
120 // within folders).
148 public void bindFolders(HashMap<Long,FolderInfo> folders);
1576 HashMap<Long, FolderInfo> folders = new HashMap<Long, FolderInfo>(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 795 List<ResourceFolder> folders = resources.getFolders(ResourceFolderType.LAYOUT); local
814 List<ResourceFolder> folders = resources.getFolders(ResourceFolderType.LAYOUT); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
pdebuild-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 1172 milliseconds