/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/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/ |
build.py | 50 outdir = [x for x in curdir.split(os.path.sep) if x] 51 outdir[0] = HTML_DIR 52 if len(outdir) == 2: 53 category = outdir[-1] 54 outdir = os.path.join(*outdir) 57 os.mkdir(os.path.join(outdir, subdir)) 86 html = file(os.path.join(outdir, f.replace('.md', '.html')), 'w') 89 shutil.copy(os.path.join(curdir, f), 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...] |
/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)
|
/cts/tools/dx-tests/etc/ |
compileall | 57 outdir=$5 107 fdest=$outdir/cts/dxconverter
|
/external/webkit/Tools/DumpRenderTree/mac/PerlSupport/ |
Makefile | 50 $(SWIG) -o $(WRAPPER) -outdir $(OUTPUT_DIR) -perl -module DumpRenderTreeSupport $<
|
/external/srec/config/en.us/ |
Android.mk | 60 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -vocab dictionary/enroll.ok -outdir $(G2G_INSTALL_PATH) 71 $(GRXML) -par $(DEFAULT_PAR) -grxml $< -outdir $(G2G_INSTALL_PATH)
|
/external/openssl/apps/ |
ca.c | 169 " -outdir dir - Where to put output certificates\n", 275 char *outdir=NULL; local 433 else if (strcmp(*argv,"-outdir") == 0) 436 outdir= *(++argv); 834 if ((outdir == NULL) && (req)) 837 if ((outdir=NCONF_get_string(conf,section,ENV_NEW_CERTS_DIR)) 844 /* outdir is a directory spec, but access() for VMS demands a 846 if outdir is not a directory spec, and the fopen() or open() 855 if (access(outdir,R_OK|W_OK|X_OK) != 0) 857 if (_access(outdir,R_OK|W_OK|X_OK) != 0 [all...] |
/external/clang/lib/StaticAnalyzer/Frontend/ |
AnalysisConsumer.cpp | 67 const std::string OutDir; 80 const std::string& outdir, 82 : Ctx(0), PP(pp), OutDir(outdir), 89 if (!OutDir.empty()) { 93 case PD_##NAME: PD = CREATEFN(OutDir, PP); break; 369 const std::string& OutDir, 371 llvm::OwningPtr<AnalysisConsumer> C(new AnalysisConsumer(pp, OutDir, Opts));
|
/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...] |