Searched defs:lastModified (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8BlobCustomHelpers.h59 double lastModified() const function in class:blink::V8BlobCustomHelpers::ParsedProperties
H A DV8BlobCustomHelpers.cpp55 void ParsedProperties::setLastModified(double lastModified) argument
59 m_lastModified = lastModified;
97 v8::Local<v8::Value> lastModified;
98 TONATIVE_DEFAULT(bool, containsLastModified, DictionaryHelper::get(dictionary, "lastModified", lastModified), false);
100 TONATIVE_DEFAULT(long long, lastModifiedInt, toInt64(lastModified), false);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebBlobInfo.h39 WebBlobInfo(const WebString& uuid, const WebString& filePath, const WebString& fileName, const WebString& type, double lastModified, long long size) argument
46 , m_lastModified(lastModified)
73 double lastModified() const function in class:blink::WebBlobInfo
/external/conscrypt/src/platform/java/org/conscrypt/
H A DCertPinManager.java35 private long lastModified; field in class:CertPinManager
109 lastModified = pinFile.lastModified();
160 return pinFile.lastModified() == lastModified;
/external/conscrypt/src/main/java/org/conscrypt/
H A DFileClientSessionCache.java353 long lastModified = -1; field in class:FileClientSessionCache.CacheFile
356 public long lastModified() { method in class:FileClientSessionCache.CacheFile
357 long lastModified = this.lastModified;
358 if (lastModified == -1) {
359 lastModified = this.lastModified = super.lastModified();
361 return lastModified;
367 long result = lastModified()
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DAntJarProcessor.java64 long lastModified, File fromArchive, int mode) throws IOException {
69 struct.time = lastModified;
63 zipFile(InputStream is, ZipOutputStream zOut, String vPath, long lastModified, File fromArchive, int mode) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DCacheStrategy.java107 private Date lastModified; field in class:CacheStrategy.Factory
149 lastModified = HttpDate.parse(value);
242 if (lastModified != null) {
272 } else if (lastModified != null
281 long delta = servedMillis - lastModified.getTime();
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFile.cpp118 File::File(const String& path, const String& name, const String& relativePath, UserVisibility userVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) argument
125 , m_snapshotModificationTime(hasSnaphotData ? lastModified : invalidFileTime())
174 long long File::lastModified() const function in class:blink::File
182 // lastModified returns a number, not a Date instance,
H A DFile.h66 static PassRefPtrWillBeRawPtr<File> createFromSerialization(const String& path, const String& name, const String& relativePath, UserVisibility userVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) argument
68 return adoptRefWillBeNoop(new File(path, name, relativePath, userVisibility, hasSnaphotData, size, lastModified, blobDataHandle));
70 static PassRefPtrWillBeRawPtr<File> createFromIndexedSerialization(const String& path, const String& name, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) argument
72 return adoptRefWillBeNoop(new File(path, name, String(), IsNotUserVisible, true, size, lastModified, blobDataHandle));
119 // Getter for the lastModified IDL attribute,
121 long long lastModified() const;
141 File(const String& path, const String& name, const String& relativePath, UserVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle>);
/external/chromium_org/third_party/icu/source/i18n/
H A Dvzone.cpp71 vzone_getLastModified(VZone* zone, UDate& lastModified) { argument
72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified);
76 vzone_setLastModified(VZone* zone, UDate lastModified) { argument
77 return ((VTimeZone*)zone)->VTimeZone::setLastModified(lastModified);
H A Dvtzone.cpp1144 VTimeZone::getLastModified(UDate& lastModified) const {
1146 lastModified = lastmod;
1153 VTimeZone::setLastModified(UDate lastModified) { argument
1154 lastmod = lastModified;
/external/icu/icu4c/source/i18n/
H A Dvzone.cpp71 vzone_getLastModified(VZone* zone, UDate& lastModified) { argument
72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified);
76 vzone_setLastModified(VZone* zone, UDate lastModified) { argument
77 return ((VTimeZone*)zone)->VTimeZone::setLastModified(lastModified);
H A Dvtzone.cpp1144 VTimeZone::getLastModified(UDate& lastModified) const {
1146 lastModified = lastmod;
1153 VTimeZone::setLastModified(UDate lastModified) { argument
1154 lastmod = lastModified;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DResponse.java204 if (parsedHeaders().lastModified != null
205 && networkHeaders.lastModified != null
206 && networkHeaders.lastModified.getTime() < parsedHeaders().lastModified.getTime()) {
316 Date lastModified; field in class:Response.ParsedHeaders
326 lastModified = HttpDate.parse(value);
/external/proguard/src/proguard/
H A DConfiguration.java86 public long lastModified = 0L; field in class:Configuration
H A DConfigurationParser.java150 ConfigurationConstants.INCLUDE_DIRECTIVE .startsWith(nextWord)) configuration.lastModified = parseIncludeArgument(configuration.lastModified);
162 else if (ConfigurationConstants.FORCE_PROCESSING_OPTION .startsWith(nextWord)) configuration.lastModified = parseNoArgument(Long.MAX_VALUE);
237 private long parseIncludeArgument(long lastModified) throws ParseException, IOException argument
247 return Math.max(lastModified, file.lastModified());
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceResponse.cpp411 double ResourceResponse::lastModified() const function in class:blink::ResourceResponse
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceFetcher.cpp847 const AtomicString& lastModified = resource->response().httpHeaderField("Last-Modified"); local
849 if (!lastModified.isEmpty() || !eTag.isEmpty()) {
854 if (!lastModified.isEmpty())
855 revalidatingRequest.setHTTPHeaderField("If-Modified-Since", lastModified);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp680 double lastModified; local
681 file.captureSnapshot(size, lastModified);
683 doWriteNumber(lastModified);
1481 double lastModified = invalidFileTime(); local
1482 file->captureSnapshot(size, lastModified);
1484 m_blobInfo->append(WebBlobInfo(file->uuid(), file->path(), file->name(), file->type(), lastModified, size));
2302 double lastModified = 0; local
2318 if (!doReadNumber(&lastModified))
2325 return File::createFromSerialization(path, name, relativePath, userVisibility, hasSnapshot > 0, size, lastModified, getOrCreateBlobDataHandle(uuid, type));
2337 return File::createFromIndexedSerialization(info.filePath(), info.fileName(), info.size(), info.lastModified(), getOrCreateBlobDataHandl
[all...]

Completed in 426 milliseconds

123