HomeSort by relevance Sort by last modified time
    Searched defs:exists (Results 26 - 50 of 1081) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
15 def exists(path): function
16 """Test whether a path exists. Returns False for broken symbolic links"""
  /prebuilts/gdb/linux-x86/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
15 def exists(path): function
16 """Test whether a path exists. Returns False for broken symbolic links"""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
15 def exists(path): function
16 """Test whether a path exists. Returns False for broken symbolic links"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
15 def exists(path): function
16 """Test whether a path exists. Returns False for broken symbolic links"""
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
PackageUtil.java 28 /** Returns true if a package with the given name exists on the device */
29 public static boolean exists(ITestDevice device, String packageName) method in class:PackageUtil
  /external/testng/src/test/java/test/reports/
ReportTest.java 35 Assert.assertTrue(f.exists());
64 Assert.assertTrue(f.exists(), "Expected to find file:" + f);
65 Assert.assertTrue(f2.exists(), "Expected to find file:" + f2);
88 Assert.assertTrue(f1.exists());
89 Assert.assertTrue(f2.exists());
95 if (f.exists()) {
111 Assert.assertFalse(fileA.exists());
112 Assert.assertFalse(fileB.exists());
116 Assert.assertTrue(fileA.exists(), fileA + " wasn't created");
117 Assert.assertTrue(fileB.exists(), fileB + " wasn't created")
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
ZipUtilTest.java 38 if (file != null && file.exists()) {
102 assertTrue(extractedParentDir.exists());
103 assertTrue(extractedChildDir.exists());
104 assertTrue(extractedSubFile.exists());
131 assertTrue(extractedFile1.exists());
132 assertTrue(extractedFile2.exists());
  /system/timezone/distro/core/src/test/com/android/timezone/distro/
FileUtilsTest.java 130 File exists = new File(dir, "exists"); local
131 assertTrue(exists.mkdir());
132 assertTrue(exists.setReadable(true /* readable */, true /* ownerOnly */));
133 assertTrue(exists.setExecutable(true /* readable */, true /* ownerOnly */));
134 FileUtils.ensureDirectoriesExist(exists, true /* makeWorldReadable */);
135 assertDirExistsAndIsAccessible(exists, false /* requireWorldReadable */);
138 assertFalse(subDir.exists());
168 assertFalse(toCreate.exists());
177 assertTrue(exists1.exists());
    [all...]
  /system/timezone/distro/installer/src/test/com/android/timezone/distro/installer/
TimeZoneDistroInstallerTest.java 96 if (tempDir.exists()) {
491 assertFalse(workingDir.exists());
492 assertFalse(oldStagedDataDir.exists());
612 assertTrue(testInstallDir.exists());
615 assertTrue(stagedTzDataDir.exists());
619 assertTrue(distroVersionFile.exists());
622 assertTrue(tzdataFile.exists());
625 assertTrue(icuFile.exists());
628 assertTrue(tzLookupFile.exists());
656 assertFalse(workingDir.exists());
    [all...]
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
SearchBot.java 71 assertTrue(searchView.exists());
94 assertTrue(textField.exists());
102 assertTrue(textField.exists());
106 public void assertInputExists(boolean exists)
108 assertEquals(exists, findSearchViewTextField().exists());
  /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"))))
70 (not (android-makefile-exists-p default-directory)))
75 (when (not (android-makefile-exists-p default-directory))
150 (unless (file-exists-p (concat topdir "buildspec.mk"))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
23 def exists(path): function
24 """Test whether a path exists. Returns False for broken symbolic links"""
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
TypeConverter.java 30 * Determines if the given data node exists in a ClearSilver compatible way.
32 public static boolean exists(Data data) { method in class:TypeConverter
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
NumberValue.java 51 public boolean exists() { method in class:NumberValue
  /external/mesa3d/scons/
custom.py 119 assert os.path.exists(mod.__file__)
179 if subprocess.call(["pkg-config", "--exists", ' '.join(modules)]) != 0:
321 def exists(env): function
gallium.py 50 if os.path.islink(target) or os.path.exists(target):
150 """Check whether this program exists."""
661 def exists(env): function
  /external/nanopb-c/tests/site_scons/site_tools/
nanopb.py 62 if os.path.exists(p1):
101 if os.path.exists(basename + '.options'):
124 def exists(env): function
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 32 * with {@link #exists} does not guarantee that {@link FileNotFoundException} will not be thrown.
69 if (!file.delete() && file.exists()) {
74 @Override public boolean exists(File file) throws IOException {
75 return file.exists();
120 /** Deletes {@code file} if it exists. Throws if the file exists and cannot be deleted. */
123 /** Returns true if {@code file} exists on the file system. */
124 boolean exists(File file) throws IOException; method in interface:FileSystem
  /external/python/cpython2/Lib/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
23 def exists(path): function
24 """Test whether a path exists. Returns False for broken symbolic links"""
  /external/python/cpython3/Lib/
genericpath.py 9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
16 def exists(path): function
17 """Test whether a path exists. Returns False for broken symbolic links"""
  /external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
CheckingBundleListener.java 54 boolean exists(String bundleName) { method in class:CheckingBundleListener
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarkerFactory.java 81 public boolean exists(String name) { method in class:BasicMarkerFactory
  /external/testng/src/test/java/test/ant/
TestCommandLineArgs.java 45 assert file.exists();
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
OldApkReadTest.java 31 assertTrue(apkFile.exists());
ZipTestUtils.java 85 assertFalse(result.exists());

Completed in 390 milliseconds

12 3 4 5 6 7 8 91011>>