Home
last modified time | relevance | path

Searched refs:writerow (Results 1 – 24 of 24) sorted by relevance

/third_party/mesa3d/bin/
Dgen_calendar_entries.py112 … writer.writerow([f'{major}.{minor}', date.isoformat(), f'{major}.{minor}.0-rc1', args.manager])
115 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc{row}', args.manager])
117 …writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc4', args.manager, OR_FINAL.format(f…
156 writer.writerow([args.series, date.isoformat(), f'{args.series}.{base}', args.manager])
159 writer.writerow([None, date.isoformat(), f'{args.series}.{row}', args.manager])
161 …writer.writerow([None, date.isoformat(), f'{args.series}.3', args.manager, LAST_RELEASE.format(arg…
194 writer.writerow(row)
224 writer.writerow(r)
/third_party/python/Lib/test/
Dtest_csv.py138 writer.writerow(fields)
147 writer.writerow(fields)
447 writer.writerow([1,2,3])
663 writer.writerow({"f1": 10, "f3": "abc"})
687 writer.writerow({"f4": 10, "f2": "spam", 1: "abc"})
703 self.assertRaises(ValueError, csv.DictWriter.writerow, writer, dictrow)
709 csv.DictWriter.writerow(writer, dictrow)
829 writer.writerow(a)
840 writer.writerow(a)
851 writer.writerow(a)
[all …]
/third_party/mindspore/mindspore/profiler/parser/
Dframework_parser.py477 csv_writer.writerow(self._col_names)
501 csv_writer.writerow(value)
517 csv_writer.writerow(task_info)
522 csv_writer.writerow(save_info)
Dminddata_pipeline_parser.py171 csv_writer.writerow(self._col_names)
203 csv_writer.writerow(self._get_op_info(node, sample_interval))
Dintegrator.py125 csv_writer.writerow(self._header_aicore_type)
132 csv_writer.writerow(type_info)
160 csv_writer.writerow(self._header_aicore_detail)
172 csv_writer.writerow([op_infos[0], op_infos[1]])
192 csv_writer.writerow(self._header_aicpu)
201 csv_writer.writerow(infos)
1415 csv_writer.writerow(header)
1418 csv_writer.writerow(row_data)
Dhccl_parser.py118 csv_writer.writerow(self._col_names)
124 csv_writer.writerow(item)
130 csv_writer.writerow(device_communication_average_value)
Dstep_trace_parser.py364 csv_writer.writerow(self._header)
369 csv_writer.writerow(row_data)
Dminddata_analyzer.py572 csv_writer.writerow(data_value)
/third_party/grpc/tools/line_count/
Dyaml2csv.py40 writer.writerow(row)
/third_party/python/Lib/
Dcsv.py143 return self.writerow(header)
153 def writerow(self, rowdict): member in DictWriter
154 return self.writer.writerow(self._dict_to_list(rowdict))
/third_party/python/Doc/library/
Dcsv.rst111 spamwriter.writerow(['Spam'] * 5 + ['Baked Beans'])
112 spamwriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
197 dictionary passed to the :meth:`writerow` method are written to file
200 dictionary passed to the :meth:`writerow` method contains a key not found in
221 writer.writerow({'first_name': 'Baked', 'last_name': 'Beans'})
222 writer.writerow({'first_name': 'Lovely', 'last_name': 'Spam'})
223 writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})
473 .. method:: csvwriter.writerow(row)
503 the return value of the :meth:`csvwriter.writerow` call used internally.
508 the :meth:`csvwriter.writerow` method it uses internally.
/third_party/littlefs/scripts/
Dcode.py108 w.writerow(['file', 'function', 'size'])
110 w.writerow((file, func, size))
Dcoverage.py119 w.writerow(['file', 'function', 'hits', 'count'])
121 w.writerow((file, func, hits, count))
/third_party/grpc/tools/profiling/microbenchmarks/
Dbm2bq.py65 writer.writerow(sane_row)
/third_party/python/Doc/tools/extensions/
Dsuspicious.py171 writer.writerow([self.docname, lineno, issue, text.strip()])
176 writer.writerow([self.docname.encode('utf-8'),
/third_party/python/Tools/c-analyzer/c_common/
Dtables.py145 writer.writerow(header)
147 writer.writerow(
/third_party/flutter/skia/tools/skottie-wasm-perf/
Dparse_perf_csvs.py88 writer.writerow(output_dict[test])
/third_party/skia/tools/skottie-wasm-perf/
Dparse_perf_csvs.py88 writer.writerow(output_dict[test])
/third_party/python/Tools/scripts/
Dstable_abi.py256 writer.writerow({
/third_party/python/Misc/NEWS.d/
D3.5.0a4.rst526 csv.Writer.writerow() now supports arbitrary iterables.
D3.8.0b1.rst1326 underlying :meth:`csv.Writer.writerow` method. Patch contributed by Ashish
D3.10.0a1.rst2038 ``TypeError`` in :func:`csv.reader`, :func:`csv.writer.writerow` and
/third_party/python/Doc/whatsnew/
D3.5.rst1041 The :meth:`~csv.csvwriter.writerow` method now supports arbitrary iterables,
/third_party/python/Misc/
DHISTORY3365 - Issue #19449: in csv's writerow, handle non-string keys when generating the