Home
last modified time | relevance | path

Searched refs:linewidth (Results 1 – 25 of 30) sorted by relevance

12

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_squeezer.py38 def check(self, expected, text, linewidth): argument
41 count_lines_with_wrapping(text, linewidth),
61 self.check(expected=1, text='\n', linewidth=80)
62 self.check(expected=2, text='\n\n', linewidth=80)
63 self.check(expected=10, text='\n' * 10, linewidth=80)
66 self.check(expected=3, text='a' * 200, linewidth=80)
67 self.check(expected=3, text='a' * 200 + '\n', linewidth=80)
76 self.check(expected=5, text=text, linewidth=80)
77 self.check(expected=5, text=text + '\n', linewidth=80)
78 self.check(expected=6, text=text, linewidth=40)
[all …]
/external/python/cpython3/Lib/idlelib/
Dsqueezer.py30 def count_lines_with_wrapping(s, linewidth=80): argument
53 if current_column > linewidth:
59 linecount += (current_column - 1) // linewidth
68 if current_column > linewidth:
78 linecount += (current_column - 1) // linewidth
301 linewidth = self.get_line_width()
302 return count_lines_with_wrapping(s, linewidth)
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_data_channel.py69 linewidth=1000)
99 linewidth=1000)
Dmbim_channel_endpoint.py190 linewidth=1000)
210 linewidth=1000)
/external/u-boot/drivers/video/
Dbus_vcxk.c326 void vcxk_draw_mono(unsigned char *dataptr, unsigned long linewidth, in vcxk_draw_mono() argument
343 dataptr = dataptr + linewidth; in vcxk_draw_mono()
/external/webrtc/tools/cpu/
Dcpu_mon.py75 pyplot.plot(s.samples, label=s.Text(), linewidth=2)
/external/iperf3/contrib/
Diperf3.gp18 set grid linewidth 1
/external/eigen/bench/btl/data/
Dgnuplot_common_settings.hh21 set key left top Right noreverse box linetype -2 linewidth 1.000 samplen 4 spacing 1 width 0
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dplot_dynamics.py85 line = plt.plot(x, y, label=alg, linewidth=4.0)
/external/v8/tools/ignition/
Dbytecode_dispatches_report.py154 linewidth=0.5
/external/iproute2/misc/
Dlnstat.c179 int linewidth) in build_hdr_string() argument
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_rasterizer.c213 rast->linewidth = MAX2(1.0F, templ->line_width); in svga_create_rasterizer_state()
Dsvga_context.h182 float linewidth; member
Dsvga_state_rss.c234 EMIT_RS_FLOAT(svga, curr->linewidth, LINEWIDTH); in emit_rss_vgpu9()
/external/blktrace/btt/
Dbtt_plot.py346 linewidth=1.0)
/external/webrtc/webrtc/video/
Dfull_stack_plot.py275 ax.plot(x, y, "o-", label=line.label, markersize=3.0, linewidth=1.0,
/external/python/cpython3/Doc/c-api/
Dbuffer.rst269 .. tabularcolumns:: |p{0.35\linewidth}|l|l|l|
293 .. tabularcolumns:: |p{0.35\linewidth}|l|l|l|l|
318 .. tabularcolumns:: |p{0.35\linewidth}|l|l|l|l|l|l|
/external/scapy/scapy/
Dpacket.py617 c.stroke(make_frame(tlist),[col,pyx.deco.filled([bkcol]),pyx.style.linewidth.Thick])
661 canvas.stroke(cnx,[pyx.style.linewidth.thin,pyx.deco.earrow.small,col])
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format_test.py38 precision=8, threshold=1000, edgeitems=3, linewidth=75)
/external/python/cpython3/Doc/library/
Dcodecs.rst1011 .. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}|
1267 .. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}|
Dwarnings.rst66 .. tabularcolumns:: |l|p{0.6\linewidth}|
Dtkinter.ttk.rst170 .. tabularcolumns:: |l|p{0.7\linewidth}|
807 .. tabularcolumns:: |l|p{0.7\linewidth}|
/external/python/cpython2/Doc/library/
Dwarnings.rst60 .. tabularcolumns:: |l|p{0.6\linewidth}|
Dcodecs.rst919 .. tabularcolumns:: |l|p{0.3\linewidth}|p{0.3\linewidth}|
/external/python/cpython2/Modules/
Dcstubs933 void linewidth short s

12