HomeSort by relevance Sort by last modified time
    Searched refs:outdir (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/
make-hash-tools.pl 26 my $outdir = $ARGV[0];
35 my $docTypeStringsGenerated = "$outdir/DocTypeStrings.cpp";
45 my $colorDataGenerated = "$outdir/ColorData.cpp";
  /external/bison/build-aux/
gendocs.sh 73 -o OUTDIR write files into OUTDIR, instead of manual/.
92 use -o OUTDIR to override). Move all the new files into your web CVS
137 outdir=manual
146 -o) shift; outdir=$1;;
203 # copy_images OUTDIR HTML-FILE...
205 # Copy all the images needed by the HTML-FILEs into OUTDIR. Look
245 case $outdir in
246 /*) abs_outdir=$outdir;;
247 *) abs_outdir=$srcdir/$outdir;;
    [all...]
  /external/llvm/utils/
findmisopt 20 # findmisopt bcfile outdir progargs [match]
25 # outdir
38 echo "usage: findmisopt bcfile outdir progargs [match]"
53 outdir="$2"
61 ll="$outdir/${name}.ll"
62 s="$outdir/${name}.s"
63 prog="$outdir/${name}"
64 out="$outdir/${name}.out"
65 optbc="$outdir/${name}.opt.bc"
66 optll="$outdir/${name}.opt.ll
    [all...]
  /docs/source.android.com/scripts/
micro-httpd.py 22 outdir = os.environ.get('OUTDIR', os.path.join(os.path.dirname(__file__), '..', 'out')) variable
23 os.chdir(outdir)
build.py 68 outdir = curdir.split(os.path.sep)
69 outdir[0] = HTML_DIR
70 if len(outdir) == 2:
71 category = outdir[-1]
72 outdir = os.path.join(*outdir)
76 os.mkdir(os.path.join(outdir, subdir))
118 html = codecs.open(os.path.join(outdir, f.replace('.md', '.html')), 'w', encoding="utf8")
121 shutil.copy(absfilename, os.path.join(outdir, f))
  /external/e2fsprogs/e2fsck/
rehash.c 223 static errcode_t alloc_size_dir(ext2_filsys fs, struct out_dir *outdir,
228 if (outdir->max) {
229 new_mem = realloc(outdir->buf, blocks * fs->blocksize);
232 outdir->buf = new_mem;
233 new_mem = realloc(outdir->hashes,
237 outdir->hashes = new_mem;
239 outdir->buf = malloc(blocks * fs->blocksize);
240 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t));
241 outdir->num = 0;
243 outdir->max = blocks
625 struct out_dir *outdir; member in struct:write_dir_struct
709 struct out_dir outdir; local
    [all...]
  /external/elfutils/src/
make-debug-archive.in 25 outdir=${TMPDIR:-/tmp}/debugar$$
120 new_archive="$outdir.a"
125 trap '$RM -rf "$outdir" "$new_archive"' 0 1 2 15
127 $MKDIR "$outdir" &&
128 $UNSTRIP -d "$outdir" -m -a -R "$@" &&
129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
  /frameworks/base/tools/obbtool/
mkobb.sh 203 outdir=`dirname ${filename}`
204 if [ ! -d "${outdir}" ]; then \
205 echo "ERROR: Output directory does not exist: ${outdir}"
212 tempfile=$(tempfile -d ${outdir}) || ( echo "ERROR: couldn't create temporary file in ${outdir}"; exit 1 )
  /external/webkit/Tools/CodeCoverage/
regenerate-coverage-display 287 sys.exit("Usage: %s DATADIR OUTDIR" % progname)
290 datadir, outdir = args
325 if not os.path.exists(outdir):
326 os.makedirs(outdir)
328 imgdir = os.path.join(outdir, rel_imgdir)
337 copy_files(outdir)
338 write_title_page(outdir, last_time, last_tot_lines, last_tot_covered, dir_serieses)
343 write_directory_site(outdir, dir_name, last_time, dir_serieses, file_serieses)
347 write_file_site(outdir, file_name, last_time, datadir, last_id, file_serieses)
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
Makefile 50 $(SWIG) -o $(WRAPPER) -outdir $(OUTPUT_DIR) -perl -module DumpRenderTreeSupport $<
  /external/v8/
Makefile 32 OUTDIR ?= out
130 ENVFILE = $(OUTDIR)/environment
147 $(BUILDS): $(OUTDIR)/Makefile-$$(basename $$@)
148 @$(MAKE) -C "$(OUTDIR)" -f Makefile-$(basename $@) \
152 builddir="$(shell pwd)/$(OUTDIR)/$@"
154 native: $(OUTDIR)/Makefile-native
155 @$(MAKE) -C "$(OUTDIR)" -f Makefile-native \
157 builddir="$(shell pwd)/$(OUTDIR)/$@"
160 android android.release: $(OUTDIR)/Makefile-android
161 @$(MAKE) -C "$(OUTDIR)" -f Makefile-android
    [all...]
  /external/v8/tools/
test-wrapper-gypbuild.py 53 result.add_option("--outdir",
231 shellpath = workspace + '/' + options.outdir + '/' + arch + '.' + mode
245 shellpath = workspace + '/' + options.outdir
  /external/srec/config/en.us/
Android.mk 62 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -vocab dictionary/enroll.ok -outdir $(G2G_INSTALL_PATH)
73 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -outdir $(G2G_INSTALL_PATH)
  /external/openssl/apps/
ca.c 169 " -outdir dir - Where to put output certificates\n",
279 char *outdir=NULL; local
438 else if (strcmp(*argv,"-outdir") == 0)
441 outdir= *(++argv);
848 if ((outdir == NULL) && (req))
851 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR))
858 /* outdir is a directory spec, but access() for VMS demands a
860 if outdir is not a directory spec, and the fopen() or open()
869 if (access(outdir,R_OK|W_OK|X_OK) != 0)
871 if (_access(outdir,R_OK|W_OK|X_OK) != 0
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 141 const std::string OutDir;
169 const std::string& outdir,
173 Ctx(0), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
190 if (!OutDir.empty()) {
194 case PD_##NAME: CREATEFN(*Opts.getPtr(), PathConsumers, OutDir, PP);\
669 const std::string& outDir,
675 return new AnalysisConsumer(pp, outDir, opts, plugins);
  /external/srec/tools/grxmlcompile/
grxmlcompile.cpp 153 printf("USAGE: -par <par file> -grxml <grxml grammar file> -vocab <dictionary file (.ok)> [-outdir <output directory>]\n");
163 std::string outdir("."); // default output dir is current directory
195 else if(!strcmp(argv[i],"-outdir"))
196 outdir = std::string(argv[++i]);
236 std::string grxmlbase = outdir + "/" + ExtractFileName(grxmlfile);
    [all...]

Completed in 1914 milliseconds