HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 226 - 250 of 3113) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/misc/cgo/test/
issue8828.go 8 // has the same name as compiled directory.
  /prebuilts/go/darwin-x86/src/os/
path_plan9.go 12 // IsPathSeparator reports whether c is a directory separator character.
  /prebuilts/go/linux-x86/misc/cgo/test/
issue8828.go 8 // has the same name as compiled directory.
  /prebuilts/go/linux-x86/src/os/
path_plan9.go 12 // IsPathSeparator reports whether c is a directory separator character.
  /sdk/files/proguard/bin/
proguard.bat 6 rem Change current directory and drive to where the script is, to avoid
  /system/ca-certificates/
Android.mk 31 # $(3): destination directory
32 define include-prebuilt-with-destination-directory
47 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
56 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
  /test/vts/utils/python/io/
file_util.py 23 def FindFile(directory, filename):
24 '''Find a file under directory given the filename.
27 directory: string, directory path
34 directory, followlinks=False):
43 '''Remove the given directory and its contents recursively.
46 path: string, directory to delete
50 bool, True if directory is deleted.
51 False if errors occur or directory does not exist.
67 path: string, directory to mak
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 56 assert cmds[i].directory == expected[i]['wd']
67 assert cmds[0].directory == os.path.dirname(file)
88 assert cmds[i].directory == expected[i]['wd']
106 workingdir = cmds[0].directory
116 workingdir = cmd0.directory
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 48 * <p>The cache stores its data in a directory on the filesystem. This
49 * directory must be exclusive to the cache; the cache may delete or overwrite
50 * files from its directory. It is an error for multiple processes to use the
51 * same cache directory at the same time.
137 private final File directory; field in class:DiskLruCache
176 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
177 this.directory = directory;
179 this.journalFile = new File(directory, JOURNAL_FILE);
180 this.journalFileTmp = new File(directory, JOURNAL_FILE_TEMP)
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
FileUtils.java 74 result &= path.delete(); // Delete empty directory.
108 public static boolean makeDirectories(File directory, int mode) {
109 File parent = directory;
113 if (!directory.exists()) {
114 Log.v("Creating directory: " + directory.getName());
115 if (!directory.mkdirs()) {
116 Log.e("Failed to create directory.");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessBuilderTest.java 82 assertNull(pb.directory());
88 ProcessBuilder pbReturn = pb.directory(dir);
90 assertEquals(dir, pb.directory());
92 pbReturn = pb.directory(null);
94 assertNull(pb.directory());
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
DirectoryContactsCursorLoader.java 32 import com.android.dialer.searchfragment.directories.DirectoriesCursorLoader.Directory;
53 private final List<Directory> directories;
56 public DirectoryContactsCursorLoader(Context context, String query, List<Directory> directories) {
72 Directory directory = directories.get(i); local
74 if (!DirectoryCompat.isRemoteDirectoryId(directory.getId())
75 && !DirectoryCompat.isEnterpriseDirectoryId(directory.getId())) {
81 if (DirectoryCompat.isInvisibleDirectory(directory.getId())) {
90 getContentFilterUri(query, directory.getId()),
96 // directory extension doesn't appear to respect it, and sometimes returns a null phon
    [all...]
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
SearchViewUiTest.java 43 bots.directory.waitForDocument(fileName1);
86 // Wait for a file in the default directory to be listed.
87 bots.directory.waitForDocument(dirName1);
107 bots.directory.assertDocumentsCountOnList(true, 2);
108 bots.directory.assertDocumentsPresent(fileName1, fileName2);
118 bots.directory.assertPlaceholderMessageText(String.format(msg, "TEST_ROOT_0"));
  /system/security/keystore/tests/
Makefile 81 genhtml coverage.info --output-directory coverage
84 lcov --capture --directory=. --directory=.. -b . --output-file coverage.info
89 lcov --capture --directory=. --output-file coverage.info
90 genhtml coverage.info --output-directory coverage
  /test/vts/testcases/host/shell/
SampleShellTest.py 72 directory = "/data/local"
73 commands = ["cd %s && pwd" % directory, "'cd' '%s' && 'pwd'" %
74 directory, "\"cd\" \"%s\" && \"pwd\"" % directory]
78 asserts.assertEqual(results[const.STDOUT][0].strip(), directory)
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
AllTestAppsInstallSetup.java 82 throw new TargetSetupError("Failed to find a valid test zip directory.",
90 * Install all apks found in a given directory.
92 * @param directory {@link File} directory to install from.
97 void installApksRecursively(File directory, ITestDevice device)
99 if (directory == null || !directory.isDirectory()) {
100 throw new TargetSetupError("Invalid test zip directory!", device.getDeviceDescriptor());
102 CLog.d("Installing all apks found in dir %s ...", directory.getAbsolutePath());
103 File[] files = directory.listFiles()
    [all...]
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
CertificationChecksumHelper.java 88 * @param directory the parent directory containing the checksum file
91 public CertificationChecksumHelper(File directory, String buildFingerprint)
94 File file = new File(directory, NAME);
118 * Calculate checksum of test results and files in result directory and write to disk
119 * @param dir test results directory
142 * @param directory
145 private void saveToFile(File directory) throws IOException {
146 File file = new File(directory, NAME);
233 * @param directory target that is deeply searched for file
    [all...]
  /external/ImageMagick/MagickCore/
resource.c 400 *directory,
415 directory=(char *) GetImageRegistry(StringRegistryType,"temporary-path",
418 if (directory == (char *) NULL)
419 directory=GetEnvironmentValue("MAGICK_TEMPORARY_PATH");
420 if (directory == (char *) NULL)
421 directory=GetEnvironmentValue("MAGICK_TMPDIR");
422 if (directory == (char *) NULL)
423 directory=GetEnvironmentValue("TMPDIR");
425 if (directory == (char *) NULL)
426 directory=GetEnvironmentValue("TMP")
394 *directory, local
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-filepath.cc 75 // Windows CE doesn't have a current directory. You should not use
76 // the current directory in tests on Windows CE, but this at least
99 // Returns the current working directory, or "" if unsuccessful.
102 // Windows CE doesn't have a current directory, so we just return
142 // Returns a copy of the FilePath with the directory part removed.
144 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
153 // RemoveFileName returns the directory path with the filename removed.
170 // Helper functions for naming files in a directory for xml output.
172 // Given directory = "dir", base_name = "test", number = 0,
176 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]
  /external/googletest/googletest/src/
gtest-filepath.cc 75 // Windows CE doesn't have a current directory. You should not use
76 // the current directory in tests on Windows CE, but this at least
98 // Returns the current working directory, or "" if unsuccessful.
101 // Windows CE doesn't have a current directory, so we just return
149 // Returns a copy of the FilePath with the directory part removed.
151 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
160 // RemoveFileName returns the directory path with the filename removed.
177 // Helper functions for naming files in a directory for xml output.
179 // Given directory = "dir", base_name = "test", number = 0,
183 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]
  /external/libusb/libusb/os/
haiku_pollfs.cpp 11 #include <Directory.h>
65 BDirectory directory; local
66 if (entry.IsDirectory() && directory.SetTo(ref) >= B_OK) {
69 while (directory.GetNextEntry(&entry) >= B_OK) {
191 if (ref->directory != fNode.node) {
303 ino_t directory; local
306 message->FindInt64("directory", &directory) < B_OK ||
310 entry_ref ref(device, directory, name);
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 75 // Windows CE doesn't have a current directory. You should not use
76 // the current directory in tests on Windows CE, but this at least
98 // Returns the current working directory, or "" if unsuccessful.
101 // Windows CE doesn't have a current directory, so we just return
149 // Returns a copy of the FilePath with the directory part removed.
151 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
160 // RemoveFileName returns the directory path with the filename removed.
177 // Helper functions for naming files in a directory for xml output.
179 // Given directory = "dir", base_name = "test", number = 0,
183 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-filepath.cc 74 // Windows CE doesn't have a current directory. You should not use
75 // the current directory in tests on Windows CE, but this at least
97 // Returns the current working directory, or "" if unsuccessful.
100 // Windows CE doesn't have a current directory, so we just return
140 // Returns a copy of the FilePath with the directory part removed.
142 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
151 // RemoveFileName returns the directory path with the filename removed.
168 // Helper functions for naming files in a directory for xml output.
170 // Given directory = "dir", base_name = "test", number = 0,
174 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 76 // Windows CE doesn't have a current directory. You should not use
77 // the current directory in tests on Windows CE, but this at least
100 // Returns the current working directory, or "" if unsuccessful.
103 // Windows CE doesn't have a current directory, so we just return
144 // Returns a copy of the FilePath with the directory part removed.
146 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
155 // RemoveFileName returns the directory path with the filename removed.
172 // Helper functions for naming files in a directory for xml output.
174 // Given directory = "dir", base_name = "test", number = 0,
178 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]
  /external/protobuf/gtest/src/
gtest-filepath.cc 75 // Windows CE doesn't have a current directory. You should not use
76 // the current directory in tests on Windows CE, but this at least
99 // Returns the current working directory, or "" if unsuccessful.
102 // Windows CE doesn't have a current directory, so we just return
142 // Returns a copy of the FilePath with the directory part removed.
144 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
153 // RemoveFileName returns the directory path with the filename removed.
170 // Helper functions for naming files in a directory for xml output.
172 // Given directory = "dir", base_name = "test", number = 0,
176 FilePath FilePath::MakeFileName(const FilePath& directory,
    [all...]

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>