/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
search_operation_unittest.cc | 40 GURL next_link; local 45 &error, &next_link, &results)); 49 EXPECT_TRUE(next_link.is_empty()); 80 GURL next_link; local 85 &error, &next_link, &results)); 89 EXPECT_TRUE(next_link.is_empty()); 109 &error, &next_link, &results)); 113 EXPECT_TRUE(next_link.is_empty()); 127 GURL next_link; local 132 &error, &next_link, &results)) [all...] |
search_operation.h | 45 // |next_link| is set, this is the search result url that will be fetched. 51 const GURL& next_link, 64 const GURL& next_link,
|
search_operation.cc | 93 const GURL& next_link, 98 if (next_link.is_empty()) { 107 next_link, 157 const GURL& next_link, 169 callback.Run(error, next_link, result.Pass());
|
/external/chromium_org/chrome/browser/drive/ |
gdata_wapi_service.cc | 278 const GURL& next_link, 281 DCHECK(!next_link.is_empty()); 284 return GetRemainingResourceList(next_link, callback); 288 const GURL& next_link, 291 DCHECK(!next_link.is_empty()); 294 return GetRemainingResourceList(next_link, callback); 594 const GURL& next_link, 597 DCHECK(!next_link.is_empty()); 603 next_link,
|
drive_api_service.h | 93 const GURL& next_link, 96 const GURL& next_link, 184 const GURL& next_link,
|
drive_service_interface.h | 151 // |next_link| must not be empty. |callback| must not be null. 153 const GURL& next_link, 161 // |next_link| must not be empty. |callback| must not be null. 163 const GURL& next_link, 371 const GURL& next_link,
|
dummy_drive_service.cc | 80 const GURL& next_link, 84 const GURL& next_link, 194 const GURL& next_link,
|
dummy_drive_service.h | 49 const GURL& next_link, 52 const GURL& next_link, 140 const GURL& next_link,
|
gdata_wapi_service.h | 89 const GURL& next_link, 92 const GURL& next_link, 180 const GURL& next_link,
|
fake_drive_service.h | 136 const GURL& next_link, 139 const GURL& next_link, 227 const GURL& next_link,
|
drive_api_service.cc | 454 const GURL& next_link, 457 DCHECK(!next_link.is_empty()); 464 request->set_next_link(next_link); 470 const GURL& next_link, 473 DCHECK(!next_link.is_empty()); 480 request->set_next_link(next_link); 813 const GURL& next_link, 816 DCHECK(!next_link.is_empty()); 822 next_link,
|
fake_drive_service_unittest.cc | 542 const google_apis::Link* next_link = local 544 ASSERT_TRUE(next_link); 546 GURL next_url(next_link->href()); 562 next_link = resource_list->GetLinkByType(Link::LINK_NEXT); 563 ASSERT_TRUE(next_link); 564 next_url = GURL(next_link->href()); 602 const google_apis::Link* next_link = local 604 ASSERT_TRUE(next_link); 606 GURL next_url(next_link->href()); 622 next_link = resource_list->GetLinkByType(Link::LINK_NEXT) 660 const google_apis::Link* next_link = local 712 const google_apis::Link* next_link = local [all...] |
drive_api_util.cc | 523 if (!file_list.next_link().is_empty()) { 526 link->set_href(file_list.next_link()); 549 if (!change_list.next_link().is_empty()) { 552 link->set_href(change_list.next_link());
|
fake_drive_service.cc | 428 const GURL& next_link, 431 DCHECK(!next_link.is_empty()); 434 return GetRemainingResourceList(next_link, callback); 438 const GURL& next_link, 441 DCHECK(!next_link.is_empty()); 444 return GetRemainingResourceList(next_link, callback); [all...] |
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_drive.h | 142 const GURL& next_link,
|
/external/chromium_org/google_apis/drive/ |
drive_api_parser.h | 696 const GURL& next_link() const { return next_link_; } function in class:google_apis::FileList 707 void set_next_link(const GURL& next_link) { 708 next_link_ = next_link; 814 const GURL& next_link() const { return next_link_; } function in class:google_apis::ChangeList 828 void set_next_link(const GURL& next_link) { 829 next_link_ = next_link;
|
drive_api_requests.h | 316 const GURL& next_link() const { return next_link_; } function in class:google_apis::drive::FilesListNextPageRequest 317 void set_next_link(const GURL& next_link) { next_link_ = next_link; } 472 const GURL& next_link() const { return next_link_; } function in class:google_apis::drive::ChangesListNextPageRequest 473 void set_next_link(const GURL& next_link) { next_link_ = next_link; }
|
drive_api_parser_unittest.cc | 136 "t10AAAAABC"), filelist->next_link()); 258 changelist->next_link().spec());
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
job_scheduler.h | 94 const GURL& next_link, 100 const GURL& next_link, 208 const GURL& next_link,
|
dummy_file_system.h | 73 const GURL& next_link,
|
file_system_interface.h | 84 const GURL& next_link, 372 // If |next_link| is set, this is the search result url that will be 379 const GURL& next_link,
|
job_scheduler.cc | 341 const GURL& next_link, 350 next_link, 360 const GURL& next_link, 369 next_link, 745 const GURL& next_link, 754 next_link, [all...] |
job_scheduler_unittest.cc | 309 const google_apis::Link* next_link = local 311 ASSERT_TRUE(next_link); 313 GURL next_url(next_link->href()); 344 const google_apis::Link* next_link = local 346 ASSERT_TRUE(next_link); 348 GURL next_url(next_link->href()); [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/ |
api_util_interface.h | 124 // Fetches the next chunk of ResourceList identified by |next_link|. 126 virtual void ContinueListing(const GURL& next_link,
|
fake_api_util.h | 78 virtual void ContinueListing(const GURL& next_link,
|