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

1 2

  /external/chromium_org/tools/gyp/test/variables/filelist/
update_golden 7 python ../../../gyp --debug variables --debug general --format gypd --depth . src/filelist.gyp > filelist.gyp.stdout
8 cp -f src/filelist.gypd filelist.gypd.golden
  /external/e2fsprogs/e2fsck/
profile_helpers.h 27 (const char * filelist, profile_t *ret_profile);
  /external/chromium_org/chrome/tools/
inconsistent-eol.py 74 def ProcessFiles(filelist):
75 """Fix line endings in each file in the filelist list."""
76 for filename in filelist:
112 filelist = open(arg, 'r').readlines()
113 ProcessFiles(filelist)
115 filelist = args
116 ProcessFiles(filelist)
  /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/elfutils/libdw/
dwarf_getsrclines.c 62 struct filelist struct
65 struct filelist *next;
263 struct filelist null_file =
273 struct filelist *filelist = &null_file; local
280 struct filelist *new_file =
281 (struct filelist *) alloca (sizeof (*new_file));
330 new_file->next = filelist;
331 filelist = new_file;
454 struct filelist *new_file
    [all...]
  /external/chromium_org/tools/symsrc/
source_index.py 71 filelist = srctool.stdout.read()
73 if res != 0 or filelist.startswith("srctool: "):
74 raise "srctool failed: " + filelist
75 return [x for x in filelist.split('\r\n') if len(x) != 0]
162 filelist = ExtractSourceFiles(pdb_filename)
163 for filename in filelist:
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
build_vc.pl 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h);
41 @filelist = <FILES>;
60 foreach $file (@filelist)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
build_vc.pl 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h);
41 @filelist = <FILES>;
60 foreach $file (@filelist)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
build_vc.pl 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h);
41 @filelist = <FILES>;
60 foreach $file (@filelist)
  /external/chromium_org/native_client_sdk/src/tools/
genhttpfs.py 45 filelist = glob.glob(fileglob)
46 if not filelist:
48 for filename in filelist:
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_virmidi.h 63 struct list_head filelist; member in struct:snd_virmidi_dev
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_virmidi.h 63 struct list_head filelist; member in struct:snd_virmidi_dev
  /system/core/adb/
file_sync_client.c 601 static int local_build_list(copyinfo **filelist,
656 ci->next = *filelist;
657 *filelist = ci;
666 local_build_list(filelist, ci->src, ci->dst);
676 copyinfo *filelist = 0; local
697 if(local_build_list(&filelist, lpath, rpath)) {
702 for(ci = filelist; ci != 0; ci = ci->next) {
707 for(ci = filelist; ci != 0; ci = ci->next) {
719 for(ci = filelist; ci != 0; ci = next) {
803 copyinfo **filelist; member in struct:__anon62556
829 copyinfo **filelist = args->filelist; local
874 copyinfo *filelist = 0; local
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/build/android/
shared.mk 55 #INV_SOURCES provided by Makefile.filelist
56 include ../filelist.mk
  /hardware/invensense/60xx/libsensors_iio/software/core/mpl/build/android/
shared.mk 56 #INV_SOURCES, VPATH provided by Makefile.filelist
57 include ../filelist.mk
  /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
  /ndk/sources/host-tools/make-3.81/
makefile.com 69 $ filelist = "alloca ar arscan commands default dir expand file function " + -
77 $ cfile = f$elem(n," ",filelist)
  /external/chromium_org/chrome/browser/google_apis/
drive_api_parser_unittest.cc 234 "drive/filelist.json");
238 scoped_ptr<FileList> filelist(new FileList);
239 EXPECT_TRUE(filelist->Parse(*document));
242 filelist->etag());
246 "ABC", filelist->next_page_token());
251 "t10AAAAABC"), filelist->next_link());
253 ASSERT_EQ(3U, filelist->items().size());
255 const FileResource& file1 = *filelist->items()[0]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 22 import distutils.filelist namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 22 import distutils.filelist namespace
  /external/srec/tools/test_g2g/
test_g2g.c 74 void load_filelist(char* filelist, char*** pfiles, int *pnum_files);
476 void load_filelist(char* filelist, char*** pfiles, int *pnum_files)
484 fp = fopen(filelist, "r");
486 pfprintf(PSTDOUT, "failed to open %s\n", filelist);
498 fp = fopen(filelist, "r");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cmd.py 447 def _copy_files(self, filelist):
449 if not filelist:
452 for f in filelist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cmd.py 447 def _copy_files(self, filelist):
449 if not filelist:
452 for f in filelist:

Completed in 1877 milliseconds

1 2