Home
last modified time | relevance | path

Searched refs:write (Results 201 - 225 of 3634) sorted by relevance

12345678910>>...146

/third_party/python/Lib/encodings/
H A Duu_codec.py21 write = outfile.write
28 write(('begin %o %s\n' % (mode & 0o777, filename)).encode('ascii'))
31 write(binascii.b2a_uu(chunk))
33 write(b' \nend\n')
42 write = outfile.write
63 #sys.stderr.write("Warning: %s\n" % str(v))
64 write(data)
/third_party/skia/third_party/externals/brotli/python/tests/
H A Dcompressor_test.py30 out_file.write(brotli.decompress(in_file.read()))
38 out_file.write(self.compressor.process(in_file.read()))
39 out_file.write(self.compressor.finish())
49 out_file.write(self.compressor.process(data))
50 out_file.write(self.compressor.finish())
60 out_file.write(self.compressor.process(data))
61 out_file.write(self.compressor.flush())
62 out_file.write(self.compressor.finish())
/third_party/libunwind/libunwind/src/ppc32/
H A DGregs.c32 int write) in tdep_access_reg()
39 if (write) in tdep_access_reg()
51 if (write) in tdep_access_reg()
67 if (write) in tdep_access_reg()
75 int write) in tdep_access_fpreg()
82 if (write) in tdep_access_fpreg()
31 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) tdep_access_reg() argument
74 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) tdep_access_fpreg() argument
/third_party/libunwind/libunwind/src/hppa/
H A DGregs.c30 int write) in tdep_access_reg()
37 if (write) in tdep_access_reg()
46 if (write) in tdep_access_reg()
66 if (write) in tdep_access_reg()
74 int write) in tdep_access_fpreg()
83 if (write) in tdep_access_fpreg()
29 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) tdep_access_reg() argument
73 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) tdep_access_fpreg() argument
/third_party/libunwind/libunwind/src/s390x/
H A DGregs.c33 int write) in tdep_access_reg()
40 if (write) in tdep_access_reg()
65 if (write) in tdep_access_reg()
75 if (write) in tdep_access_reg()
83 int write) in tdep_access_fpreg()
112 if (write) in tdep_access_fpreg()
32 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) tdep_access_reg() argument
82 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) tdep_access_fpreg() argument
/third_party/node/test/parallel/
H A Dtest-fs-write-stream-err.js35 const write = fs.write;
37 fs.write = function() {
40 console.error('first write');
42 return write.apply(fs, arguments);
45 console.error('second write');
71 stream.write(Buffer.allocUnsafe(256), function() {
73 stream.write(Buffer.allocUnsafe(256), common.mustCall(function(err_) {
/third_party/nghttp2/doc/bash_completion/
H A Dmake_bash_completion.py32 out.write('''\
44 out.write('''\
50 out.write(opt.long_opt)
51 out.write(' ')
53 out.write('''\
58 out.write('''\
/third_party/python/Tools/scripts/
H A Dfixheader.py16 sys.stderr.write('%s: can\'t open: %s\n' % (filename, str(msg)))
21 sys.stderr.write('%s does not begin with C comment\n' % filename)
26 sys.stderr.write('%s: can\'t write: %s\n' % (filename, str(msg)))
29 sys.stderr.write('Processing %s ...\n' % filename)
41 f.write(data)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCharsTrieBuilder.java158 protected int write(int unit) { in write() method in CharsTrieBuilder
172 protected int write(int offset, int length) { in write() method in CharsTrieBuilder
183 private int write(char[] s, int length) { in write() method in CharsTrieBuilder
203 return write(i|(isFinal ? CharsTrie.kValueIsFinal : 0)); in writeValueAndFinal()
220 return write(intUnits, length); in writeValueAndFinal()
231 return write(node); in writeValueAndType()
248 return write(intUnits, length); in writeValueAndType()
261 return write(i); in writeDeltaTo()
273 return write(intUnits, length); in writeDeltaTo()
H A DStringTrieBuilder.java93 // As a result, we sometimes write larger trie serializations. in buildImpl()
115 // Finally, root.markRightEdgesFirst() and root.write() write that serialized form. in buildImpl()
118 root.write(this); in buildImpl()
206 * and might replace themselves with new types of nodes for write()ing.
207 * @return The registered version of this node which implements write().
217 * Therefore, write() must write the rightmost branch edge last
218 * (trie units are written backwards), and must write it at that point even if
243 // write() mus in markRightEdgesFirst()
244 public abstract void write(StringTrieBuilder builder); write() method in StringTrieBuilder.Node
309 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.ValueNode
345 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.IntermediateValueNode
482 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.LinearMatchNode
649 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.ListBranchNode
750 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.SplitBranchNode
795 public void write(StringTrieBuilder builder) { write() method in StringTrieBuilder.BranchHeadNode
850 protected abstract int write(int unit); write() method in StringTrieBuilder
856 protected abstract int write(int offset, int length); write() method in StringTrieBuilder
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DLigatureTree.java175 w.write(tab); in dump()
177 w.write(Utility.hex(target, 6)); in dump()
182 w.write(" --> "); in dump()
183 w.write(Utility.hex(ligature, 6)); in dump()
186 w.write("\n"); in dump()
189 w.write(tab); in dump()
190 w.write("{\n"); in dump()
197 w.write(tab); in dump()
198 w.write("}\n"); in dump()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCharsTrieBuilder.java154 protected int write(int unit) { in write() method in CharsTrieBuilder
168 protected int write(int offset, int length) { in write() method in CharsTrieBuilder
179 private int write(char[] s, int length) { in write() method in CharsTrieBuilder
199 return write(i|(isFinal ? CharsTrie.kValueIsFinal : 0)); in writeValueAndFinal()
216 return write(intUnits, length); in writeValueAndFinal()
227 return write(node); in writeValueAndType()
244 return write(intUnits, length); in writeValueAndType()
257 return write(i); in writeDeltaTo()
269 return write(intUnits, length); in writeDeltaTo()
/third_party/python/Tools/freeze/
H A Dcheckextensions_win32.py62 sys.stderr.write("WARNING: %s can not be found - standard extensions may not be found\n" % defaultMapName)
78 sys.stderr.write("No definition of module %s in any specified map file.\n" % (mod))
136 sys.stderr.write("%s: %s\n" % (dsp, msg))
148 fp.write (ext_src_header)
153 fp.write('extern void init%s(void);\n' % (name) )
155 fp.write (ext_tab_header)
158 fp.write('\t{"%s", init%s},\n' % (name, name) )
160 fp.write (ext_tab_footer)
161 fp.write(ext_src_footer)
/third_party/pcre2/pcre2/maint/
H A DGenerateTest26.py18 input_file.write(text)
19 output_file.write(text)
136 output_file.write(" 0: %s\n" % to_string_char(rec[0]))
141 output_file.write(" 0: %s\n" % to_string_char(rec[1]))
152 output_file.write(" 0: %s\n" % to_string_char(rec[2]))
157 output_file.write(" 0: %s\n" % to_string_char(rec[3]))
166 output_file.write(" 0: %s\n" % to_string_char(rec[4]))
171 output_file.write("No match\n")
182 output_file.write("No match\n")
/third_party/icu/tools/unicode/py/
H A Dpreparseucd.py490 # We add some in support of runtime API, even if we do not write
1170 out_file.write(";".join(fields))
1171 out_file.write("\n")
1191 out_file.write("""# Preparsed UCD generated by ICU preparseucd.py
1195 out_file.write("ucd;%s\n\n" % _ucd_version)
1201 out_file.write(";".join(["property", prop[0]] + prop[1]))
1202 out_file.write("\n")
1203 out_file.write("\n")
1204 out_file.write(";".join(["binary"] + _binary_values["N"]))
1205 out_file.write("\
[all...]
/third_party/skia/tools/skqp/
H A Dcreate_apk.py46 o.write('+ ')
49 o.write(repr(c) + ' ')
51 o.write(c + ' ')
52 o.write('\n')
108 proc.stdin.write('y\n')
140 sys.stderr.write('failed to create symlink "%s"\n' % path)
179 sys.stdout.write(out + '\n')
184 sys.stdout.write(copy + '\n')
186 sys.stdout.write('* * * COMPLETE * * *\n\n')
220 def write(sel member in SkQP_Build_Options
[all...]
H A Dcut_release.py33 sys.stdout.write(name + ' ')
47 sys.stdout.write('\n')
115 o.write(l)
153 o.write(make_rendertest_list(models, gset('good.txt'), gset('bad.txt')))
159 o.write(check_output([build + '/list_gpu_unit_tests']))
162 o.write(upload_model() + '\n')
164 sys.stdout.write(ASSETS + '/files.checksum\n')
165 sys.stdout.write(ASSETS + '/skqp/rendertests.txt\n')
166 sys.stdout.write(ASSETS + '/skqp/unittests.txt\n')
170 sys.stderr.write('Usag
[all...]
/third_party/elfutils/tests/
H A Dread_unaligned.c339 bool write = false; in main() local
341 write = true; in main()
345 if (write) in main()
361 if (write) in main()
365 if (write) in main()
380 if (write) in main()
384 if (write) in main()
399 if (write) in main()
403 if (write) in main()
419 if (write) in main()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dvaliditygenerator.py13 from generator import OutputGenerator, write namespace
226 validity - ValidityCollection to write.
227 threadsafety - List (may be empty) of thread safety statements to write.
242 write(self.conventions.warning_comment, file=fp)
246 write('.Valid Usage (Implicit)', file=fp)
247 write('****', file=fp)
248 write(validity, file=fp, end='')
249 write('****', file=fp)
250 write('', file=fp)
255 write('
[all...]
/third_party/nghttp2/
H A Dgennmchartbl.py20 sys.stdout.write('1 /* {} */, '.format(chr(i)))
22 sys.stdout.write('0 /* {} */, '.format(chr(i)))
24 sys.stdout.write('0 /* {} */, '.format(hex(i)))
26 sys.stdout.write('0 /* {} */, '.format(name(i)))
28 sys.stdout.write('\n')
H A Dgenauthoritychartbl.py24 sys.stdout.write('1 /* {} */, '.format(chr(i)))
26 sys.stdout.write('0 /* {} */, '.format(chr(i)))
28 sys.stdout.write('0 /* {} */, '.format(hex(i)))
30 sys.stdout.write('0 /* {} */, '.format(name(i)))
32 sys.stdout.write('\n')
H A Dgenmethodchartbl.py21 sys.stdout.write('1 /* {} */, '.format(chr(i)))
23 sys.stdout.write('0 /* {} */, '.format(chr(i)))
25 sys.stdout.write('0 /* {} */, '.format(hex(i)))
27 sys.stdout.write('0 /* {} */, '.format(name(i)))
29 sys.stdout.write('\n')
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-drivers/source/
H A DI2C-js.cpp162 * I2C#write (native JavaScript method)
164 * @overload I2C#write(int)
167 * @param data Data byte to write to the I2C bus
171 * @overload I2C#write(int, array, int, bool)
176 * @param length Length of data to write
181 DECLARE_CLASS_FUNCTION(I2C, write) { in DECLARE_CLASS_FUNCTION()
182 CHECK_ARGUMENT_COUNT(I2C, write, (args_count == 1 || args_count == 3 || args_count == 4)); in DECLARE_CLASS_FUNCTION()
185 CHECK_ARGUMENT_TYPE_ALWAYS(I2C, write, 0, number); in DECLARE_CLASS_FUNCTION()
201 int result = native_ptr->write(data); in DECLARE_CLASS_FUNCTION()
205 CHECK_ARGUMENT_TYPE_ALWAYS(I2C, write, in DECLARE_CLASS_FUNCTION()
[all...]
/third_party/vulkan-loader/scripts/
H A Ddispatch_table_helper_generator.py99 write("#pragma once", file=self.outFile)
103 write(s, file=self.outFile)
107 write(file_comment, file=self.outFile)
137 write(copyright, file=self.outFile)
138 write(preamble, file=self.outFile)
140 # Write generate and write dispatch tables to output file
149 write(stub, file=self.outFile)
150 write("\n\n", file=self.outFile)
151 write(device_table, file=self.outFile);
152 write("\
[all...]
/third_party/python/Lib/xml/etree/
H A DElementTree.py693 def write(self, file_or_filename, member in ElementTree
731 with _get_writer(file_or_filename, encoding) as (write, declared_encoding):
736 write("<?xml version='1.0' encoding='%s'?>\n" % (
739 _serialize_text(write, self._root)
743 serialize(write, self._root, qnames, namespaces,
748 return self.write(file, method="c14n")
755 # returns text write method and release all resources after using
757 write = file_or_filename.write
764 yield file.write, encodin
1116 def write(self, b): global() member in _ListDataStream
[all...]

Completed in 12 milliseconds

12345678910>>...146