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

  /bionic/libc/kernel/tools/
clean_header.py 50 dst_path = "arch-%s/asm/%s" % m.groups()
54 dst_path = "common/" + src_path
56 dst_path = os.path.normpath( kernel_cleaned_path + "/" + dst_path )
83 return dst_path, out.get()
130 dst_path, newdata = cleanupFile(path,kernel_original_path)
140 dst_path, newdata = cleanupFile(path,kernel_original_path)
141 if not dst_path:
144 b.readFile( dst_path )
145 r = b.editFile( dst_path, newdata
    [all...]
update_all.py 63 dst_path, newdata = clean_header.cleanupFile(path, original_dir)
64 if not dst_path:
67 b.readFile( dst_path )
68 r = b.editFile( dst_path, newdata )
76 str = "cleaning: %-*s -> %-*s (%s)" % ( 35, "<original>" + path[len(original_dir):], 35, dst_path, state )
  /external/chromium_org/tools/telemetry_tools/
telemetry_bootstrap.py 69 def Traverse(self, src_path, dst_path):
73 dst_path.
80 if not os.path.exists(os.path.dirname(dst_path)):
81 logging.info("creating %s", os.path.dirname(dst_path))
82 os.makedirs(os.path.dirname(dst_path))
83 logging.info("Saving %s to %s", self.root_url + src_path, dst_path)
84 urllib.urlretrieve(self.root_url + src_path, dst_path)
89 os.path.join(dst_path, subdir))
151 for dst_path, src_path in deps.deps.iteritems():
152 full_dst_path = os.path.join(destination_dir, dst_path)
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 171 dst_path = os.path.dirname(dst_file)
172 if not os.path.exists(dst_path):
173 buildbot_common.MakeDir(dst_path)
  /external/icu4c/stubdata/
icu_dat_generator.py 327 dst_path = os.path.join(TMP_DAT_PATH, cnv_file)
328 shutil.copyfile(src_path, dst_path)
330 print "copy " + src_path + " " + dst_path
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 424 /*package*/ static void native_offset(int nPath, float dx, float dy, int dst_path) {
431 Path_Delegate dstDelegate = sManager.getDelegate(dst_path);
454 int dst_path) {
465 // this can be null if dst_path is 0
466 Path_Delegate dstDelegate = sManager.getDelegate(dst_path);
  /external/chromium_org/cloud_print/virtual_driver/win/install/
setup.cc 239 base::FilePath dst_path = destination.Append(kDependencyList[i]); local
240 if (!base::PathExists(dst_path)) {
244 base::CopyFile(src_path, dst_path);
  /frameworks/base/graphics/java/android/graphics/
Path.java 745 private static native void native_offset(int nPath, float dx, float dy, int dst_path);
748 private static native void native_transform(int nPath, int matrix, int dst_path);
  /external/chromium_org/chrome/tools/build/win/
create_installer_archive.py 124 dst_path = os.path.join(dst_dir, os.path.basename(src_path))
125 if not os.path.exists(dst_path):

Completed in 174 milliseconds