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

1 2

  /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;
  /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);
connect.c 31 LIBMTP_folder_t *folders; variable
92 folders = LIBMTP_Get_Folder_List (device);
pathutils.c 30 * Runs by walking through folders structure */
63 parse_path (char * path, LIBMTP_file_t * files, LIBMTP_folder_t * folders)
87 item_id = lookup_folder_id(folders,path,"");
93 uint32_t parent_id = lookup_folder_id(folders,parent,"");
  /external/chromium_org/chrome/utility/media_galleries/
picasa_album_table_reader_unittest.cc 37 // Only folders require filenames. Tests handling of different length columns.
65 const std::vector<AlbumInfo>& folders = reader.folders(); local
68 ASSERT_EQ(1u, folders.size());
71 EXPECT_EQ(test_folder_name, folders[0].name);
73 EXPECT_EQ(test_folder_path, folders[0].path);
75 base::TimeDelta time_delta = albums[0].timestamp - folders[0].timestamp;
picasa_album_table_reader.h 24 const std::vector<AlbumInfo>& folders() const;
  /external/chromium_org/chrome/browser/media_galleries/
media_folder_finder_unittest.cc 193 std::vector<base::FilePath> folders; local
194 folders.push_back(fake_dir());
195 CreateMediaFolderFinder(folders, false, expected_results);
202 std::vector<base::FilePath> folders; local
203 folders.push_back(fake_dir());
204 CreateMediaFolderFinder(folders, false, expected_results);
213 std::vector<base::FilePath> folders; local
214 CreateMediaFolderFinder(folders, true, expected_results);
222 std::vector<base::FilePath> folders; local
223 folders.push_back(fake_dir())
232 std::vector<base::FilePath> folders; local
278 std::vector<base::FilePath> folders; local
295 std::vector<base::FilePath> folders; local
327 std::vector<base::FilePath> folders; local
346 std::vector<base::FilePath> folders; local
382 std::vector<base::FilePath> folders; local
    [all...]
  /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 32 const AlbumMap& folders)
36 folders_inis_.reserve(folders.size());
41 for (AlbumMap::const_iterator it = folders.begin(); it != folders.end(); ++it)
80 // If queue of folders to process not empty, post self onto task runner again.
safe_picasa_album_table_reader.h 68 const std::vector<AlbumInfo>& folders);
safe_picasa_albums_indexer.h 28 // INI files found in Folders. The SafePicasaAlbumsIndexer object is ref-counted
38 SafePicasaAlbumsIndexer(const AlbumMap& albums, const AlbumMap& folders);
52 // Processes a batch of folders. Reposts itself until done, then starts IPC.
70 // List of folders that still need their INI files read.
picasa_data_provider_browsertest.cc 29 scoped_ptr<AlbumMap> folders = data_provider->GetFolders(); local
30 ASSERT_TRUE(folders.get());
31 EXPECT_EQ(2u, folders->size());
33 AlbumMap::const_iterator folder_1 = folders->find(
35 EXPECT_NE(folders->end(), folder_1);
41 AlbumMap::const_iterator folder_2 = folders->find(
43 EXPECT_NE(folders->end(), folder_2);
safe_picasa_album_table_reader.cc 112 const std::vector<AlbumInfo>& folders) {
119 FROM_HERE, base::Bind(callback_, parse_success, albums, folders));
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 88 void WriteUnpackInfo(const CObjectVector<CFolder> &folders);
91 const CObjectVector<CFolder> &folders,
104 CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders);
7zOut.cpp 386 void COutArchive::WriteUnpackInfo(const CObjectVector<CFolder> &folders)
388 if (folders.IsEmpty())
394 WriteNumber(folders.Size());
397 for (int i = 0; i < folders.Size(); i++)
398 WriteFolder(folders[i]);
403 for (i = 0; i < folders.Size(); i++)
405 const CFolder &folder = folders[i];
412 for (i = 0; i < folders.Size(); i++)
414 const CFolder &folder = folders[i];
424 const CObjectVector<CFolder> &folders,
796 CObjectVector<CFolder> folders; local
    [all...]
7zIn.cpp 534 CObjectVector<CFolder> &folders)
542 folders.Clear();
543 folders.Reserve(numFolders);
546 folders.Add(CFolder());
547 GetNextFolderItem(folders.Back());
556 CFolder &folder = folders[i];
575 CFolder &folder = folders[i];
586 const CObjectVector<CFolder> &folders,
593 numUnpackStreamsInFolders.Reserve(folders.Size());
600 for (int i = 0; i < folders.Size(); i++)
793 CObjectVector<CFolder> folders; local
    [all...]
7zIn.h 77 const CFolder &folder = Folders[folderIndex];
182 CObjectVector<CFolder> &folders);
185 const CObjectVector<CFolder> &folders,
197 CObjectVector<CFolder> &folders,
  /development/tools/findunused/
findunusedstrings 8 folder option causes only that app folder to be scanned, default is to scan all folders onder apps/
  /external/chromium_org/chrome/browser/web_applications/
web_app_mac.h 93 // Builds a shortcut and copies it into the given destination folders.
95 size_t CreateShortcutsIn(const std::vector<base::FilePath>& folders) const;
  /external/chromium_org/third_party/lzma_sdk/
7zIn.c 109 p->Folders = 0;
119 if (p->Folders)
121 SzFolder_Free(&p->Folders[i], alloc);
126 IAlloc_Free(alloc, p->Folders);
168 const CSzFolder &folderInfo = Folders[folderIndex];
190 startPos += p->db.Folders[i].NumPackStreams;
216 v3.13 incorrectly worked with empty folders
217 v4.07: Loop for skipping empty folders
224 if (p->db.Folders[folderIndex].NumUnpackStreams != 0)
233 if (indexInFolder >= p->db.Folders[folderIndex].NumUnpackStreams
    [all...]

Completed in 454 milliseconds

1 2