HomeSort by relevance Sort by last modified time
    Searched full:folder_id (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
fake_drive_service_helper.h 30 std::string* folder_id);
34 std::string* folder_id);
50 const std::string& folder_id,
53 const std::string& folder_id,
fake_drive_service_helper.cc 66 std::string* folder_id) {
67 EXPECT_TRUE(folder_id);
70 GDataErrorCode error = AddFolder(root_folder_id, title, folder_id);
76 root_folder_id, *folder_id,
88 std::string* folder_id) {
89 EXPECT_TRUE(folder_id);
99 *folder_id = folder->resource_id();
186 const std::string& folder_id,
191 folder_id,
201 const std::string& folder_id,
    [all...]
  /external/libmtp/examples/
emptyfolders.c 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);
folders.c 33 printf("%u\t", folderlist->folder_id);
pathutils.c 29 /* Find the folder_id of a given path
48 return folder->folder_id;
  /external/chromium_org/google_apis/drive/
drive_api_url_generator.h 66 // Returns a URL to add a resource to a directory with |folder_id|.
67 GURL GetChildrenInsertUrl(const std::string& folder_id) const;
70 // with |folder_id|.
72 const std::string& folder_id) const;
drive_api_url_generator.cc 158 const std::string& child_id, const std::string& folder_id) const {
161 net::EscapePath(folder_id).c_str(),
drive_api_url_generator_unittest.cc 301 url_generator_.GetChildrenInsertUrl("file:folder_id").spec());
308 test_url_generator_.GetChildrenInsertUrl("file:folder_id").spec());
323 "file:child_id", "file:folder_id").spec());
337 "file:child_id", "file:folder_id").spec());
drive_api_requests.h 520 const std::string& folder_id() const { return folder_id_; } function in class:google_apis::drive::ChildrenInsertRequest
521 void set_folder_id(const std::string& folder_id) {
522 folder_id_ = folder_id;
563 const std::string& folder_id() const { return folder_id_; } function in class:google_apis::drive::ChildrenDeleteRequest
564 void set_folder_id(const std::string& folder_id) {
565 folder_id_ = folder_id;
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
list_changes_task_unittest.cc 98 void SetUpChangesInFolder(const std::string& folder_id) {
102 folder_id, "new file", "file contents", &new_file_id));
106 folder_id, "new file", "file contents",
112 folder_id, "new folder", &new_folder_id));
117 folder_id, "modified file", "file content",
127 folder_id, "trashed file", "file content",
local_to_remote_syncer_unittest.cc 133 std::string folder_id; local
136 parent_folder_id, title, &folder_id));
137 return folder_id;
255 std::string folder_id = GetFileIDForParentAndTitle(app_root, "folder"); local
256 ASSERT_FALSE(folder_id.empty());
260 VerifyTitleUniqueness(folder_id, "file2", google_apis::ENTRY_KIND_FILE);
472 const std::string folder_id = CreateRemoteFolder(app_root, "foo"); local
486 EXPECT_TRUE(folder_id == entries[0]->resource_id() ||
487 folder_id == entries[1]->resource_id());
491 folder_id, &trackers))
    [all...]
conflict_resolver_unittest.cc 119 std::string folder_id; local
122 parent_folder_id, title, &folder_id));
123 return folder_id;
remote_to_local_syncer_unittest.cc 133 std::string folder_id; local
136 parent_folder_id, title, &folder_id));
137 return folder_id;
register_app_task.cc 97 const std::string& folder_id,
  /external/chromium/chrome/browser/history/
starred_url_database_unittest.cc 38 EXPECT_EQ(entry.folder_id, db_value.folder_id);
112 g_entry.folder_id = 100;
163 entry1.folder_id = entry1.parent_folder_id = 100;
184 entry1.folder_id = 100;
191 entry2.folder_id = 101;
250 entry1.folder_id = 10;
starred_url_database.cc 79 entry->folder_id = s.ColumnInt64(8);
189 UIStarID folder_id,
221 statement.BindInt64(2, folder_id);
269 entry->id = CreateStarredEntryRow(0, entry->folder_id,
288 entry->id = CreateStarredEntryRow(entry->url_id, entry->folder_id,
333 if (folder_id_to_node_map.find(star_entries[i].folder_id) !=
340 folder_id_to_node_map[star_entries[i].folder_id] = node;
374 roots->insert(folder_id_to_node_map[star_entries[i].folder_id]);
379 StarredNode* node = folder_id_to_node_map[star_entries[i].folder_id];
444 entry.folder_id = GetMaxFolderID() + 1
    [all...]
starred_url_database.h 92 UIStarID folder_id,
128 // If a folder_id occurs more than once, all but the first ones id is added to
  /external/chromium_org/chrome/browser/android/bookmarks/
bookmarks_bridge.cc 100 long folder_id = Java_BookmarkId_getId(env, j_folder_id_obj); local
102 const BookmarkNode* folder = GetFolderWithFallback(folder_id, type);
146 long folder_id = Java_BookmarkId_getId(env, j_folder_id_obj); local
148 const BookmarkNode* folder = GetFolderWithFallback(folder_id, type);
243 long folder_id, int type) {
244 const BookmarkNode* folder = GetNodeByID(folder_id, type);
bookmarks_bridge.h 57 const BookmarkNode* GetFolderWithFallback(long folder_id, int type);
  /external/chromium/chrome/browser/sync/engine/
process_commit_response_command_unittest.cc 281 Id folder_id = id_factory_.NewLocalId(); local
282 CreateUnprocessedCommitResult(folder_id, id_factory_.root(), "A",
290 ASSERT_EQ(folder_id, dir->GetFirstChildId(&trans, id_factory_.root()));
300 CreateUnprocessedCommitResult(id, folder_id, StringPrintf("Item %d", i),
310 CreateUnsyncedItem(id, folder_id, StringPrintf("Item %d", i), false,
324 // folder_id here, because it changed during the commit.
328 EXPECT_FALSE(folder_id.ServerKnows());
329 EXPECT_TRUE(new_fid != folder_id);
apply_updates_command_unittest.cc 385 Id folder_id = id_factory_.NewLocalId(); local
386 CreateUnsyncedItem(folder_id, id_factory_.root(), "folder",
392 CreateUnsyncedItem(id_factory_.NewLocalId(), folder_id,
479 Id folder_id = id_factory_.NewLocalId(); local
480 CreateUnsyncedItem(folder_id, id_factory_.root(), "folder", true,
486 CreateUnsyncedItem(id_factory_.NewLocalId(), folder_id,
  /packages/apps/Launcher2/
fill_screens.py 68 folder_id = id
74 insert = insert % (id, "title", intent, folder_id, 0, 0, 0, 1, 1, 0, -1, 0)
  /packages/apps/Launcher3/
fill_screens.py 68 folder_id = id
74 insert = insert % (id, "title", intent, folder_id, 0, 0, 0, 1, 1, 0, -1, 0)
  /external/chromium/chrome/browser/importer/
firefox3_importer.h 69 int folder_id,
  /external/chromium_org/chrome/utility/importer/
firefox_importer.h 65 int folder_id,

Completed in 1092 milliseconds

1 2