Searched refs:last_modified (Results 101 - 125 of 219) sorted by relevance

123456789

/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler.h135 const base::Time& last_modified,
142 const base::Time& last_modified,
H A Dsearch_metadata.cc53 return a_file_info.last_modified() > b_file_info.last_modified();
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_task_helper.cc43 file_entry_info.last_modified =
45 file_entry_info.last_accessed = file_entry_info.last_modified;
/external/chromium_org/components/test/data/web_database/
H A Dversion_48.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR);
H A Dversion_38.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0);
H A Dversion_39.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0, sync_guid VARCHAR);
H A Dversion_40.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0, sync_guid VARCHAR);
H A Dversion_41.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0, sync_guid VARCHAR);
/external/chromium_org/third_party/zlib/google/
H A Dzip_reader.cc237 if (current_entry_info()->last_modified() != base::Time::UnixEpoch())
240 current_entry_info()->last_modified());
H A Dzip_unittest.cc154 EXPECT_EQ(file_info.last_modified, test_mtime);
157 EXPECT_GE(file_info.last_modified, now_time);
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_delegate_proxy.cc131 uint32 last_modified,
139 params.last_modified = last_modified;
405 uint32 last_modified) {
411 params.last_modified = last_modified;
402 DidReceiveManualResponse( const GURL& url, const std::string& mime_type, const std::string& headers, uint32 expected_length, uint32 last_modified) argument
/external/chromium_org/ipc/
H A Dipc_message_utils.cc573 WriteParam(m, p.last_modified.ToDoubleT());
581 double last_modified, last_accessed, creation_time; local
584 !ReadParam(m, iter, &last_modified) ||
588 p->last_modified = base::Time::FromDoubleT(last_modified);
601 LogParam(p.last_modified.ToDoubleT(), l);
/external/chromium_org/chrome/browser/drive/
H A Ddrive_api_service.cc482 const base::Time& last_modified,
492 request->set_modified_date(last_modified);
501 const base::Time& last_modified,
513 if (!last_modified.is_null()) {
516 request->set_modified_date(last_modified);
478 CopyResource( const std::string& resource_id, const std::string& parent_resource_id, const std::string& new_title, const base::Time& last_modified, const FileResourceCallback& callback) argument
497 UpdateResource( const std::string& resource_id, const std::string& parent_resource_id, const std::string& new_title, const base::Time& last_modified, const base::Time& last_viewed_by_me, const FileResourceCallback& callback) argument
H A Dfake_drive_service.h192 const base::Time& last_modified,
198 const base::Time& last_modified,
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Ddrive_internals_ui.cc53 // last_modified: '2005-08-09T09:57:00-08:00',
79 const base::Time last_modified = info.GetLastModifiedTime(); local
88 "last_modified",
89 google_apis::util::FormatTimeAsStringLocaltime(last_modified));
143 const base::Time last_modified = base::Time::FromInternalValue( local
144 file_info.last_modified());
149 StringAppendF(&out, " last_modified: %s\n",
150 google_apis::util::FormatTimeAsString(last_modified).c_str());
/external/chromium_org/chrome/browser/history/
H A Ddownload_database.cc285 EnsureColumnExists("last_modified", "VARCHAR NOT NULL DEFAULT \"\"");
308 "last_modified VARCHAR NOT NULL," // Last-Modified header
367 "referrer, by_ext_id, by_ext_name, etag, last_modified "
401 info->last_modified = statement_main.ColumnString(column++);
507 "opened=?, by_ext_id=?, by_ext_name=?, etag=?, last_modified=? "
524 statement.BindString(column++, data.last_modified);
568 " last_modified) "
589 statement_insert.BindString(column++, info.last_modified);
/external/chromium_org/net/http/
H A Dhttp_util.cc715 base::Time last_modified; local
716 if (!base::Time::FromString(last_modified_header.c_str(), &last_modified))
723 return ((date - last_modified).InSeconds() >= 60);
/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dfileapi_worker.cc86 base::Time::FromInternalValue(file_info.last_modified());
120 // we have to opt out from this check. We do this by unsetting last_modified
124 file_info.last_modified = base::Time();
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Diphoto_file_util.cc287 info.size, info.last_modified));
302 info.size, info.last_modified));
H A Ditunes_file_util.cc200 xml_info.size, xml_info.last_modified));
267 file_info.last_modified));
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Ddrive_service_on_worker.cc311 const base::Time& last_modified,
321 const base::Time& last_modified,
307 CopyResource( const std::string& resource_id, const std::string& parent_resource_id, const std::string& new_title, const base::Time& last_modified, const google_apis::FileResourceCallback& callback) argument
317 UpdateResource( const std::string& resource_id, const std::string& parent_resource_id, const std::string& new_title, const base::Time& last_modified, const base::Time& last_viewed_by_me, const google_apis::FileResourceCallback& callback) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc156 base::TimeFormatFriendlyDateAndTime(database_info.last_modified)));
171 local_storage_info.last_modified)));
/external/chromium_org/components/nacl/browser/
H A Dpnacl_translation_cache.cc423 info.last_modified.UTCExplode(&exploded);
424 if (info.last_modified.is_null() || !exploded.HasValidValues()) {
/external/chromium_org/components/search_engines/
H A Ddefault_search_manager_unittest.cc27 // date_created or the last_modified time. Neither pointer should be NULL.
134 data->last_modified = base::Time();
175 data.last_modified = base::Time();
H A Dtemplate_url.h567 base::Time last_modified() const { return data_.last_modified; } function in class:TemplateURL

Completed in 459 milliseconds

123456789