HomeSort by relevance Sort by last modified time
    Searched refs:filelist (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/curl/lib/
wildcard.c 35 Curl_llist_init(&wc->filelist, Curl_fileinfo_dtor);
53 Curl_llist_destroy(&wc->filelist, NULL);
wildcard.h 50 struct curl_llist filelist; /* llist with struct Curl_fileinfo */ member in struct:WildcardData
  /external/e2fsprogs/lib/support/
profile_helpers.h 27 (const char * filelist, profile_t *ret_profile);
  /external/python/cpython2/Lib/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /external/python/cpython3/Lib/distutils/command/
sdist.py 15 from distutils.filelist import FileList
136 # 'filelist' contains the list of files that will make up the
138 self.filelist = FileList()
146 # whatever). File list is accumulated in 'self.filelist'.
167 distribution, and put it in 'self.filelist'. This might involve
182 self.filelist.sort()
183 self.filelist.remove_duplicates()
190 self.filelist.findall(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /external/ltp/testcases/commands/cpio/
cpio_tests.sh 38 ROD find dir -type f > filelist
39 EXPECT_PASS cpio -o \> cpio.out \< filelist
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
197 self.filelist.findall()
208 self.filelist.sort()
209 self.filelist.remove_duplicates()
    [all...]
  /external/ImageMagick/coders/
vid.c 106 **filelist,
145 filelist=(char **) AcquireMagickMemory(sizeof(*filelist));
146 if (filelist == (char **) NULL)
148 filelist[0]=ConstantString(image_info->filename);
150 status=ExpandFilenames(&number_files,&filelist);
168 filelist[i]);
169 (void) CopyMagickString(read_info->filename,filelist[i],MagickPathExtent);
170 filelist[i]=DestroyString(filelist[i])
103 **filelist, local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/arch/
arch.exp 137 set filelist [lsort -ascii [glob "$srcdir/$subdir/sh*.s"]]
139 foreach file $filelist {
165 foreach file $filelist {
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
file.h 93 LIST_HEAD(filelist, file);
94 extern struct filelist filehead; /* head of list of open files */
  /external/freetype/builds/atari/
FNames.SIC 15 entries = filelist(directory,folder);
  /external/elfutils/libdw/
dwarf_getsrclines.c 43 struct filelist struct
46 struct filelist *next;
160 struct filelist null_file =
170 struct filelist *filelist = &null_file; local
325 struct filelist flstack[MAX_STACK_FILES];
327 struct filelist *fl = (nfilelist < MAX_STACK_FILES \
329 : malloc (sizeof (struct filelist))); \
333 fl->next = filelist; \
334 filelist = fl;
    [all...]
  /external/libffi/
generate-darwin-source-and-headers.py 119 def list_files(src_dir, pattern=None, filelist=None):
120 if pattern: filelist = glob.iglob(os.path.join(src_dir, pattern))
121 for file in filelist:
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix=None):
126 for filename in list_files(src_dir, pattern=pattern, filelist=filelist):
133 copy_files(src_dir, dst_dir, filelist=platform.src_files, file_suffix=platform.arch, prefix=platform.prefix, suffix=platform.suffix)
  /external/python/cpython2/Modules/_ctypes/libffi/
generate-darwin-source-and-headers.py 119 def list_files(src_dir, pattern=None, filelist=None):
120 if pattern: filelist = glob.iglob(os.path.join(src_dir, pattern))
121 for file in filelist:
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix=None):
126 for filename in list_files(src_dir, pattern=pattern, filelist=filelist):
133 copy_files(src_dir, dst_dir, filelist=platform.src_files, file_suffix=platform.arch, prefix=platform.prefix, suffix=platform.suffix)
  /external/python/cpython3/Modules/_ctypes/libffi/
generate-darwin-source-and-headers.py 119 def list_files(src_dir, pattern=None, filelist=None):
120 if pattern: filelist = glob.iglob(os.path.join(src_dir, pattern))
121 for file in filelist:
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix=None):
126 for filename in list_files(src_dir, pattern=pattern, filelist=filelist):
133 copy_files(src_dir, dst_dir, filelist=platform.src_files, file_suffix=platform.arch, prefix=platform.prefix, suffix=platform.suffix)
  /device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/
process_files.sh 66 function filelist () function
90 filelist < "${OPENSSL_PATH}/MINFO" | sed -n -f - -i OpensslLib.inf
  /external/python/cpython3/Lib/test/
test_sundry.py 24 import distutils.filelist
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/build/android/
shared.mk 55 #INV_SOURCES provided by Makefile.filelist
56 include ../filelist.mk
  /hardware/invensense/65xx/libsensors_iio/software/core/mpl/build/android/
shared.mk 57 #INV_SOURCES, VPATH provided by Makefile.filelist
58 include ../filelist.mk
  /external/python/cpython3/Lib/distutils/
util.py 516 from distutils.filelist import FileList
517 filelist = FileList()
521 filelist.findall()
524 filelist.files[:] = filelist.allfiles
529 filelist.process_template_line(line)
531 for filename in filelist.files:
  /external/python/cpython3/Lib/distutils/tests/
test_filelist.py 1 """Tests for distutils.filelist."""
8 from distutils.filelist import glob_to_re, translate_pattern, FileList
9 from distutils import filelist
67 file_list = FileList()
73 # filelist does not filter out VCS directories,
106 file_list = FileList()
120 file_list = FileList()
126 file_list = FileList()
152 '*.py', anchor=True, is_regex=False).search('filelist.py')
    [all...]

Completed in 587 milliseconds

1 2 3 4 5 6