OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dst_path
(Results
1 - 11
of
11
) sorted by null
/bionic/libc/kernel/tools/
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 )
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
...]
/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/chrome/browser/web_applications/
web_app_mac.mm
403
const base::FilePath&
dst_path
= *it;
404
if (!file_util::CreateDirectory(
dst_path
)) {
405
LOG(ERROR) << "Creating directory " <<
dst_path
.value() << " failed.";
409
if (!base::CopyDirectory(staging_path,
dst_path
, true)) {
410
LOG(ERROR) << "Copying app to dst path: " <<
dst_path
.value()
415
base::mac::RemoveQuarantineAttribute(
dst_path
.Append(app_name));
474
base::FilePath
dst_path
= GetDestinationPath();
475
if (!
dst_path
.empty()) {
476
base::FilePath bundle_path =
dst_path
.Append(GetShortcutName());
495
base::FilePath
dst_path
= GetDestinationPath()
[
all
...]
web_app_mac_unittest.mm
219
base::FilePath
dst_path
=
225
EXPECT_EQ(
dst_path
.BaseName(), shortcut_creator.GetShortcutName());
/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
)
/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
);
/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
/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
):
/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
);
Completed in 1355 milliseconds