HomeSort by relevance Sort by last modified time
    Searched defs:exists (Results 151 - 175 of 263) sorted by null

1 2 3 4 5 67 8 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 283 def exists(self, key, *args, **kwargs) : member in class:DB_py3k
286 return self._db.exists(key, *args, **kwargs)
524 if os.path.exists(path) :
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 196 def exists(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
197 """exists: Verify if an object exists
200 Returns: true if it exists, false if not
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 283 def exists(self, key, *args, **kwargs) : member in class:DB_py3k
286 return self._db.exists(key, *args, **kwargs)
524 if os.path.exists(path) :
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 173 assert path.exists(); // guaranteed by the getSupportJarFile call
337 if (path.exists()) {
383 // Make sure the src folder exists
507 if (!resFolder.exists()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 105 assertTrue(projectDir.getPath(), projectDir.exists());
267 if (!parent.exists()) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTest.java 127 assertTrue(imageFile.exists());
194 if (emptyFile.exists()) {
197 if (imageFile.exists()) {
241 if (emptyFile.exists()) {
244 if (imageFile.exists()) {
291 if (emptyFile.exists()) {
294 if (imageFile.exists()) {
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 66 assertTrue(mMediaFile.exists());
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 203 assertFalse(file.exists());
210 assertTrue(file.exists());
218 assertTrue(file.exists());
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 155 assertFalse(new File(TEMPPATH, "log_NoTmpDir.log").exists());
156 assertTrue(new File(HOMEPATH, "log_NoTmpDir.log").exists());
446 assertTrue(file.exists());
458 assertTrue(file.exists());
463 assertTrue(file.exists());
470 assertTrue(file.exists());
477 assertTrue(file.exists());
487 assertFalse(file.exists());
  /external/dropbear/
scp.c 832 int amt, exists, first, mask, mode, ofd, omode; local
956 exists = stat(np, &stb) == 0;
961 if (exists) {
1057 if (exists || omode != mode)
1068 if (!exists && omode != mode)
  /external/llvm/include/llvm/Support/
FileSystem.h 307 /// @returns errc::success if exists(to) && exists(from) && equivalent(to, from)
315 /// @returns errc::success if exists(to) && exists(from) && is_symlink(from),
379 /// @returns True if the file represented by status exists, false if it does
381 bool exists(file_status status);
386 /// @param result Set to true if the file represented by status exists, false if
390 error_code exists(const Twine &path, bool &result);
392 /// @brief Simpler version of exists for clients that don't need to
394 inline bool exists(const Twine &path) function in namespace:llvm::sys::fs
    [all...]
  /external/openssh/
scp.c 908 int amt, exists, first, ofd; local
1033 exists = stat(np, &stb) == 0;
1038 if (exists) {
1123 if (wrerr == NO && (!exists || S_ISREG(stb.st_mode)) &&
1129 if (exists || omode != mode)
1140 if (!exists && omode != mode)
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 60 if (mDatabaseFile.exists()) {
    [all...]
  /libcore/crypto/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 255 assertTrue(file.exists());
257 assertTrue(file.exists());
587 assertTrue(file.exists());
593 assertFalse(file(alias).exists());
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 309 public boolean exists() { method in class:Pop3Store.Pop3Folder
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 482 It is an error if themename already exists. If parent is
1229 def exists(self, item): member in class:Treeview
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 482 It is an error if themename already exists. If parent is
1229 def exists(self, item): member in class:Treeview
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 231 if (!folder.exists()) {
236 if (!subFolder.exists()) {
245 if (overwrite && file.exists()) {
254 if (!file.exists()) {
322 assertTrue(String.format("%s project not created", name), iproject.exists());
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /external/bzip2/
bzip2.c 696 /* Check whether input file still exists. Delete output file
697 only if input exists to avoid loss of data. Joerg Prante, 5
705 "%s: Deleting output file %s, if it exists.\n",
720 "%s: since input file no longer exists. Output file\n",
943 Bool exists = (tmp != NULL); local
945 return exists;
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.cc 1729 bool exists = false; local
    [all...]

Completed in 277 milliseconds

1 2 3 4 5 67 8 91011