/external/proguard/src/proguard/ |
UpToDateChecker.java | 50 long inputLastModified = configuration.lastModified; 71 long lastModified = lastModified(classPathEntry.getFile(), true); 72 if (outputLastModified > lastModified) 74 outputLastModified = lastModified; 79 long lastModified = lastModified(classPathEntry.getFile(), false); 80 if (inputLastModified < lastModified) 82 inputLastModified = lastModified; 101 long lastModified = lastModified(classPathEntry.getFile(), false) [all...] |
Configuration.java | 83 public long lastModified = 0L;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
TraceFileInfo.java | 24 public TraceFileInfo(String path, long size, long lastModified) { 27 mLastModified = lastModified;
|
/frameworks/base/media/java/android/media/ |
MediaScannerClient.java | 24 public void scanFile(String path, long lastModified, long fileSize,
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
LastModifiedFileComparator.java | 25 * (see {@link File#lastModified()}).
61 * @return a negative value if the first file's lastmodified date/time
62 * is less than the second, zero if the lastmodified date/time are the
63 * same and a positive value if the first files lastmodified date/time
68 long result = file1.lastModified() - file2.lastModified();
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8FileCustom.cpp | 92 RefPtr<File> file = blobBuilder.createFile(properties.contentType(), fileName, properties.lastModified()); 104 double lastModified = file->lastModifiedDate(); 105 if (!isValidFileTime(lastModified)) 106 lastModified = currentTimeMS(); 110 v8SetReturnValue(info, v8::Date::New(info.GetIsolate(), lastModified)); 116 double lastModified = file->lastModifiedDate(); 117 if (!isValidFileTime(lastModified)) 118 lastModified = currentTimeMS(); 120 // lastModified returns a number, not a Date instance. 122 v8SetReturnValue(info, floor(lastModified)); [all...] |
V8BlobCustomHelpers.cpp | 57 void ParsedProperties::setLastModified(double lastModified) 61 m_lastModified = lastModified; 98 v8::Local<v8::Value> lastModified; 99 V8TRYCATCH_RETURN(bool, containsLastModified, dictionary.get("lastModified", lastModified), false); 101 V8TRYCATCH_RETURN(long long, lastModifiedInt, toInt64(lastModified), false);
|
V8BlobCustomHelpers.h | 59 double lastModified() const
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
File.idl | 32 [Custom=Getter, RuntimeEnabled=FileConstructor] readonly attribute long long lastModified;
|
File.h | 58 static PassRefPtr<File> create(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) 60 return adoptRef(new File(path, name, relativePath, hasSnaphotData, size, lastModified, blobDataHandle)); 110 File(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle>);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
FileClientSessionCache.java | 344 long lastModified = -1; 347 public long lastModified() { 348 long lastModified = this.lastModified; 349 if (lastModified == -1) { 350 lastModified = this.lastModified = super.lastModified(); 352 return lastModified; 358 long result = lastModified() - another.lastModified() [all...] |
CertPinManager.java | 35 private long lastModified; 102 lastModified = pinFile.lastModified(); 157 return pinFile.lastModified() != lastModified;
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
ResponseHeaders.java | 56 private Date lastModified; 152 lastModified = HttpDate.parse(value); 223 return lastModified; 315 } else if (lastModified != null && uri.getRawQuery() == null) { 321 long delta = servedMillis - lastModified.getTime(); 428 if (lastModified != null) { 429 request.setIfModifiedSince(lastModified); 453 if (lastModified != null 454 && networkResponse.lastModified != null 455 && networkResponse.lastModified.getTime() < lastModified.getTime()) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_TestWebData.java | 88 Support_TestWebData(int length, int lastModified, String name, String type, boolean isDir, long expDate) { 90 testLastModified = lastModified; 104 testLastModified = file.lastModified();
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
AgeFileFilter.java | 120 this(cutoffReference.lastModified(), acceptOlder);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
FsDirectoryEntry.java | 110 * @param lastModified the new last modification time of this entry 113 public void setLastModified(long lastModified) throws IOException;
|
/frameworks/base/core/java/android/webkit/ |
CacheManager.java | 63 String lastModified; 132 return lastModified;
|
/frameworks/base/tests/CoreTests/android/core/ |
TestWebData.java | 109 TestWebData(int length, int lastModified, String name, String type, boolean isDir) { 111 testLastModified = lastModified;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/ |
ProjectLintConfigurationTest.java | 152 long lastModified = configFile.lastModified(); 163 assertFalse(lastModified < configFile.lastModified()); 164 assertEquals(lastModified, configFile.lastModified()); 167 assertTrue(lastModified < configFile.lastModified());
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
DocumentInfo.java | 51 public long lastModified; 70 lastModified = -1; 90 lastModified = in.readLong(); 109 out.writeLong(lastModified); 158 this.lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
SASSSourceMapping.js | 125 var lastModified = new Date(lastModifiedHeader); 126 if (isNaN(lastModified.getTime())) 128 return lastModified; 138 var lastModified = this._lastModified(headers); 139 if (lastModified) 140 return lastModified; 180 var lastModified = this._checkLastModified(headers, sassURL); 181 if (!lastModified) 183 metadataReceived.call(this, lastModified); 294 var lastModified = this._checkLastModified(headers, cssURL) [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
FilteringCursorWrapper.java | 56 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED); 60 if (lastModified < rejectBefore) {
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
DexJarMaker.java | 86 entry.setTime(source.lastModified());
|
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
SecuritySupport.java | 123 return f.lastModified();
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
SecuritySupport.java | 123 return f.lastModified();
|