Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dmakeconfig.py8 def makeconfig(infp, outfp, modules, with_ifdef=0): argument
12 line = infp.readline()
46 infp = sys.stdin
48 infp = open(sys.argv[1])
53 makeconfig(infp, outfp, sys.argv[3:])
56 if infp != sys.stdin:
57 infp.close()
Dfreeze.py449 infp = open(config_c_in)
452 makeconfig.makeconfig(infp, outfp, builtins)
455 infp.close()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_quopri.py148 infp = cStringIO.StringIO(p)
150 quopri.encode(infp, outfp, quotetabs=False)
156 infp = cStringIO.StringIO(e)
158 quopri.decode(infp, outfp)
Dtest_base64.py39 infp = StringIO('abcdefghijklmnopqrstuvwxyz'
43 base64.encode(infp, outfp)
51 infp = StringIO('d3d3LnB5dGhvbi5vcmc=')
53 base64.decode(infp, outfp)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dquopri.py109 infp = StringIO(s)
111 encode(infp, outfp, quotetabs, header)
163 infp = StringIO(s)
165 decode(infp, outfp, header = header)