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

1 23 4 5 6 7 8 91011>>

  /external/icu4c/samples/
readme.txt 4 This directory contains sample code
5 Below is a short description of the contents of this directory.
74 - type 'make all-samples' from this directory
  /external/proguard/src/proguard/io/
DirectoryWriter.java 30 * directory.
46 * @param baseFile the base directory to which all files will be written.
67 File directory = getFile(dataEntry); local
68 if (!directory.exists() &&
69 !directory.mkdirs())
71 throw new IOException("Can't create directory [" + directory.getPath() + "]");
106 throw new IOException("Can't create directory [" + parentDirectory.getPath() + "]");
  /external/webkit/Source/WebKit2/UIProcess/Plugins/gtk/
PluginInfoStoreGtk.cpp 44 Vector<String> PluginInfoStore::pluginPathsInDirectory(const String& directory)
  /system/extras/ext4_utils/
make_ext4fs.h 40 int make_ext4fs_internal(int fd, const char *directory,
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-filepath.h 48 // FilePath - a class for file and directory pathname manipulation which
50 // Used for helper functions for naming files in a directory for xml output.
54 // a directory, otherwise it is assumed to represent a file. In either case,
55 // it may or may not represent an actual file or directory in the file system.
84 // Returns the current working directory, or "" if unsuccessful.
87 // Given directory = "dir", base_name = "test", number = 0,
91 static FilePath MakeFileName(const FilePath& directory,
96 // Given directory = "dir", relative_path = "test.xml",
99 static FilePath ConcatPaths(const FilePath& directory,
103 // will be directory/base_name.extension o
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 48 // FilePath - a class for file and directory pathname manipulation which
50 // Used for helper functions for naming files in a directory for xml output.
54 // a directory, otherwise it is assumed to represent a file. In either case,
55 // it may or may not represent an actual file or directory in the file system.
84 // Returns the current working directory, or "" if unsuccessful.
87 // Given directory = "dir", base_name = "test", number = 0,
91 static FilePath MakeFileName(const FilePath& directory,
96 // Given directory = "dir", relative_path = "test.xml",
99 static FilePath ConcatPaths(const FilePath& directory,
103 // will be directory/base_name.extension o
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 48 // FilePath - a class for file and directory pathname manipulation which
50 // Used for helper functions for naming files in a directory for xml output.
54 // a directory, otherwise it is assumed to represent a file. In either case,
55 // it may or may not represent an actual file or directory in the file system.
84 // Returns the current working directory, or "" if unsuccessful.
87 // Given directory = "dir", base_name = "test", number = 0,
91 static FilePath MakeFileName(const FilePath& directory,
96 // Given directory = "dir", relative_path = "test.xml",
99 static FilePath ConcatPaths(const FilePath& directory,
103 // will be directory/base_name.extension o
    [all...]
  /external/openssl/crypto/
LPdir_unix.c 65 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
69 if (ctx == NULL || directory == NULL)
86 (*ctx)->dir = opendir(directory);
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 48 // FilePath - a class for file and directory pathname manipulation which
50 // Used for helper functions for naming files in a directory for xml output.
54 // a directory, otherwise it is assumed to represent a file. In either case,
55 // it may or may not represent an actual file or directory in the file system.
84 // Returns the current working directory, or "" if unsuccessful.
87 // Given directory = "dir", base_name = "test", number = 0,
91 static FilePath MakeFileName(const FilePath& directory,
96 // Given directory = "dir", relative_path = "test.xml",
99 static FilePath ConcatPaths(const FilePath& directory,
103 // will be directory/base_name.extension o
    [all...]
  /frameworks/base/packages/DefaultContainerService/jni/
com_android_defcontainer_MeasurementUtils.cpp 32 static jlong native_measureDirectory(JNIEnv* env, jobject clazz, jstring directory) {
35 const char* path = env->GetStringUTFChars(directory, NULL);
48 env->ReleaseStringUTFChars(directory, path);
  /libcore/luni/src/test/java/libcore/dalvik/system/
PathClassLoaderTest.java 46 private File makeTempFile(File directory, String name) throws IOException {
47 directory.mkdirs();
48 File result = new File(directory, name);
  /packages/apps/Email/src/org/apache/commons/io/
FileUtils.java 52 * <li>make a directory including parent directories
118 * An exception is thrown if the file object exists but is a directory.
124 * @throws IOException if the file object is a directory
131 throw new IOException("File '" + file + "' exists but is a directory");
145 * creating the parent directory if it does not exist.
150 * The parent directory will be created if it does not exist.
152 * An exception is thrown if the file object exists but is a directory.
154 * An exception is thrown if the parent directory cannot be created.
158 * @throws IOException if the file object is a directory
160 * @throws IOException if a parent directory needs creating but that fails
    [all...]
  /external/bluetooth/glib/gmodule/
gmodule-ar.c 175 _g_module_build_path (const gchar *directory,
178 if (directory && *directory) {
180 return g_strconcat (directory, "/", module_name, NULL);
182 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
  /external/webkit/Tools/BuildSlaveSupport/
build-launcher-dmg 54 print "Removing previous temp source directory (if any)...\n";
56 die "Removing previous temp source directory failed" if $?;
58 print "Making a new temp source directory...\n";
60 die "Making a new temp source directory failed" if $?;
62 print "Copying WebKit.app to temp source directory...\n";
64 die "Copying WebKit.app to temp source directory failed" if $?;
66 print "Copying Drosera.app to temp source directory...\n";
68 die "Copying Drosera.app to temp source directory failed" if $?;
74 print "Removing temp source directory...\n";
76 die "Removing temp source directory failed" if $?
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpResponseCache.java 47 * in the {@link Context#getCacheDir() application-specific cache directory} of
75 * external storage directory. <strong>There are no access controls on the
76 * external storage directory so it should not be used for caches that could
79 * during use. Retrieve the external cache directory using {@link
159 private HttpResponseCache(File directory, long maxSize) throws IOException {
160 this.delegate = new libcore.net.http.HttpResponseCache(directory, maxSize);
176 * @param directory the directory to hold cache data.
179 * @throws IOException if {@code directory} cannot be used for this cache.
183 public static HttpResponseCache install(File directory, long maxSize) throws IOException
    [all...]
  /external/webkit/Source/WebCore/platform/win/
FileSystemWin.cpp 170 String directory = String::adopt(buffer); local
173 directory = pathByAppendingComponent(directory, companyNameDirectory + bundleName());
174 if (!makeAllDirectories(directory))
177 return directory;
188 String directory = storageDirectory(pathIdentifier);
189 directories.add(pathIdentifier, directory);
191 return directory;
328 Vector<String> listDirectory(const String& directory, const String& filter)
332 PathWalker walker(directory, filter)
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmime.c 96 typedef int (*XdgDirectoryFunc) (const char *directory,
137 xdg_mime_init_from_directory (const char *directory)
142 assert (directory != NULL);
144 file_name = malloc (strlen (directory) + strlen ("/mime/mime.cache") + 1);
145 strcpy (file_name, directory); strcat (file_name, "/mime/mime.cache");
164 file_name = malloc (strlen (directory) + strlen ("/mime/globs2") + 1);
165 strcpy (file_name, directory); strcat (file_name, "/mime/globs2");
174 file_name = malloc (strlen (directory) + strlen ("/mime/globs") + 1);
175 strcpy (file_name, directory); strcat (file_name, "/mime/globs");
187 file_name = malloc (strlen (directory) + strlen ("/mime/magic") + 1)
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp 97 * Sets the current path to the directory WebKit will write Web
100 * @param path the new database directory path
116 * Returns directory path where web database is stored.
134 * Sets directory where to store icon database, opening or closing database.
136 * @param directory where to store icon database, must be
141 Eina_Bool ewk_settings_icon_database_path_set(const char *directory)
145 if (directory) {
148 if (stat(directory, &st)) {
149 ERR("could not stat(%s): %s", directory, strerror(errno));
154 ERR("not a directory: %s", directory)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java 83 assertNull(pb.directory());
89 ProcessBuilder pbReturn = pb.directory(dir);
91 assertEquals(dir, pb.directory());
93 pbReturn = pb.directory(null);
95 assertNull(pb.directory());
150 pb.directory(new File(System.getProperty("java.home") + File.separator
  /external/bluetooth/glib/gio/fam/
fam-helper.c 39 gboolean directory; member in struct:_fam_sub
100 if (sub->directory)
210 gboolean directory,
231 sub->directory = directory;
234 if (directory)
  /frameworks/base/tools/obbtool/
mkobb.sh 20 # Directory where we should temporarily mount the OBB loopback to copy files
151 echo " -d <directory> Use <directory> as input for OBB files"
169 -d) directory=$2; shift 2;;
180 if [ "${directory}x" = "x" -o ! -d "${directory}" ]; then \
181 echo "ERROR: Must specify valid input directory"
205 echo "ERROR: Output directory does not exist: ${outdir}"
214 block_count=`du -s --apparent-size --block-size=512 ${directory} | awk '{ print $1; }'`
216 echo "ERROR: Couldn't read size of input directory ${directory}
    [all...]
  /development/ide/emacs/
android-compile.el 49 (defun android-makefile-exists-p (directory)
50 "Return t if an Android makefile exists in DIRECTORY."
52 (or (file-exists-p (concat directory "Android.mk"))
53 (file-exists-p (concat directory "Makefile"))))
57 Makefiles are named Android.mk except in the root directory where
59 TOPDIR is the root directory of the build.
63 ;; TODO: Could check that topdir is the start of default-directory.
65 (error "Topdir invalid %s for current dir %s" topdir default-directory))
66 (let ((default-directory default-directory)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/
filereader.py 130 def _process_directory(self, directory):
131 """Process all files in the given directory, recursively.
134 directory: A directory path.
137 for dir_path, dir_names, file_names in os.walk(directory):
143 """Process the given file and directory paths.
146 paths: A list of file and directory paths.
151 self._process_directory(directory=path)
  /external/libxslt/libxslt/
security.c 273 * if stat succeeds and the file is a directory,
312 char *directory; local
324 directory = xmlParserGetDirectory (path);
326 if (directory != NULL) {
327 ret = xsltCheckFilename(directory);
330 * The directory doesn't exist check for creation
335 ret = check(sec, ctxt, directory);
338 "Directory creation for %s refused\n",
340 xmlFree(directory);
344 ret = xsltCheckWritePath(sec, ctxt, directory);
    [all...]
  /external/bison/
GNUmakefile 49 @echo There seems to be no Makefile in this directory.
56 # directory in parallel. This is necessary in case someone tries to

Completed in 1397 milliseconds

1 23 4 5 6 7 8 91011>>