Home
last modified time | relevance | path

Searched refs:write (Results 226 - 250 of 4006) sorted by relevance

12345678910>>...161

/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/python/Lib/test/
H A Dtest_gzip.py61 l = f.write(data)
68 f.write(data1 * 50)
83 f.write(data1 * 50)
86 f.write(data1)
92 # The following test_write_xy methods test that write accepts
109 # Issue #21560: attempts to write incompatible types
113 f.write('')
115 f.write([])
116 f.write(data1)
174 f.write(
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DELFObjectWriter.cpp83 // indexes we are going to write to .symtab_shndx.
91 template <typename T> void write(T Value);
173 W.write<uint64_t>(Word); in WriteWord()
175 W.write<uint32_t>(Word); in WriteWord()
178 template <typename T> void write(T Val) { in write() function
179 W.write(Val); in write()
357 template <typename T> void SymbolTableWriter::write(T Value) { in write() function in SymbolTableWriter
358 EWriter.write(Value); in write()
382 write(name); // st_name in writeSymbol()
383 write(inf in writeSymbol()
[all...]
/third_party/python/Tools/iobench/
H A Diobench.py139 """ write one unit at a time """
141 f.write(source[i:i+1])
146 """ write 20 units at a time """
148 f.write(source[i:i+20])
153 """ write 4096 units at a time """
155 f.write(source[i:i+4096])
160 """ write 1e6 units at a time """
162 f.write(source[i:i+1000000])
171 f.write(source[i:i+1])
179 f.write(sourc
[all...]
/third_party/node/deps/v8/tools/
H A Dgrokdump.py1984 f.write("P %s 0x%x\n" % (page_kind, address))
2022 f.write("C 0x%x %s\n" % (address, comment))
2639 def write(self, string): member in InspectionWebHandler
2640 self.wfile.write(string.encode('utf-8'))
2650 self.write(out_buffer.getvalue())
2654 self.write(out_buffer.getvalue())
2658 self.write(out_buffer.getvalue())
2662 self.write(out_buffer.getvalue())
2671 self.write(out_buffer.getvalue())
2681 self.write(out_buffe
[all...]
/foundation/multimedia/media_foundation/engine/plugin/plugins/
H A Dplugin_config.py46 outfile.write("".join(static_declare))
48 outfile.write("(void)(reg);")
49 outfile.write("".join(static_register))
51 outfile.write("".join(static_unregister))
53 outfile.write(line)
/third_party/libunwind/libunwind/src/arm/
H A DGregs.c29 int write) in tdep_access_reg()
36 if (write) in tdep_access_reg()
72 if (write) in tdep_access_reg()
84 if (write) in tdep_access_reg()
94 int write) in tdep_access_fpreg()
28 tdep_access_reg(struct cursor *c, unw_regnum_t reg, unw_word_t *valp, int write) tdep_access_reg() argument
93 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/tilegx/
H A DGregs.c30 int write) in tdep_access_reg()
34 if (reg == UNW_TILEGX_R54 && !write) in tdep_access_reg()
43 if (write) in tdep_access_reg()
54 if (write) in tdep_access_reg()
72 int 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
71 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/sh/
H A DGregs.c30 int write) in tdep_access_reg()
37 if (write) in tdep_access_reg()
59 if (write) in tdep_access_reg()
69 if (write) in tdep_access_reg()
77 int 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
76 tdep_access_fpreg(struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, int write) tdep_access_fpreg() argument
/third_party/jerryscript/targets/mbedos5/js/
H A Dflash_leds.js43 digital_outs[0].write(led_off);
44 digital_outs[1].write(led_off);
45 digital_outs[2].write(led_off);
46 digital_outs[3].write(led_off);
48 digital_outs[led].write(led_on);
/third_party/node/benchmark/zlib/
H A Dpipe.js33 function write() {
34 input.write(chunk, write);
38 write();
45 input.write = () => {};
/third_party/skia/experimental/tools/
H A Dgenerate-unicode-test-txt76 o.write(to_unicode(0xFEFF))
82 o.write('\n' if row % 1024 else '\n\n')
83 o.write('U+%06x ' % row)
85 o.write(' ' + to_unicode(i))
86 o.write('\n')
/third_party/node/test/fixtures/
H A Dcatch-stdout-error.js22 function write() { function
24 process.stdout.write('Hello, world\n');
29 write();
38 write();
/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/libunwind/libunwind/src/ptrace/
H A D_UPT_access_mem.c32 int write, void *arg) in _UPT_access_mem()
57 if (write) in _UPT_access_mem()
101 int write, void *arg) in _UPT_access_mem()
112 iod.piod_op = write ? PIOD_WRITE_D : PIOD_READ_D; in _UPT_access_mem()
113 if (write) in _UPT_access_mem()
117 if (!write) in _UPT_access_mem()
31 _UPT_access_mem(unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, void *arg) _UPT_access_mem() argument
100 _UPT_access_mem(unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, void *arg) _UPT_access_mem() argument
/third_party/node/test/sequential/
H A Dtest-https-server-keep-alive-timeout.js51 c.write('GET /1 HTTP/1.1\r\nHost: localhost\r\n\r\n');
52 c.write('GET /2 HTTP/1.1\r\nHost: localhost\r\n\r\n');
53 c.write('GET /3 HTTP/1.1\r\nHost: localhost\r\n\r\n');
74 c.write('GET /1 HTTP/1.1\r\nHost: localhost\r\n\r\n');
75 c.write('GET /2 HTTP/1.1\r\nHost: localhost\r\n\r\n');
76 c.write('GET /3 HTTP/1.1\r\nHost: localhost\r\n\r\n');
/third_party/node/benchmark/buffers/
H A Dbuffer-write-string.js25 buf.write(string, start, encoding);
31 buf.write(string, start);
41 buf.write(string, 0, buf.length, encoding);
47 buf.write(string, 0, buf.length);
57 buf.write(string, encoding);
63 buf.write(string);
/third_party/ltp/testcases/kernel/mce-test/tools/
H A Dgcov_merge.py41 def write(self, of): member in GCovLine
43 of.write("%*s" % (self.sep, '-'))
45 of.write("%*s" % (self.sep, '#####'))
47 of.write("%*d" % (self.sep, self.count))
48 of.write(self.remain)
67 gcl.write(of)
/third_party/skia/third_party/externals/angle2/src/tests/gles_conformance_tests/
H A Dgenerate_gles_conformance_tests.py37 outFile.write("#include \"gles_conformance_tests.h\"\n\n")
42 outFile.write("DEFINE_CONFORMANCE_TEST_CLASS(" + testSuite + ");\n\n")
45 outFile.write("TYPED_TEST(" + testSuite + ", " + GetTestName(test) + ")\n")
46 outFile.write("{\n")
47 outFile.write(" run(\"" + test + "\");\n")
48 outFile.write("}\n\n")
/third_party/skia/build/fuchsia/skqp/
H A Dappend_assets_to_manifest41 deps_file.write('%s: ' % relative_path)
48 out_file.write(base_line)
55 deps_file.write(relative_path + " ")
67 out_file.write('data%s=' % dest)
68 out_file.write('%s\n' % source)
70 deps_file.write(relative_path + " ")
/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/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...]

Completed in 19 milliseconds

12345678910>>...161