HomeSort by relevance Sort by last modified time
    Searched full:getmtime (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/chromium_org/build/android/pylib/utils/
host_path_finder.py 21 candidate_paths = sorted(candidate_paths, key=os.path.getmtime, reverse=True)
  /external/chromium_org/v8/tools/testrunner/server/
signatures.py 39 os.path.getmtime(signature_file) < os.path.getmtime(filename)):
  /external/chromium_org/tools/gyp/test/mac/
gyptest-copies.py 39 mtime = os.path.getmtime(dep_bundle)
  /external/chromium_org/tools/win/link_limiter/
build_link_limiter.py 46 cpptime = os.path.getmtime(infile)
47 if not os.path.exists(outpath) or cpptime > os.path.getmtime(outpath):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
52 def getmtime(filename): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
52 def getmtime(filename): function
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_unittest.cc 164 ASSERT_TRUE(simple_util::GetMTime(cache_path, &cache_mtime));
175 ASSERT_TRUE(simple_util::GetMTime(cache_path, &cache_mtime));
183 ASSERT_TRUE(simple_util::GetMTime(cache_path, &cache_mtime));
218 ASSERT_TRUE(simple_util::GetMTime(simple_index_file.GetIndexFilePath(),
248 ASSERT_TRUE(simple_util::GetMTime(simple_index_file.GetIndexFilePath(),
simple_util.h 70 NET_EXPORT_PRIVATE bool GetMTime(const base::FilePath& path,
simple_util.cc 112 bool GetMTime(const base::FilePath& path, base::Time* out_mtime) {
  /external/chromium_org/third_party/jinja2/
loaders.py 47 from os.path import join, exists, getmtime
58 mtime = getmtime(path)
61 return source, path, lambda: mtime == getmtime(path)
171 mtime = path.getmtime(filename)
174 return path.getmtime(filename) == mtime
230 mtime = path.getmtime(filename)
233 return path.getmtime(filename) == mtime
  /external/chromium_org/tools/vim/
ninja-build.vim 50 debug_mtime = os.path.getmtime(os.path.join(root, 'Debug', test_path))
54 rel_mtime = os.path.getmtime(os.path.join(root, 'Release', test_path))
chromium.ycm_extra_conf.py 90 debug_mtime = os.path.getmtime(os.path.join(debug_path, test_path))
94 rel_mtime = os.path.getmtime(os.path.join(release_path, test_path))
  /external/protobuf/python/
setup.py 39 os.path.getmtime(source) > os.path.getmtime(output))):
  /pdk/build/
pdk_utils.py 112 src_mod_time = os.path.getmtime(src)
114 dest_mod_time = os.path.getmtime(dest)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 140 return os.path.getmtime(a) >= os.path.getmtime(b)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 140 return os.path.getmtime(a) >= os.path.getmtime(b)
  /system/security/keystore/include/keystore/
IKeystoreService.h 64 GETMTIME = IBinder::FIRST_CALL_TRANSACTION + 19,
115 virtual int64_t getmtime(const String16& name) = 0;
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
desktop_browser_backend.py 174 most_recent_dump = heapq.nlargest(1, dumps, os.path.getmtime)[0]
175 if os.path.getmtime(most_recent_dump) < (time.time() - (5 * 60)):
189 for symbol in sorted(symbols, key=os.path.getmtime, reverse=True):
android_browser_finder.py 75 last_changed = os.path.getmtime(apk_full_name)
115 return os.path.getmtime(self._local_apk)
  /external/chromium_org/chrome/test/nacl_test_injection/
find_chrome.py 52 mtime = os.path.getmtime(chrome_filename)
  /external/chromium_org/build/android/pylib/instrumentation/
test_jar.py 52 (os.path.getmtime(self._pickled_proguard_name) >
53 os.path.getmtime(self._jar_path))):
  /external/chromium_org/third_party/protobuf/python/
setup.py 51 os.path.getmtime(source) > os.path.getmtime(output))):
  /frameworks/base/keystore/java/android/security/
KeyStore.java 288 public long getmtime(String key) { method in class:KeyStore
290 final long millis = mBinder.getmtime(key);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 23 'getmtime', 'exists', 'isdir', 'isfile']
101 self.pathmodule.getmtime(test_support.TESTFN)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 23 'getmtime', 'exists', 'isdir', 'isfile']
101 self.pathmodule.getmtime(test_support.TESTFN)

Completed in 1443 milliseconds

1 2 3