Home
last modified time | relevance | path

Searched refs:NeedMoreData (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/email/
Dfeedparser.py39 NeedMoreData = object() variable
77 return NeedMoreData
93 assert line is not NeedMoreData
223 if line is NeedMoreData:
224 yield NeedMoreData
244 if line is NeedMoreData:
245 yield NeedMoreData
261 if retval is NeedMoreData:
262 yield NeedMoreData
276 if line is NeedMoreData:
[all …]
/external/python/cpython3/Lib/email/
Dfeedparser.py41 NeedMoreData = object() variable
82 return NeedMoreData
98 assert line is not NeedMoreData
225 if line is NeedMoreData:
226 yield NeedMoreData
248 if line is NeedMoreData:
249 yield NeedMoreData
265 if retval is NeedMoreData:
266 yield NeedMoreData
280 if line is NeedMoreData:
[all …]
/external/perfetto/src/trace_processor/
Djson_trace_tokenizer_unittest.cc68 TEST(JsonTraceTokenizerTest, NeedMoreData) { in TEST() argument
/external/python/cpython2/Lib/email/test/
Dtest_email.py2597 from email.feedparser import BufferedSubFile, NeedMoreData
2605 for ol in iter(bsf.readline, NeedMoreData):
2613 from email.feedparser import BufferedSubFile, NeedMoreData
2627 lines.extend(iter(bsf.readline, NeedMoreData))
/external/python/cpython3/Lib/test/test_email/
Dtest_email.py3452 from email.feedparser import BufferedSubFile, NeedMoreData
3460 for ol in iter(bsf.readline, NeedMoreData):
3468 from email.feedparser import BufferedSubFile, NeedMoreData
3482 lines.extend(iter(bsf.readline, NeedMoreData))