/external/chromium_org/components/dom_distiller/core/ |
dom_distiller_model.cc | 29 bool DomDistillerModel::GetEntryById(const std::string& entry_id, 32 if (!GetKeyById(entry_id, &key)) { 49 bool DomDistillerModel::GetKeyById(const std::string& entry_id, 51 StringToKeyMap::const_iterator it = entry_id_to_key_map_.find(entry_id); 109 std::string entry_id = GetEntryIdFromSyncData(*it); local 111 entries_to_change.insert(entry_id); 116 if (GetEntryById(entry_id, NULL)) { 124 if (entries_to_change.find(it->second.entry_id()) == 146 const std::string& entry_id = entry.entry_id(); local 157 const std::string& entry_id = entry.entry_id(); local 177 const std::string& entry_id = GetEntryIdFromSyncData(change.sync_data()); local [all...] |
dom_distiller_observer.h | 25 std::string entry_id; member in struct:dom_distiller::DomDistillerObserver::ArticleUpdate
|
article_entry.cc | 60 return specifics.entry_id(); 65 const std::string& entry_id = entry.entry_id(); local 66 return syncer::SyncData::CreateLocalData(entry_id, entry_id, specifics);
|
dom_distiller_test_util.cc | 44 if (expected->entry_id != actual->entry_id) { 45 *listener << " Mismatched entry id. Expected: " << expected->entry_id 46 << " actual: " << actual->entry_id; 50 *listener << " Mismatched update for entryid:" << expected->entry_id 71 *os << "( EntryId: " << i->entry_id << ", UpdateType: " << i->update_type
|
dom_distiller_service.cc | 55 const std::string& entry_id) { 57 if (!store_->GetEntryById(entry_id, &entry)) { 65 const std::string& entry_id) { 67 if (!store_->GetEntryById(entry_id, &entry)) { 112 const std::string& entry_id = entry.entry_id(); local 114 if ((*it)->HasEntryId(entry_id)) {
|
dom_distiller_model_unittest.cc | 26 EXPECT_TRUE(model.GetEntryById(entry1.entry_id(), &found_entry)); 30 EXPECT_TRUE(model.GetEntryById(entry2.entry_id(), &found_entry)); 104 EXPECT_TRUE(model.GetEntryById(entry1.entry_id(), &found_entry)); 108 EXPECT_TRUE(model.GetEntryById(entry2.entry_id(), &found_entry)); 122 EXPECT_TRUE(model.GetEntryById(entry1.entry_id(), &found_entry)); 126 EXPECT_TRUE(model.GetEntryById(entry2.entry_id(), &found_entry));
|
dom_distiller_store.cc | 57 bool DomDistillerStore::GetEntryById(const std::string& entry_id, 59 return model_.GetEntryById(entry_id, entry); 73 if (model_.GetEntryById(entry.entry_id(), NULL)) { 74 DVLOG(1) << "Already have entry with id " << entry.entry_id() << "."; 101 if (!model_.GetEntryById(entry.entry_id(), NULL)) { 102 DVLOG(1) << "No entry with id " << entry.entry_id() << " found."; 116 DVLOG(1) << "Failed to update entry with id " << entry.entry_id() << "."; 131 if (!model_.GetEntryById(entry.entry_id(), NULL)) { 132 DVLOG(1) << "No entry with id " << entry.entry_id() << " found."; 233 article_update.entry_id = entry.entry_id() [all...] |
dom_distiller_model.h | 22 // looked up by URL or by entry_id. 34 bool GetEntryById(const std::string& entry_id, ArticleEntry* entry) const; 69 bool GetKeyById(const std::string& entry_id, KeyType* key) const;
|
dom_distiller_service.h | 49 void RemoveEntry(const std::string& entry_id); 52 // with |entry_id| exists. The ViewerHandle should be destroyed before the 56 const std::string& entry_id);
|
task_tracker.cc | 80 bool TaskTracker::HasEntryId(const std::string& entry_id) const { 81 return entry_.entry_id() == entry_id;
|
dom_distiller_store_unittest.cc | 43 (*map)[e.entry_id()] = e; 80 ArticleEntry CreateEntry(std::string entry_id, 85 entry.set_entry_id(entry_id); 192 EntryMap::iterator expected_it = expected_entries.find(it->entry_id()); 195 << it->entry_id() << ">"; 199 << it->entry_id() << ">"; 452 update.entry_id = GetSampleEntry(0).entry_id(); 461 update.entry_id = GetSampleEntry(1).entry_id(); [all...] |
fake_db.cc | 29 (*db_)[it->entry_id()] = *it; 34 (*db_).erase(it->entry_id());
|
dom_distiller_service_unittest.cc | 81 std::string entry_id("id0"); 83 entry.set_entry_id(entry_id); 90 service_->ViewEntry(&viewer_delegate, entry_id); 213 update.entry_id = entry.entry_id();
|
dom_distiller_store.h | 49 virtual bool GetEntryById(const std::string& entry_id, 98 virtual bool GetEntryById(const std::string& entry_id,
|
task_tracker.h | 85 bool HasEntryId(const std::string& entry_id) const;
|
dom_distiller_database.cc | 67 updates.Put(leveldb::Slice(it->entry_id()), 73 updates.Delete(leveldb::Slice(it->entry_id()));
|
/external/chromium_org/chrome/browser/media_galleries/linux/ |
mtp_device_object_enumerator.cc | 48 bool MTPDeviceObjectEnumerator::GetEntryId(uint32_t* entry_id) const { 49 DCHECK(entry_id); 53 *entry_id = file_entries_[index_].item_id();
|
mtp_device_object_enumerator.h | 26 // If the current file entry is valid, returns true and fills in |entry_id| 27 // with the entry identifier else returns false and |entry_id| is not set. 28 bool GetEntryId(uint32_t* entry_id) const;
|
/external/chromium_org/net/disk_cache/flash/ |
log_store.h | 38 // |entry_id|. 39 bool CreateEntry(int32 size, int32* entry_id); 41 // Deletes |entry_id|; the client should keep track of |size| and provide it 44 void DeleteEntry(int32 entry_id, int32 size); 49 // Opens an entry with id |entry_id|. 50 bool OpenEntry(int32 entry_id); 53 // relative to the entry's content, from an entry identified by |entry_id|. 54 bool ReadData(int32 entry_id, void* buffer, int32 size, int32 offset) const;
|
/external/chromium_org/components/dom_distiller/webui/ |
dom_distiller_handler.cc | 53 std::string entry_id; local 54 args->GetString(0, &entry_id); 68 entry->SetString("entry_id", article.entry_id()); 70 article.entry_id() : article.title();
|
/external/chromium_org/sync/syncable/ |
syncable_util.cc | 29 bool IsLegalNewParent(BaseTransaction* trans, const Id& entry_id, 31 if (entry_id.IsRoot()) 36 if (entry_id == ancestor_id)
|
/external/chromium_org/components/dom_distiller/webui/resources/ |
about_dom_distiller.js | 21 var entry_id = entries[i].entry_id; 22 link.setAttribute('id', 'entry-' + entry_id);
|
/external/chromium_org/chrome/browser/extensions/api/file_system/ |
file_system_api.cc | 894 std::string entry_id; local 895 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &entry_id)) 941 std::string entry_id; local 949 std::string entry_id; local [all...] |
file_system_api.h | 181 // Retains the file entry referenced by |entry_id| in apps::SavedFilesService. 182 // |entry_id| must refer to an entry in an isolated file system. 183 void RetainFileEntry(const std::string& entry_id);
|
/external/chromium/chrome/browser/sessions/ |
tab_restore_service.h | 241 SessionCommand* CreateRestoredEntryCommand(SessionID::id_type entry_id);
|