/third_party/python/Lib/email/ |
D | feedparser.py | 455 firstline = epilogue[0] 456 bolmo = NLCRE_bol.match(firstline) 458 epilogue[0] = firstline[len(bolmo.group(0)):]
|
/third_party/protobuf/kokoro/linux/ |
D | make_test_output.py | 34 firstline = next(jobs)
|
/third_party/python/Lib/ |
D | codecs.py | 451 def read(self, size=-1, chars=-1, firstline=False): argument 506 if firstline: 558 data = self.read(readsize, firstline=True)
|
/third_party/python/Doc/library/ |
D | devmode.rst | 182 firstline = fp.readline() 183 print(firstline.rstrip())
|
D | codecs.rst | 748 .. method:: read([size[, chars, [firstline]]]) 764 The *firstline* flag indicates that
|
/third_party/glib/glib/pcre/ |
D | pcre_dfa_exec.c | 3146 BOOL utf, anchored, startline, firstline; in pcre_dfa_exec() local 3320 firstline = (re->options & PCRE_FIRSTLINE) != 0; in pcre_dfa_exec() 3385 if (firstline) in pcre_dfa_exec() 3582 if (firstline && IS_NEWLINE(current_subject)) break; in pcre_dfa_exec()
|
D | pcre_jit_compile.c | 2001 …_INLINE struct sljit_label *mainloop_entry(compiler_common *common, BOOL hascrorlf, BOOL firstline) in mainloop_entry() argument 2016 if (!(hascrorlf || firstline) && (common->nltype == NLTYPE_ANY || in mainloop_entry() 2020 if (firstline) in mainloop_entry() 2119 …t_forward_first_char(compiler_common *common, pcre_uchar first_char, BOOL caseless, BOOL firstline) in fast_forward_first_char() argument 2127 if (firstline) in fast_forward_first_char() 2190 if (firstline) in fast_forward_first_char() 2194 static SLJIT_INLINE void fast_forward_newline(compiler_common *common, BOOL firstline) in fast_forward_newline() argument 2205 if (firstline) in fast_forward_newline() 2239 if (firstline) in fast_forward_newline() 2275 if (firstline) in fast_forward_newline() [all …]
|
D | pcre_exec.c | 6351 BOOL firstline; in pcre_exec() local 6517 firstline = (re->options & PCRE_FIRSTLINE) != 0; in pcre_exec() 6724 if (firstline) in pcre_exec() 6978 if (firstline && IS_NEWLINE(start_match)) break; in pcre_exec()
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_dfa_match.c | 3254 BOOL utf, anchored, startline, firstline; in pcre2_dfa_match() local 3368 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_dfa_match() 3608 if (firstline) in pcre2_dfa_match() 3962 if (firstline && IS_NEWLINE(start_match)) break; in pcre2_dfa_match()
|
D | pcre2_match.c | 6114 BOOL firstline; in pcre2_match() local 6518 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_match() 6738 if (firstline) in pcre2_match() 7148 if (firstline && IS_NEWLINE(start_match)) break; in pcre2_match()
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput6 | 3944 /line\nbreak/firstline 3949 /line\nbreak/m,firstline 4944 /\n/firstline 4947 /\nabc/firstline 4950 /\x{0a}abc/firstline,newline=crlf 4954 /[abc]/firstline
|
D | testinput2 | 1396 /line\nbreak/I,firstline 1401 /line\nbreak/Im,firstline 3938 /abcd/newline=lf,firstline 5344 /a\b(c/literal,firstline 5437 /\n/firstline 5440 /\nabc/firstline 5443 /\x{0a}abc/firstline,newline=crlf 5447 /[abc]/firstline
|
D | testoutput6 | 5901 /line\nbreak/firstline 5908 /line\nbreak/m,firstline 7769 /\n/firstline 7773 /\nabc/firstline 7777 /\x{0a}abc/firstline,newline=crlf 7782 /[abc]/firstline
|
D | testoutput2 | 5471 /line\nbreak/I,firstline 5474 Options: firstline 5484 /line\nbreak/Im,firstline 5487 Options: firstline multiline 13364 /abcd/newline=lf,firstline 16269 /a\b(c/literal,firstline 16493 /\n/firstline 16497 /\nabc/firstline 16501 /\x{0a}abc/firstline,newline=crlf 16506 /[abc]/firstline
|
D | testinput17 | 301 /[aC]/mg,firstline,newline=lf 304 /[aCz]/mg,firstline,newline=lf
|
D | testoutput17 | 545 /[aC]/mg,firstline,newline=lf 549 /[aCz]/mg,firstline,newline=lf
|
D | testinput7 | 649 /X/newline=any,utf,firstline
|
D | testinput5 | 351 /X/newline=any,utf,firstline
|
D | testoutput5 | 823 /X/newline=any,utf,firstline
|
D | testoutput7 | 1106 /X/newline=any,utf,firstline
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2test.txt | 567 firstline set PCRE2_FIRSTLINE
|