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

  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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')
  /external/selinux/checkpolicy/
checkmodule.c 112 static int write_binary_policy(policydb_t * p, FILE *outfp)
122 pf.fp = outfp;
288 FILE *outfp = fopen(outfile, "w"); local
290 if (!outfp) {
299 if (write_binary_policy(&modpolicydb, outfp) != 0) {
306 if (sepol_module_policydb_to_cil(outfp, &modpolicydb, 0) != 0) {
312 fclose(outfp);
checkpolicy.c 397 FILE *outfp = NULL; local
615 outfp = fopen(outfile, "w");
616 if (!outfp) {
631 pf.fp = outfp;
640 ret = sepol_module_policydb_to_cil(outfp, policydbp, 1);
648 fclose(outfp);
  /art/runtime/interpreter/mterp/
gen_mterp.py 400 def emitAsmHeader(outfp, dict, prefix):
401 outfp.write("/* ------------------------------ */\n")
408 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
414 def emitAsmStub(outfp, dict):
415 emitAsmHeader(outfp, dict, label_prefix)
418 outfp.write(templ.substitute(dict))
421 # Append the file specified by "source" to the open "outfp". Each line will
435 def appendSourceFile(source, dict, outfp, sister_list):
436 outfp.write("/* File: %s */\n" % source)
455 appendSourceFile(alt_source, new_dict, outfp, sister_list
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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()
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /external/curl/docs/examples/
curlx.c 493 FILE *outfp; local
494 BIO_get_fp(out, &outfp);
495 curl_easy_setopt(p.curl, CURLOPT_WRITEDATA, outfp);

Completed in 1158 milliseconds