Searched refs:write (Results 1 - 25 of 2273) sorted by relevance

1234567891011>>

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtf_inherit_check.py3 # write to it -- if we succeed, something is wrong.
13 os.write(fd, "blat")
15 # Success -- could not write to fd.
19 sys.stderr.write("fd %d is open in child" % fd)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtf_inherit_check.py3 # write to it -- if we succeed, something is wrong.
13 os.write(fd, "blat")
15 # Success -- could not write to fd.
19 sys.stderr.write("fd %d is open in child" % fd)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
H A Dgensuitemodule.py35 sys.stderr.write("Usage: %s [opts] application-or-resource-file\n" % sys.argv[0])
36 sys.stderr.write("""Options:
78 sys.stderr.write("creator must be 4-char string\n")
88 sys.stderr.write("%s: cannot specify --output with multiple inputs\n" % sys.argv[0])
279 verbose.write("%d processed + %d unprocessed = %d total\n" %
486 fp.write('"""\n')
487 fp.write("Package generated from %s\n"%ascii(fname))
489 fp.write("Resource %s resid %d %s\n"%(ascii(resinfo[1]), resinfo[0], ascii(resinfo[2])))
490 fp.write('"""\n')
491 fp.write('impor
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
H A Duu_codec.py32 write = outfile.write
35 write('begin %o %s\n' % (mode & 0777, filename))
38 write(b2a_uu(chunk))
40 write(' \nend\n')
67 write = outfile.write
89 #sys.stderr.write("Warning: %s\n" % str(v))
90 write(data)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
H A Duu_codec.py32 write = outfile.write
35 write('begin %o %s\n' % (mode & 0777, filename))
38 write(b2a_uu(chunk))
40 write(' \nend\n')
67 write = outfile.write
89 #sys.stderr.write("Warning: %s\n" % str(v))
90 write(data)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dpy_compile.py65 """Internal; write a 32-bit int to a file in little-endian order."""
66 f.write(chr( x & 0xff))
67 f.write(chr((x >> 8) & 0xff))
68 f.write(chr((x >> 16) & 0xff))
69 f.write(chr((x >> 24) & 0xff))
96 other users may not be able to write in the source directories,
97 and thus they won't be able to write the .pyc/.pyo file, and then
119 sys.stderr.write(py_exc.msg + '\n')
124 fc.write('\0\0\0\0')
129 fc.write(MAGI
[all...]
H A Dsre_constants.py222 f.write("#define %s_%s %s\n" % (prefix, k.upper(), v))
224 f.write("""\
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
246 f.write("#define SRE_FLAG_TEMPLATE %d\n" % SRE_FLAG_TEMPLATE)
247 f.write("#define SRE_FLAG_IGNORECASE %d\n" % SRE_FLAG_IGNORECASE)
248 f.write("#define SRE_FLAG_LOCALE %d\n" % SRE_FLAG_LOCALE)
249 f.write("#define SRE_FLAG_MULTILINE %d\n" % SRE_FLAG_MULTILINE)
250 f.write("#define SRE_FLAG_DOTALL %d\n" % SRE_FLAG_DOTALL)
251 f.write("#define SRE_FLAG_UNICODE %d\n" % SRE_FLAG_UNICODE)
252 f.write("#defin
[all...]
H A Dxmlrpclib.py310 out.write("<value><boolean>%d</boolean></value>\n" % self.value)
456 out.write("<value><dateTime.iso8601>")
457 out.write(self.value)
458 out.write("</dateTime.iso8601></value>\n")
505 out.write("<value><base64>\n")
507 out.write("</base64></value>\n")
595 to an XML-RPC params chunk. To write a fault response, pass a
613 write = out.append
617 write("<fault>\n")
620 write)
[all...]
H A Dpprint.py118 self._stream.write("\n")
136 stream.write(_recursion(object))
143 write = stream.write
146 write(rep)
151 write('{')
153 write((self._indent_per_level - 1) * ' ')
161 write(rep)
162 write(': ')
169 write(',\
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dpy_compile.py65 """Internal; write a 32-bit int to a file in little-endian order."""
66 f.write(chr( x & 0xff))
67 f.write(chr((x >> 8) & 0xff))
68 f.write(chr((x >> 16) & 0xff))
69 f.write(chr((x >> 24) & 0xff))
96 other users may not be able to write in the source directories,
97 and thus they won't be able to write the .pyc/.pyo file, and then
119 sys.stderr.write(py_exc.msg + '\n')
124 fc.write('\0\0\0\0')
129 fc.write(MAGI
[all...]
H A Dsre_constants.py222 f.write("#define %s_%s %s\n" % (prefix, k.upper(), v))
224 f.write("""\
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
246 f.write("#define SRE_FLAG_TEMPLATE %d\n" % SRE_FLAG_TEMPLATE)
247 f.write("#define SRE_FLAG_IGNORECASE %d\n" % SRE_FLAG_IGNORECASE)
248 f.write("#define SRE_FLAG_LOCALE %d\n" % SRE_FLAG_LOCALE)
249 f.write("#define SRE_FLAG_MULTILINE %d\n" % SRE_FLAG_MULTILINE)
250 f.write("#define SRE_FLAG_DOTALL %d\n" % SRE_FLAG_DOTALL)
251 f.write("#define SRE_FLAG_UNICODE %d\n" % SRE_FLAG_UNICODE)
252 f.write("#defin
[all...]
H A Dxmlrpclib.py310 out.write("<value><boolean>%d</boolean></value>\n" % self.value)
456 out.write("<value><dateTime.iso8601>")
457 out.write(self.value)
458 out.write("</dateTime.iso8601></value>\n")
505 out.write("<value><base64>\n")
507 out.write("</base64></value>\n")
595 to an XML-RPC params chunk. To write a fault response, pass a
613 write = out.append
617 write("<fault>\n")
620 write)
[all...]
/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
107 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.8/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
H A D__init__.py41 self.write(line)
47 def write(self, s): member in class:GdbOutputFile
48 write(s, stream=STDOUT)
53 def write(self, s): member in class:GdbOutputErrorFile
54 write(s, stream=STDERR)
105 sys.stderr.write (traceback.format_exc() + "\n")

Completed in 1108 milliseconds

1234567891011>>