HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 51 - 75 of 1488) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jemalloc/bin/
jemalloc-config.in 12 --prefix : Print installation directory prefix.
13 --bindir : Print binary installation directory.
14 --datadir : Print data installation directory.
15 --includedir : Print include installation directory.
16 --libdir : Print library installation directory.
17 --mandir : Print manual page installation directory.
  /external/jemalloc_new/bin/
jemalloc-config.in 12 --prefix : Print installation directory prefix.
13 --bindir : Print binary installation directory.
14 --datadir : Print data installation directory.
15 --includedir : Print include installation directory.
16 --libdir : Print library installation directory.
17 --mandir : Print manual page installation directory.
  /external/parameter-framework/upstream/test/tmpfile/windows/
TmpFile.cpp 73 char directory[] = "."; local
76 if (::GetTempFileName(directory, prefix, 0, path) == 0) {
79 auto message = std::string() + "Could not create a tmp file in \"" + directory +
  /external/tensorflow/tensorflow/compiler/xla/
protobuf_util.cc 42 const string& directory, const string& file_name) {
44 TF_RETURN_IF_ERROR(env->RecursivelyCreateDir(directory));
46 const string path = tensorflow::io::JoinPath(directory, safe_file_name);
  /external/flatbuffers/samples/
csharp_sample.sh 18 # and `flatc` to be built (using `cmake` in the root directory).
25 echo Error: This script must be run from inside the $sampledir directory.
26 echo You executed it from the $currentdir directory.
31 # root `/flatbuffers` directory.
38 $rootdir directory.
dart_sample.sh 18 # and `flatc` to be built (using `cmake` in the root directory).
25 echo Error: This script must be run from inside the $sampledir directory.
26 echo You executed it from the $currentdir directory.
33 # root `/flatbuffers` directory.
40 $rootdir directory.
  /external/conscrypt/common/src/main/java/org/conscrypt/
FileClientSessionCache.java 38 * underlying directory at a time.
61 /** Directory to store session files in. */
62 final File directory; field in class:FileClientSessionCache.Impl
79 * Constructs a new cache backed by the given directory.
81 Impl(File directory) throws IOException {
82 boolean exists = directory.exists();
83 if (exists && !directory.isDirectory()) {
84 throw new IOException(directory + " exists but is not a directory.");
94 initialFiles = directory.list()
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
FileClientSessionCache.java 39 * underlying directory at a time.
64 /** Directory to store session files in. */
65 final File directory; field in class:FileClientSessionCache.Impl
82 * Constructs a new cache backed by the given directory.
84 Impl(File directory) throws IOException {
85 boolean exists = directory.exists();
86 if (exists && !directory.isDirectory()) {
87 throw new IOException(directory + " exists but is not a directory.");
97 initialFiles = directory.list()
    [all...]
  /external/grpc-grpc/third_party/nanopb/tests/
Makefile 15 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/io/
FileMatchersTest.java 13 private File directory; field in class:FileMatchersTest
18 directory = File.createTempFile("myDir", "");
19 directory.delete();
20 directory.mkdirs();
22 file = new File(directory, "myFile");
27 assertMatches("matches existing directory", FileMatchers.anExistingDirectory(), directory);
34 assertMatches("matches existing directory", FileMatchers.anExistingFileOrDirectory(), directory);
40 assertDoesNotMatch("doesn't match existing directory", FileMatchers.anExistingFile(), directory)
    [all...]
  /external/nanopb-c/tests/
Makefile 15 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info
  /external/python/mock/
mock.wpr 7 proj.directory-list = [{'dirloc': loc('.'),
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/
not_found.s 4 # CHECK: junk123.s: {{[N|n]}}o such file or directory
  /external/webrtc/talk/build/
common.gypi 39 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-7-openjdk-amd64\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
  /external/dng_sdk/source/
dng_preview.cpp 53 dng_preview_tag_set (dng_tiff_directory &directory,
63 dng_preview_tag_set::dng_preview_tag_set (dng_tiff_directory &directory,
67 : dng_basic_tag_set (directory, ifd)
105 directory.Add (&fApplicationNameTag);
112 directory.Add (&fApplicationVersionTag);
119 directory.Add (&fSettingsNameTag);
126 directory.Add (&fSettingsDigestTag);
133 directory.Add (&fColorSpaceTag);
140 directory.Add (&fDateTimeTag);
147 directory.Add (&fRawToPreviewGainTag)
    [all...]
  /external/tensorflow/tensorflow/lite/tutorials/
dataset.py 67 def download(directory, filename):
69 filepath = os.path.join(directory, filename)
72 if not tf.gfile.Exists(directory):
73 tf.gfile.MakeDirs(directory)
86 def dataset(directory, images_file, labels_file):
89 images_file = download(directory, images_file)
90 labels_file = download(directory, labels_file)
114 def train(directory):
116 return dataset(directory, 'train-images-idx3-ubyte',
120 def test(directory)
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/
Archiver.java 61 * {@code directory}.
66 * @param directory the directory that contains the files to archive.
70 public void create(String format, File target, File directory) throws IOException, ArchiveException {
74 create(format, c, directory);
79 create(format, o, directory);
86 * {@code directory}.
91 * @param directory the directory that contains the files to archive.
95 public void create(String format, OutputStream target, File directory) throws IOException, ArchiveException
    [all...]
  /external/adhd/defs/
make.mk 24 # mkdir: Creates a directory, and all its parents, if it does not exist.
29 # remake: Gnu Make function which will create the build directory,
31 # The recursive make is performed in the build directory.
40 # Directory relative from the root of the source tree. REL_DIR is
42 # directory.
46 # The directory containing the sources for the target directory
48 # source directory. It has the same value as VPATH.
52 # The build directory which is currently being built. This is the
53 # same 'pwd', and the directory in which Make is building
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
clean.py 19 "base build directory (default: 'build.build-base')"),
21 "build directory for all modules (default: 'build.build-lib')"),
23 "temporary build directory (default: 'build.build-temp')"),
25 "build directory for scripts (default: 'build.build-scripts')"),
27 "temporary directory for built distributions"),
52 # remove the build/temp.<plat> directory (unless it's already
62 for directory in (self.build_lib,
65 if os.path.exists(directory):
66 remove_tree(directory, dry_run=self.dry_run)
69 directory)
    [all...]
  /external/autotest/site_utils/autoupdate/lib/
test_control.py 45 def dump_autotest_control_file(test, env, control_code, directory):
51 @param directory: the directory to dump the control file to
56 if not os.path.exists(directory):
57 os.makedirs(directory)
62 control_file = os.path.join(directory,
  /external/cldr/tools/java/org/unicode/cldr/util/
StringIterables.java 19 * for (String s : FileUtilities.in(directory,name)) {
32 * for (String s : FileUtilities.in(directory,name)) {
45 * for (String s : FileUtilities.in(directory,name)) {
52 public static Iterable<String> in(String directory, String file) {
53 return With.in(new FileLines(FileReaders.openFile(directory, file, CldrUtility.UTF8)));
58 * for (String s : FileUtilities.in(directory,name)) {
71 * for (String s : FileUtilities.in(directory,name)) {
78 public static Iterable<String> in(String directory, String file, Charset charset) {
79 return With.in(new FileLines(FileReaders.openFile(directory, file, charset)));
  /external/deqp/scripts/opengl/
gen_es_static_library.py 33 directory = EGL_DIR,
  /external/google-breakpad/src/client/linux/handler/
minidump_descriptor.h 41 // - Writing a full minidump to a file in a given directory (the actual path,
42 // inside the directory, is determined by this class).
56 explicit MinidumpDescriptor(const string& directory)
59 directory_(directory),
62 assert(!directory.empty());
87 string directory() const { return directory_; } function in class:google_breakpad::MinidumpDescriptor
116 // The directory where the minidump should be generated.
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
FileFilter.java 50 * @param directory
51 * the directory to scan
56 public List<String> getFileNames(final File directory) throws IOException {
57 return FileUtils.getFileNames(directory, getIncludes(), getExcludes(),
64 * @param directory
65 * the directory to scan
70 public List<File> getFiles(final File directory) throws IOException {
71 return FileUtils.getFiles(directory, getIncludes(), getExcludes());
  /external/libcups/cups/
dir.h 2 * Public directory definitions for CUPS.
4 * This set of APIs abstracts enumeration of directory entries.
41 typedef struct _cups_dir_s cups_dir_t; /**** Directory type ****/
43 typedef struct cups_dentry_s /**** Directory entry type ****/
55 extern cups_dir_t *cupsDirOpen(const char *directory) _CUPS_API_1_2;

Completed in 992 milliseconds

1 23 4 5 6 7 8 91011>>