HomeSort by relevance Sort by last modified time
    Searched refs:outfp (Results 1 - 10 of 10) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /external/checkpolicy/
checkmodule.c 113 FILE *outfp = NULL; local
120 outfp = fopen(file, "w");
121 if (!outfp) {
132 pf.fp = outfp;
138 fclose(outfp);
checkpolicy.c 394 FILE *outfp = NULL; local
602 outfp = fopen(outfile, "w");
603 if (!outfp) {
613 pf.fp = outfp;
620 fclose(outfp);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)

Completed in 133 milliseconds