Home
last modified time | relevance | path

Searched refs:lastpart (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_MimeWriter.py251 md.lastpart()
265 code.lastpart()
280 state.lastpart()
284 toplevel.lastpart()
/external/python/cpython2/Lib/
Dcgi.py226 lastpart = "--" + boundary + "--"
230 while terminator != lastpart:
253 terminator = lastpart # End outer loop
257 if terminator in (nextpart, lastpart):
DMimeWriter.py176 def lastpart(self): member in MimeWriter
/external/curl/lib/
Dmime.h99 curl_mimepart *lastpart; /* Last part. */ member
Dmime.c1219 mime->lastpart = NULL; in curl_mime_init()
1256 if(mime->lastpart) in curl_mime_addpart()
1257 mime->lastpart->nextpart = part; in curl_mime_addpart()
1261 mime->lastpart = part; in curl_mime_addpart()
/external/python/cpython2/Doc/library/
Dmimewriter.rst81 .. method:: MimeWriter.lastpart()