Home
last modified time | relevance | path

Searched refs:blankline (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/
Dformatter.py42 def end_paragraph(self, blankline): pass argument
45 def add_label_data(self, format, counter, blankline=None): pass argument
90 def end_paragraph(self, blankline): argument
94 if self.parskip < blankline and not self.have_label:
95 self.writer.send_paragraph(blankline - self.parskip)
96 self.parskip = blankline
115 def add_label_data(self, format, counter, blankline = None): argument
119 self.writer.send_paragraph((blankline and 1) or 0)
310 def send_paragraph(self, blankline): pass argument
341 def send_paragraph(self, blankline): argument
[all …]
/external/python/cpython3/Lib/
Dformatter.py45 def end_paragraph(self, blankline): pass argument
48 def add_label_data(self, format, counter, blankline=None): pass argument
93 def end_paragraph(self, blankline): argument
97 if self.parskip < blankline and not self.have_label:
98 self.writer.send_paragraph(blankline - self.parskip)
99 self.parskip = blankline
118 def add_label_data(self, format, counter, blankline = None): argument
122 self.writer.send_paragraph((blankline and 1) or 0)
313 def send_paragraph(self, blankline): pass argument
344 def send_paragraph(self, blankline): argument
[all …]
/external/u-boot/scripts/
Dkernel-doc253 my $blankline = $blankline_man;
332 $blankline = $blankline_html;
336 $blankline = $blankline_html5;
340 $blankline = $blankline_man;
344 $blankline = $blankline_text;
348 $blankline = $blankline_xml;
352 $blankline = $blankline_list;
356 $blankline = $blankline_gnome;
501 print $lineprefix, local_unescape($blankline);
2540 $contents .= $blankline;
/external/python/cpython2/Parser/
Dtokenizer.c1219 int blankline; in tok_get() local
1224 blankline = 0; in tok_get()
1253 blankline = 0; /* Let it through */ in tok_get()
1255 blankline = 1; /* Ignore completely */ in tok_get()
1259 if (!blankline && tok->level == 0) { in tok_get()
1406 if (blankline || tok->level > 0) in tok_get()
/external/python/cpython3/Parser/
Dtokenizer.c1355 int blankline, nonascii; in tok_get() local
1360 blankline = 0; in tok_get()
1391 blankline = 0; /* Let it through */ in tok_get()
1394 blankline = 1; /* Ignore completely */ in tok_get()
1399 if (!blankline && tok->level == 0) { in tok_get()
1523 if (blankline || tok->level > 0) { in tok_get()
/external/python/cpython2/Doc/library/
Dformatter.rst278 .. method:: writer.send_paragraph(blankline)
280 Produce a paragraph separation of at least *blankline* blank lines, or the
281 equivalent. The *blankline* value will be an integer. Note that the
/external/python/cpython3/Doc/library/
Dformatter.rst279 .. method:: writer.send_paragraph(blankline)
281 Produce a paragraph separation of at least *blankline* blank lines, or the
282 equivalent. The *blankline* value will be an integer. Note that the