Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcompileall.py132 def expand_args(args, flist): argument
135 if flist:
137 if flist == '-':
140 fd = open(flist)
147 print "Error reading file list %s" % flist
174 flist = None
183 if o == '-i': flist = a
190 if args or flist:
192 if flist:
193 args = expand_args(args, flist)
Dfilecmp.py276 def _filter(flist, skip): argument
277 return list(ifilterfalse(skip.__contains__, flist))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcompileall.py132 def expand_args(args, flist): argument
135 if flist:
137 if flist == '-':
140 fd = open(flist)
147 print "Error reading file list %s" % flist
187 flist = None
196 if o == '-i': flist = a
203 if args or flist:
205 if flist:
206 args = expand_args(args, flist)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dobjgraph.py89 flist = file2undef.keys()
90 flist.sort()
91 for filename in flist:
138 flist = undefs[ext]
139 flist.sort()
140 for filename in flist:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
Dconfig.py106 flist = cp.get("formatters", "keys")
107 if not len(flist):
109 flist = flist.split(",")
110 flist = _strip_spaces(flist)
112 for form in flist: