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

  /external/u-boot/tools/patman/
tools.py 12 outdir = None variable
27 preserve: a Boolean. If outdir above is None and preserve is False, the
33 global outdir, preserve_outdir
37 outdir = dirname
38 if not os.path.isdir(outdir):
40 os.makedirs(outdir)
43 (outdir, err.strerror))
44 tout.Debug("Using output directory '%s'" % outdir)
46 outdir = tempfile.mkdtemp(prefix='binman.')
47 tout.Debug("Using temporary directory '%s'" % outdir)
    [all...]
  /external/python/apitools/apitools/gen/
gen_client_lib.py 65 def __init__(self, discovery_doc, client_info, names, root_package, outdir,
72 self.__outdir = outdir
155 def outdir(self): member in class:DescriptorGenerator
  /external/v8/
Makefile 30 OUTDIR ?= out
293 ENVFILE = $(OUTDIR)/environment
305 # Special target for the buildbots to use. Depends on $(OUTDIR)/Makefile
308 $(MAKE) -C "$(OUTDIR)" BUILDTYPE=$(BUILDTYPE) \
309 builddir="$(abspath $(OUTDIR))/$(BUILDTYPE)"
318 $(BUILDS): $(OUTDIR)/Makefile.$$@
319 @$(MAKE) -C "$(OUTDIR)" -f Makefile.$@ \
323 builddir="$(shell pwd)/$(OUTDIR)/$@"
325 native: $(OUTDIR)/Makefile.native
326 @$(MAKE) -C "$(OUTDIR)" -f Makefile.native
    [all...]
  /external/mesa3d/src/compiler/glsl/tests/lower_jumps/
create_test_cases.py 35 outdir = "." variable
302 test_file = os.path.join(outdir, '{0}.opt_test'.format(test_name))
309 expected_file = os.path.join(outdir, '{0}.opt_test.expected'.format(test_name))
649 parser.add_argument('--outdir',
654 outdir = args.outdir variable
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
genmk.c 61 static char *outdir="."; variable
304 outdir = t;
510 if ( strcmp(outdir, ".")!=0 ) printf(" -I%s", outdir);
514 if ( strcmp(outdir,".")!=0 ) printf(" -o %s", outdir);
529 if ( strcmp(outdir,".")!=0 ) printf(" -o %s", outdir);
535 if ( strcmp(outdir,".")!=0 ) printf(" -out-dir %s", outdir);
    [all...]
genmk_old.c 52 static char *outdir="."; variable
184 outdir = t;
367 if ( strcmp(outdir, ".")!=0 ) printf(" -I%s", outdir);
371 if ( strcmp(outdir,".")!=0 ) printf(" -o %s", outdir);
386 if ( strcmp(outdir,".")!=0 ) printf(" -o %s", outdir);
638 if ( strcmp(outdir, ".")!=0 ) printf(" %s*%s", DIR(), OBJ_FILE_SUFFIX);
643 if ( strcmp(outdir, ".")!=0 ) printf(" %s*%s", DIR(), OBJ_FILE_SUFFIX);
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
fiptool.c 858 char outdir[PATH_MAX] = { 0 }; local
915 snprintf(outdir, sizeof(outdir), "%s", optarg);
930 if (outdir[0] != '\0')
931 if (chdir(outdir) == -1)
932 log_err("chdir %s", outdir);
  /external/e2fsprogs/e2fsck/
rehash.c 256 static errcode_t alloc_size_dir(ext2_filsys fs, struct out_dir *outdir,
261 if (outdir->max) {
262 new_mem = realloc(outdir->buf, blocks * fs->blocksize);
265 outdir->buf = new_mem;
266 new_mem = realloc(outdir->hashes,
270 outdir->hashes = new_mem;
272 outdir->buf = malloc(blocks * fs->blocksize);
273 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t));
274 outdir->num = 0;
276 outdir->max = blocks
750 struct out_dir *outdir; member in struct:write_dir_struct
860 struct out_dir outdir = { 0, 0, 0, 0 }; local
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 37 private File outdir; // root of output field in class:CodeMangler
210 outdir = new File(outname);
212 outdir = outdir.getCanonicalFile();
217 if (!outdir.exists()) {
218 throw new IllegalArgumentException("Output directory '" + outdir.getAbsolutePath() + "' does not exist.");
219 } else if (!outdir.isDirectory()) {
220 throw new IllegalArgumentException("Output path '" + outdir.getAbsolutePath() + "' is not a directory.");
222 if (verbose) System.out.println("outdir: " + outdir.getAbsolutePath())
    [all...]
  /external/error_prone/checkerframework/
dataflow-2.5.3.jar 

Completed in 3521 milliseconds