Home
last modified time | relevance | path

Searched refs:src_name (Results 1 – 25 of 30) sorted by relevance

12

/external/python/cpython2/Lib/distutils/
Ddir_util.py144 src_name = os.path.join(src, n)
151 if preserve_symlinks and os.path.islink(src_name):
152 link_dest = os.readlink(src_name)
159 elif os.path.isdir(src_name):
161 copy_tree(src_name, dst_name, preserve_mode,
165 copy_file(src_name, dst_name, preserve_mode,
Demxccompiler.py188 for src_name in source_filenames:
190 (base, ext) = os.path.splitext (os.path.normcase(src_name))
194 (ext, src_name)
Dcygwinccompiler.py273 for src_name in source_filenames:
275 (base, ext) = os.path.splitext (os.path.normcase(src_name))
279 (ext, src_name)
Dbcppcompiler.py340 for src_name in source_filenames:
342 (base, ext) = os.path.splitext (os.path.normcase(src_name))
346 (ext, src_name)
Dmsvccompiler.py324 for src_name in source_filenames:
325 (base, ext) = os.path.splitext (src_name)
332 raise CompileError ("Don't know how to compile %s" % src_name)
Dccompiler.py817 for src_name in source_filenames:
818 base, ext = os.path.splitext(src_name)
823 "unknown file type '%s' (from '%s')" % (ext, src_name)
Dmsvc9compiler.py445 for src_name in source_filenames:
446 (base, ext) = os.path.splitext (src_name)
453 raise CompileError ("Don't know how to compile %s" % src_name)
/external/python/cpython3/Lib/distutils/
Ddir_util.py140 src_name = os.path.join(src, n)
147 if preserve_symlinks and os.path.islink(src_name):
148 link_dest = os.readlink(src_name)
155 elif os.path.isdir(src_name):
157 copy_tree(src_name, dst_name, preserve_mode,
161 copy_file(src_name, dst_name, preserve_mode,
Dcygwinccompiler.py257 for src_name in source_filenames:
259 base, ext = os.path.splitext(os.path.normcase(src_name))
262 (ext, src_name))
Dbcppcompiler.py340 for src_name in source_filenames:
342 (base, ext) = os.path.splitext (os.path.normcase(src_name))
345 (ext, src_name))
Dmsvccompiler.py320 for src_name in source_filenames:
321 (base, ext) = os.path.splitext (src_name)
328 raise CompileError ("Don't know how to compile %s" % src_name)
Dccompiler.py851 for src_name in source_filenames:
852 base, ext = os.path.splitext(src_name)
857 "unknown file type '%s' (from '%s')" % (ext, src_name))
Dmsvc9compiler.py433 for src_name in source_filenames:
434 (base, ext) = os.path.splitext (src_name)
441 raise CompileError ("Don't know how to compile %s" % src_name)
/external/tensorflow/tensorflow/python/framework/
Dimporter.py214 src_name = compat.as_str(input_src[1:])
217 options, src_name, dst_op)
219 src_name, src_idx = _ParseTensorName(input_src)
220 src_name = compat.as_str(src_name)
222 c_api.TF_ImportGraphDefOptionsAddInputMapping(options, src_name, src_idx,
/external/tensorflow/tensorflow/python/tools/api/generator/
Dcreate_python_api.py355 src_name = module_split[3]
356 assert src_name != 'v1' and src_name != 'v2', imported_module
359 src_name = module_split[2]
360 if src_name == 'compat':
367 source_name=src_name,
369 dest_name=src_name)
/external/vboot_reference/cgpt/
Dcgpt_nor.c96 const char *src_name, in read_write() argument
107 if (asprintf(&dest, "%s_%d", src_name, idx) == -1) { in read_write()
/external/autotest/site_utils/lxc/
Dutils.py107 def clone(lxc_path, src_name, new_path, dst_name, snapshot): argument
125 name = src_name,
/external/curl/tests/libtest/
Dstub_gssapi.c363 gss_name_t *src_name, in gss_inquire_context() argument
373 (void)src_name; in gss_inquire_context()
/external/tensorflow/tensorflow/core/graph/
Dgraph_partition.cc162 void AddInput(NodeDef* dst, StringPiece src_name, int src_slot) { in AddInput() argument
164 dst->add_input(strings::StrCat("^", src_name)); in AddInput()
166 dst->add_input(src_name.data(), src_name.size()); in AddInput()
168 dst->add_input(strings::StrCat(src_name, ":", src_slot)); in AddInput()
920 string src_name = start_times[j - 1].first->name(); in AddControlEdges() local
921 AddInput(dummy, src_name, Graph::kControlSlot); in AddControlEdges()
Dgraph.cc641 void AddInput(NodeDef* dst, StringPiece src_name, int src_slot) { in AddInput() argument
643 dst->add_input(strings::StrCat("^", src_name)); in AddInput()
645 dst->add_input(src_name.data(), src_name.size()); in AddInput()
647 dst->add_input(strings::StrCat(src_name, ":", src_slot)); in AddInput()
Dmkl_tfconversion_pass.cc357 string src_name = e->src()->name(); in RunPass() local
361 << "node on edge between " << src_name << " and " << dst_name; in RunPass()
/external/tensorflow/tensorflow/core/grappler/costs/
Dvirtual_scheduler.cc636 string src_name; in CreateSendRecv() local
638 src_name = absl::StrCat(from->name(), "_", input_node_port_num); in CreateSendRecv()
640 src_name = absl::StrCat(from->name(), "_minus1"); in CreateSendRecv()
645 send->set_name("Send_" + src_name + "_from_" + SanitizedDeviceName(from) + in CreateSendRecv()
663 recv->set_name("Recv_" + src_name + "_on_" + SanitizedDeviceName(to)); in CreateSendRecv()
/external/skqp/dm/
DDM.cpp758 const char* src_name = nullptr) { in gather_file_srcs() argument
759 if (!src_name) { in gather_file_srcs()
761 src_name = ext; in gather_file_srcs()
769 push_src(src_name, "", new T(SkOSPath::Join(path, file.c_str()))); in gather_file_srcs()
772 push_src(src_name, "", new T(path)); in gather_file_srcs()
/external/skia/dm/
DDM.cpp840 const char* src_name = nullptr) { in gather_file_srcs() argument
841 if (!src_name) { in gather_file_srcs()
843 src_name = ext; in gather_file_srcs()
851 push_src(src_name, "", new T(SkOSPath::Join(path, file.c_str()))); in gather_file_srcs()
854 push_src(src_name, "", new T(path)); in gather_file_srcs()
/external/tensorflow/tensorflow/c/
Dc_api.h753 TF_ImportGraphDefOptions* opts, const char* src_name, int src_index,
761 TF_ImportGraphDefOptions* opts, const char* src_name, TF_Operation* dst);

12