Home
last modified time | relevance | path

Searched refs:to_file (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Demo/tix/samples/
DOptMenu.py33 to_file = Tix.OptionMenu(top, label="To File Format : ",
45 to_file.add_command(opt, label=options[opt])
51 to_file.pack(side=Tix.TOP, anchor=Tix.W, pady=3, padx=6)
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
Dvis_utils.py133 to_file='model.png', argument
150 _, extension = os.path.splitext(to_file)
155 dot.write(to_file, format=extension)
/external/toolchain-utils/cros_utils/
Dmanifest_versions.py139 def GetManifest(self, version, to_file): argument
149 command = 'cp {0} {1}'.format(files[0], to_file)
152 raise RuntimeError('Cannot copy manifest to {0}'.format(to_file))
/external/toolchain-utils/
Dremote_gcc_build.py217 to_file = os.path.join(temp_dir, 'default.xml')
218 manifests.GetManifest(version, to_file)
219 return UploadManifest(to_file, chromeos_root, branch)
/external/autotest/client/cros/chameleon/
Dedid.py102 def to_file(self, filename): member in Edid
/external/tensorflow/tensorflow/tools/api/golden/
Dtensorflow.keras.utils.pbtxt57 …argspec: "args=[\'model\', \'to_file\', \'show_shapes\', \'show_layer_names\', \'rankdir\'], varar…
/external/selinux/python/audit2allow/
Dsepolgen-ifgen144 if_set.to_file(f)
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPathV2.inc125 int from_file = -1, to_file = -1;
143 if ((to_file = ::open(t.begin(), to_flags, from_stat.st_mode)) < 0)
145 AutoFD to_fd(to_file);
/external/clang/tools/c-index-test/
Dc-index-test.c178 FILE *to_file; in parse_remapped_files_with_opt() local
190 to_file = fopen(sep + 1, "rb"); in parse_remapped_files_with_opt()
191 if (!to_file) { in parse_remapped_files_with_opt()
201 fseek(to_file, 0, SEEK_END); in parse_remapped_files_with_opt()
202 unsaved->Length = ftell(to_file); in parse_remapped_files_with_opt()
203 fseek(to_file, 0, SEEK_SET); in parse_remapped_files_with_opt()
207 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) { in parse_remapped_files_with_opt()
209 (feof(to_file) ? "EOF" : "error"), sep + 1); in parse_remapped_files_with_opt()
210 fclose(to_file); in parse_remapped_files_with_opt()
221 fclose(to_file); in parse_remapped_files_with_opt()
/external/selinux/python/sepolgen/tests/
Dtest_interfaces.py265 i.to_file(f)
/external/selinux/python/sepolgen/src/sepolgen/
Dinterfaces.py343 def to_file(self, fd): member in InterfaceSet