Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
Drcvs.py248 def update(self, files): argument
249 for e in self.whichentries(files, 1):
252 def commit(self, files, message = ""): argument
253 list = self.whichentries(files)
270 def mailinfo(self, files, message = ""): argument
272 mailtext = MAILFORM % (towhom, string.join(files),
273 string.join(files), message)
289 def report(self, files): argument
290 for e in self.whichentries(files):
293 def diff(self, files, opts): argument
[all …]
Drcslib.py162 files = os.listdir(os.curdir)
163 files = filter(self._isrcs, files)
167 files = files + files2
168 files = map(self.realname, files)
169 return self._filter(files, pat)
309 def _filter(self, files, pat = None): argument
319 files = filter(keep, files)
321 files = files[:]
322 files.sort()
323 return files
DFSProxy.py106 def _filter(self, files, pat = None): argument
110 files = filter(keep, files)
111 files = filter(self.visible, files)
112 files.sort()
113 return files
116 files = os.listdir(os.curdir)
117 return self._filter(files, pat)
120 files = os.listdir(os.curdir)
121 files = filter(os.path.isfile, files)
122 return self._filter(files, pat)
[all …]
Drcsbump19 files = sys.argv[1:]
21 files = dir.listfiles()
23 for file in files:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dmd5sum.py25 def sum(*files): argument
27 if files and isinstance(files[-1], file):
28 out, files = files[-1], files[:-1]
31 if len(files) == 1 and not isinstance(files[0], str):
32 files = files[0]
33 for f in files:
DREADME8 byext.py Print lines/words/chars stats of files by extension
11 checkpyc.py Check presence and validity of ".pyc" files
17 cvsfiles.py Print a list of files that are under CVS
25 findnocoding.py Find source files which need an encoding declaration
26 fixcid.py Massive identifier substitution on C source files
29 fixnotice.py Fix the copyright notice in source files
39 linktree.py Make a copy of a tree with links to original files
43 md5sum.py Print MD5 checksums of argument files.
46 ndiff.py Intelligent diff between text files (Tim Peters)
56 pysource.py Find Python source files
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dcheckextensions.py9 files = []
28 if liba in files:
30 files.append(liba)
32 files = files + select(e, mods, vars,
35 files = files + select(e, mods, vars, mod, 0)
37 return files, modules
40 files = []
54 files.append(w)
55 return files
Dmakemakefile.py5 def makemakefile(outfp, makevars, files, target): argument
15 for i in range(len(files)):
16 file = files[i]
22 files[i] = dest
27 (' '.join(files), target))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_zipimport.py69 def doTest(self, expected_ext, files, *modules, **kw): argument
72 for name, (mtime, data) in files.items():
129 files = {"zlib.py": (NOW, test_src)}
131 self.doTest(".py", files, "zlib")
140 files = {TESTMOD + ".py": (NOW, test_src)}
141 self.doTest(".py", files, TESTMOD)
144 files = {TESTMOD + pyc_ext: (NOW, test_pyc)}
145 self.doTest(pyc_ext, files, TESTMOD)
148 files = {TESTMOD + ".py": (NOW, test_src),
150 self.doTest(pyc_ext, files, TESTMOD)
[all …]
Dtest_pep277.py68 files = set(filenames) variable in UnicodeFileTests
76 files = set()
77 for name in self.files:
82 files.add(name)
83 self.files = files
108 for name in self.files:
119 for name in self.files:
131 files = set(f for f in self.files if isinstance(f, unicode))
134 others |= set(normalize(nf, file) for file in files)
135 others -= files
[all …]
Dtest_fileinput.py50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs)
94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs)
113 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs)
128 fi = FileInput(files=(t1, t2, t3, t4))
149 fi = FileInput(files=(t1, t2))
163 fi = FileInput(files=unicode(t1, encoding))
173 fi = FileInput(files=(t1, t2))
[all …]
/device/google/coral-sepolicy/vendor/qcom/common/
Dfile.te1 # All files under /vendor/firmware
32 #Define the files written during the operation of netmgrd and qmuxd
85 #Define the files written during the operation of mpdecision
91 #Define the files used by lm
108 #define the files writer during the operation of app state changes
110 #define the files writter during the operatio of iop
135 #Defines the files (configs, dumps, etc) used by display processes
138 #Define the files for the operation of QDCM
166 #rmt files
172 # used for /dsp files
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
Dgenmk_old.c46 static char *project="t", *files[MAX_FILES], *classes[MAX_CLASSES]; variable
144 files[num_files++] = s;
297 mk(project, files, num_files, argc, argv);
317 void mk(project, files, n, argc, argv) in mk() argument
319 char **files;
328 pfiles(files, n, NULL);
390 pfiles(files, n, NULL);
394 if ( gen_CPP ) pfiles(files, n, CPP_FILE_SUFFIX_NO_DOT);
395 else pfiles(files, n, "c");
419 pfiles(files, n, "o");
[all …]
Dgenmk.c50 static char *project="t", *files[MAX_FILES], *classes[MAX_CLASSES]; variable
72 void mk(char *project, char **files, int n, int argc, char **argv);
73 void pfiles(char **files, int n, char *suffix);
258 files[num_files++] = s;
423 mk(project, files, num_files, argc, argv);
448 void mk(char *project, char **files, int n, int argc, char **argv) in mk() argument
450 void mk(project, files, n, argc, argv) in mk()
452 char **files;
462 pfiles(files, n, NULL);
539 pfiles(files, n, NULL);
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dfilelist.py34 self.files = []
53 self.files.append(item)
56 self.files.extend(items)
60 sortable_files = map(os.path.split, self.files)
62 self.files = []
64 self.files.append(os.path.join(*sort_tuple))
71 for i in range(len(self.files) - 1, 0, -1):
72 if self.files[i] == self.files[i - 1]:
73 del self.files[i]
225 self.files.append(name)
[all …]
/device/google/cuttlefish/host/commands/fetcher/
Dinstall_zip.cc42 std::vector<std::string> files = in ExtractImages() local
44 auto it = files.begin(); in ExtractImages()
45 while (it != files.end()) { in ExtractImages()
47 it = files.erase(it); in ExtractImages()
53 return files; in ExtractImages()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DMPW_Read_Me2 1. You can control the creator type of generated files by changing a value of
11 #define MAC_FILE_CREATOR 'MPS ' /* MPW Text files */
14 #define MAC_FILE_CREATOR 'KAHL' /* THINK C/Symantec C++ Text files */
17 #define MAC_FILE_CREATOR 'CWIE' /* Metrowerks C/C++ Text files */
20 2. If you want to build 68K version. You must convert all source files to Macintosh
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dfileinput.py91 def input(files=None, inplace=0, backup="", bufsize=0, argument
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
197 def __init__(self, files=None, inplace=0, backup="", bufsize=0, argument
199 if isinstance(files, basestring):
200 files = (files,)
202 if files is None:
203 files = sys.argv[1:]
204 if not files:
205 files = ('-',)
207 files = tuple(files)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dfileinput.py91 def input(files=None, inplace=0, backup="", bufsize=0, argument
102 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
196 def __init__(self, files=None, inplace=0, backup="", bufsize=0, argument
198 if isinstance(files, basestring):
199 files = (files,)
201 if files is None:
202 files = sys.argv[1:]
203 if not files:
204 files = ('-',)
206 files = tuple(files)
[all …]
/device/linaro/bootloader/edk2/BaseTools/Conf/
DReadMe.txt1 This directory contains the template files for the next generation of the
2 EDK II Build infrastructure. These files will be copied into the WORKSPACE's
3 Conf directory if and only if the target files do not exist.
5 These files may be updated frequently.
/device/generic/goldfish-opengl/android-emu/
DCMakeLists.txt5 … android/base/AlignedBuf.cpp android/base/files/MemStream.cpp android/base/files/Stream.cpp androi…
6 … android/base/AlignedBuf.cpp android/base/files/MemStream.cpp android/base/files/Stream.cpp androi…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
Dlibprep.bat10 echo Copying files to %dest%.
11 echo Existing files will be overwritten.
15 REM Copy Distro then PyMod files to the destination
/device/linaro/bootloader/edk2/Conf/
DReadMe.txt1 This directory will be used to contain the new EDK II files:
6 These files will be created from the template files in the new
/device/google/cuttlefish/host/commands/launch/
Dfilesystem_explorer.cc39 std::set<std::string> files; in AvailableFilesReport() local
46 files.insert(psuedo_fetcher_config); in AvailableFilesReport()
50 for (const auto& file : files) { in AvailableFilesReport()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DCommandLine.py301 files = None # List of passed filenames variable in Application
331 self.files = []
424 optlist,files = getopt.getopt(self.arguments,flags,lflags)
427 for f in files:
433 files = l
435 self.files = files + self.files
441 rc = self.handle_files(self.files)
474 rc = self.check_files(self.files)
552 def handle_files(self,files): argument
630 print 'files:',cmd.files

12345678910>>...25