Searched defs:files (Results 1 - 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_pep277.py56 # Destroy directory dirname and all files under it, to one level.
68 files = set(filenames) variable in class: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
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dasdl.py392 print lines[err.lineno - 1] # lines starts at 0, files at 1
399 files = sys.argv[1:] variable
402 files = glob.glob(testdir + "/*.asdl") variable
404 for file in files:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
H A DCommandLine.py272 synopsis = '%(name)s [option] files...'
301 files = None # List of passed filenames variable in class:Application
330 # Init .files list
331 self.files = []
405 """ Parse the command line and fill in self.values and self.files.
408 arguments are interpreted as files and passed to .handle_files()
424 optlist,files = getopt.getopt(self.arguments,flags,lflags)
427 for f in files:
433 files = l
435 self.files
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
H A Dgenmk_old.c11 #include "pcctscfg.h" /* be sensitive to what ANTLR/DLG call the files */
46 static char *project="t", *files[MAX_FILES], *classes[MAX_CLASSES]; variable
143 require(num_files<MAX_FILES, "exceeded max # of input files");
144 files[num_files++] = s;
241 { "-o", 1, pOdir, "Directory where output files should go (default=\".\")"},
247 { "-cfiles",1,pCFiles, "Additional files in C or C++ to compile"},
288 if ( num_files == 0 ) fatal("no grammar files specified; exiting...");
297 mk(project, files, num_files, argc, argv);
317 void mk(project, files, n, argc, argv)
319 char **files;
[all...]
H A Dgenmk.c12 #include "pcctscfg.h" /* be sensitive to what ANTLR/DLG call the files */
50 static char *project="t", *files[MAX_FILES], *classes[MAX_CLASSES]; variable
53 static int num_sfiles[MAX_SORS]; /*sorcerer files in group */
55 static int num_files = 0; /* grammar files */
56 static int num_cfiles = 0; /* additional C/C++ files */
72 void mk(char *project, char **files, int n, int argc, char **argv);
73 void pfiles(char **files, int n, char *suffix);
198 "exceeded max # of sorcerer input files");
211 require(num_cfiles<MAX_CFILES, "exceeded max # of C/C++ input files");
257 require(num_files<MAX_FILES, "exceeded max # of input files");
448 mk(char *project, char **files, int n, int argc, char **argv) argument
931 pfiles(char **files, int n, char *suffix) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dzipimport.c40 PyObject *files; /* dict with file info {path: toc_entry} */ member in struct:_zipimporter
126 PyObject *files; local
127 files = PyDict_GetItemString(zip_directory_cache, path);
128 if (files == NULL) {
129 files = read_directory(buf);
130 if (files == NULL)
133 files) != 0)
137 Py_INCREF(files);
138 self->files = files;
688 PyObject *files = NULL; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dzipimport.c40 PyObject *files; /* dict with file info {path: toc_entry} */ member in struct:_zipimporter
126 PyObject *files; local
127 files = PyDict_GetItemString(zip_directory_cache, path);
128 if (files == NULL) {
129 files = read_directory(buf);
130 if (files == NULL)
133 files) != 0)
137 Py_INCREF(files);
138 self->files = files;
688 PyObject *files = NULL; local
[all...]

Completed in 60 milliseconds