HomeSort by relevance Sort by last modified time
    Searched refs:getmtime (Results 1 - 25 of 54) 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/tools/gyp/test/mac/
gyptest-copies.py 39 mtime = os.path.getmtime(dep_bundle)
  /external/chromium_org/tools/perf/measurements/
screenshot.py 40 previous_mtime = os.path.getmtime(outpath)
47 if os.path.exists(outpath) and os.path.getmtime(outpath) > previous_mtime:
  /external/chromium_org/v8/tools/testrunner/server/
signatures.py 39 os.path.getmtime(signature_file) < os.path.getmtime(filename)):
  /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):
  /external/protobuf/python/
setup.py 39 os.path.getmtime(source) > os.path.getmtime(output))):
  /external/chromium_org/chrome/test/nacl_test_injection/
find_chrome.py 52 mtime = os.path.getmtime(chrome_filename)
  /external/chromium_org/third_party/cython/src/Cython/Build/
BuildExecutable.py 105 and os.path.getmtime(input_file) <= os.path.getmtime(exe_file)):
  /external/chromium_org/tools/vim/
chromium.ycm_extra_conf.py 100 debug_mtime = os.path.getmtime(os.path.join(debug_path, test_path))
104 rel_mtime = os.path.getmtime(os.path.join(release_path, test_path))
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))
  /external/lldb/test/source-manager/
TestSourceManager.py 156 #print "os.path.getmtime() before restore:", os.path.getmtime('main.c')
166 print "os.path.getmtime() after restore:", os.path.getmtime('main.c')
176 print "os.path.getmtime() after writing new content:", os.path.getmtime('main.c')
  /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/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/components/crash/tools/
generate_breakpad_symbols.py 156 if os.path.getmtime(binary) < os.path.getmtime(output_path):
  /external/chromium_org/third_party/protobuf/python/
setup.py 51 os.path.getmtime(source) > os.path.getmtime(output))):
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_finder.py 92 last_changed = os.path.getmtime(apk_full_name)
143 return os.path.getmtime(self._local_apk)
desktop_browser_backend.py 238 most_recent_dump = heapq.nlargest(1, dumps, os.path.getmtime)[0]
239 if os.path.getmtime(most_recent_dump) < (time.time() - (5 * 60)):
270 for symbol in sorted(symbols, key=os.path.getmtime, reverse=True):
  /external/chromium_org/v8/tools/
test-server.py 104 os.path.getmtime(pubkeyfile) < os.path.getmtime(privkeyfile)):
  /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)
  /external/lldb/test/
redo.py 162 session_dir = max(dirs, key=os.path.getmtime)
  /system/security/keystore/include/keystore/
IKeystoreService.h 64 GETMTIME = IBinder::FIRST_CALL_TRANSACTION + 19,
118 virtual int64_t getmtime(const String16& name) = 0;
  /external/chromium_org/build/android/pylib/instrumentation/
test_jar.py 60 (os.path.getmtime(self._pickled_proguard_name) >
61 os.path.getmtime(self._jar_path))):

Completed in 581 milliseconds

1 2 3