HomeSort by relevance Sort by last modified time
    Searched refs:lastModifiedDate (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
File.idl 28 readonly attribute Date lastModifiedDate;
File.h 89 // This returns the current date and time if the file's last modifiecation date is not known (per spec: http://www.w3.org/TR/FileAPI/#dfn-lastModifiedDate).
90 double lastModifiedDate() const;
File.cpp 148 double File::lastModifiedDate() const
  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullService.java 175 long lastModifiedDate = localHttpURLConnection.getLastModified();
216 dateValues.put(DataProviderContract.DATA_DATE_COLUMN, lastModifiedDate);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebURLResponse.cpp 276 double WebURLResponse::lastModifiedDate() const
278 return static_cast<double>(m_private->m_resourceResponse->lastModifiedDate());
281 void WebURLResponse::setLastModifiedDate(double lastModifiedDate)
283 m_private->m_resourceResponse->setLastModifiedDate(static_cast<time_t>(lastModifiedDate));
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLResponse.h 127 WEBKIT_EXPORT double lastModifiedDate() const;
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 616 String lastModifiedDate = formatDate(-115, TimeUnit.SECONDS);
618 new MockResponse().addHeader("Last-Modified: " + lastModifiedDate)
621 assertTrue(headers.contains("If-Modified-Since: " + lastModifiedDate));
655 String lastModifiedDate = formatDate(-2, TimeUnit.HOURS);
657 new MockResponse().addHeader("Last-Modified: " + lastModifiedDate)
660 assertTrue(headers.contains("If-Modified-Since: " + lastModifiedDate));
678 String lastModifiedDate = formatDate(-2, TimeUnit.HOURS);
681 .addHeader("Last-Modified: " + lastModifiedDate)
684 assertTrue(headers.contains("If-Modified-Since: " + lastModifiedDate));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceResponse.cpp 155 data->m_lastModifiedDate = lastModifiedDate();
480 void ResourceResponse::setLastModifiedDate(time_t lastModifiedDate)
482 m_lastModifiedDate = lastModifiedDate;
485 time_t ResourceResponse::lastModifiedDate() const
ResourceResponse.h 104 time_t lastModifiedDate() const;
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 205 static_cast<uint32>(response.lastModifiedDate());
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 372 entry.cachedMtime_ = file.lastModifiedDate;
    [all...]

Completed in 306 milliseconds