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

1 2

  /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/chromium_org/third_party/binutils/
download.py 57 outdir = os.path.join(archdir, BINUTILS_OUT)
69 os.path.exists(outdir) and
84 if os.path.exists(outdir):
85 shutil.rmtree(outdir)
86 assert not os.path.exists(outdir)
87 os.makedirs(outdir)
88 assert os.path.exists(outdir)
91 subprocess.check_call(['tar', 'axf', tarball], cwd=outdir)
94 assert os.path.exists(os.path.join(outdir, tool))
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chrome011010.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
24 outdir: directory to place output
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
chrome01970.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
24 outdir: directory to place output
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
chromebase.py 50 def Scrape(urls, outdir, size, pos, timeout, kwargs):
55 outdir: directory to place output
100 filename = windowing.URLtoFilename(url, outdir, ".bmp")
  /external/chromium_org/tools/site_compare/commands/
compare2.py 52 ["-o", "--outdir"], "Directory to store scrape files", metaname="DIR")
107 outdir = command["--outdir"]
108 if not outdir: outdir = tempfile.gettempdir()
114 __slots__ = ["browser_path", "scraper", "outdir", "result"]
123 scrape_info.outdir = os.path.join(outdir,
126 scrape_info.outdir = os.path.join(outdir, str(index)
    [all...]
  /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
717 struct out_dir outdir; local
    [all...]
  /external/elfutils/0.153/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") &&
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_common.py 27 def RemoveDir(outdir):
37 outdir: The directory to delete
47 shutil.rmtree(outdir)
50 if not os.path.exists(outdir):
59 cmd = ['rmdir', '/S', '/Q', outdir]
78 raise Error('Unable to remove directory "%s"\n %s' % (outdir,
  /external/chromium_org/base/allocator/
prep_libc.py 37 outdir = sys.argv[2]
42 output_lib = os.path.join(outdir, 'libcmt.lib')
45 os.path.join(outdir, 'libcmt.pdb'))
  /cts/apps/CameraITS/tools/
run_all_tests.py 75 outdir = os.path.join(topdir,scene)
76 outpath = os.path.join(outdir,testname+"_stdout.txt")
77 errpath = os.path.join(outdir,testname+"_stderr.txt")
80 retcode = subprocess.call(cmd,stderr=ferr,stdout=fout,cwd=outdir)
  /external/chromium-trace/trace-viewer/build/
generate_about_tracing_contents.py 42 def generate_html(outdir):
58 rel_filename = os.path.relpath(style_sheet.filename, outdir)
74 def generate_js(outdir):
98 rel_filename = os.path.relpath(dependent_raw_script.filename, outdir)
101 rel_filename = os.path.relpath(module.filename, outdir)
113 parser = optparse.OptionParser(usage="%prog --outdir=<directory>")
114 parser.add_option("--outdir", dest="out_dir",
119 sys.stderr.write("ERROR: Must specify --outdir=<directory>")
  /external/chromium_org/v8/tools/
generate-builtins-tests.py 90 filename = os.path.join(options.outdir, "%s.js" % (full_name))
108 if os.path.exists(options.outdir):
109 shutil.rmtree(options.outdir)
118 os.makedirs(options.outdir)
129 result.add_option("--outdir", help="directory where to place generated tests",
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 129 outdir = os.path.join(dstroot, desc['DEST'], name)
131 dstpath = os.path.join(outdir, 'index.html')
146 outdir = os.path.join(dstroot, desc['DEST'], desc['NAME'])
148 dstpath = os.path.join(outdir, 'manifest.json')
221 outdir = os.path.dirname(os.path.abspath(make_path))
223 AddMakeBat(pepperdir, outdir)
280 outdir = os.path.dirname(os.path.abspath(out_path))
282 AddMakeBat(pepperdir, outdir)
build_app.py 29 def RemoveBuildCruft(outdir):
30 for root, _, files in os.walk(outdir):
45 def StripNexes(outdir, platform, pepperdir):
46 for root, _, files in os.walk(outdir):
dsc2gyp.py 369 outdir = os.path.dirname(options.output)
370 if not os.path.exists(outdir):
371 os.makedirs(outdir)
  /external/chromium_org/v8/
Makefile 32 OUTDIR ?= out
252 ENVFILE = $(OUTDIR)/environment
267 # Special target for the buildbots to use. Depends on $(OUTDIR)/Makefile
270 $(MAKE) -C "$(OUTDIR)" BUILDTYPE=$(BUILDTYPE) \
271 builddir="$(abspath $(OUTDIR))/$(BUILDTYPE)"
280 $(BUILDS): $(OUTDIR)/Makefile.$$@
281 @$(MAKE) -C "$(OUTDIR)" -f Makefile.$@ \
286 builddir="$(shell pwd)/$(OUTDIR)/$@"
288 native: $(OUTDIR)/Makefile.native
289 @$(MAKE) -C "$(OUTDIR)" -f Makefile.native
    [all...]
  /external/chromium_org/tools/gen_keyboard_overlay_data/
gen_keyboard_overlay_data.py 25 The output directory of the generated files can be changed with --outdir.
28 python gen_keyboard_overlay_data.py --outdir=tmp --js
247 parser.add_option('--outdir', dest='outdir', default=None,
420 outdir=None):
426 if outdir:
427 outpath = os.path.join(outdir, original_filename)
440 def OutputJson(keyboard_glyph_data, hotkey_data, layouts, var_name, outdir):
451 if not outdir:
452 outdir = JS_OUTDI
    [all...]
  /external/chromium_org/chrome/installer/util/prebuild/
create_string_rc.py 227 def __init__(self, name, inputs, outdir):
234 outdir: The directory into which the files will be generated.
238 self.outdir = outdir
335 with io.open(os.path.join(self.outdir, self.name + '.rc'),
388 with open(os.path.join(self.outdir, self.name + '.h'), 'wb') as outfile:
417 dest='outdir')
427 StringRcMaker(args.name, args.inputs, args.outdir).MakeFiles()
  /external/chromium_org/tools/site_compare/scrapers/firefox/
firefox2.py 76 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
81 outdir: directory to place output
138 filename = windowing.URLtoFilename(url, outdir, ".bmp")
  /external/chromium_org/tools/site_compare/scrapers/ie/
ie7.py 67 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
72 outdir: directory to place output
121 filename = windowing.URLtoFilename(url, outdir, ".bmp")
  /external/lldb/scripts/Python/
build-swig-Python.sh 341 if $SWIG -c++ -shadow -python -threads -I"${SRC_ROOT}/include" -I./. -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -MMD -MF "${swig_depend_file}.tmp" -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
349 $SWIG -c++ -shadow -python -threads -I"${SRC_ROOT}/include" -I./. -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}" || exit $?

Completed in 3598 milliseconds

1 2