Searched defs:exists (Results 26 - 50 of 196) sorted by relevance

12345678

/external/jsoncpp/scons-tools/
H A Dtargz.py81 def exists(env): function
/external/mesa3d/scons/
H A Dcrossmingw.py177 def exists(env): function
H A Dcustom.py119 assert os.path.exists(mod.__file__)
179 if subprocess.call(["pkg-config", "--exists", ' '.join(modules)]) != 0:
321 def exists(env): function
H A Dgallium.py50 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/
H A Dnanopb.py62 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/
H A DFileSystem.java32 * 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/distutils/
H A Dfile_util.py36 if os.path.exists(dst):
76 otherwise, it must be a filename. (If the file exists, it will be
98 # XXX if the destination file already exists, we clobber it if
101 # should probably blow up if destination exists and we would be
140 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
150 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
180 from os.path import exists, isfile, isdir, basename, dirname namespace
194 elif exists(dst):
196 "can't move '%s': destination '%s' already exists" %
/external/python/cpython3/Lib/distutils/
H A Dfile_util.py33 if os.path.exists(dst):
71 the file exists, it will be ruthlessly clobbered.) If 'preserve_mode'
93 # XXX if the destination file already exists, we clobber it if
96 # should probably blow up if destination exists and we would be
135 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
145 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
177 from os.path import exists, isfile, isdir, basename, dirname namespace
191 elif exists(dst):
193 "can't move '%s': destination '%s' already exists" %
/external/selinux/libsemanage/src/
H A Ddatabase_policydb.h81 /* Check if a record exists */
82 record_policydb_table_exists_t exists; member in struct:record_policydb_table
/external/v8/tools/testrunner/local/
H A Dutils.py30 from os.path import exists namespace
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dtouch_device.py73 def exists(self): member in class:TouchDevice
74 """Indicate whether this device exists or not.
/external/autotest/server/hosts/
H A Dbase_label_unittest.py23 def exists(self, host): member in class:TestBaseLabel
24 return host.exists
78 def __init__(self, exists=True, afe_host=None):
80 self.exists = exists
101 self.assertEqual(self.test_base_label.get(MockHost(exists=True)),
104 self.assertEqual(self.test_base_label.get(MockHost(exists=False)),
/external/deqp/framework/delibs/decpp/
H A DdeSharedPtr.cpp44 Object (bool& exists) argument
45 : m_exists(exists)
62 DerivedObject (bool& exists) argument
63 : Object(exists)
71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) argument
73 , m_exists (exists)
107 WeakPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) argument
109 , m_exists (exists)
140 SharedPtr<Object> makeObject (bool& exists) argument
142 return SharedPtr<Object>(new Object(exists));
187 bool exists = false; local
199 bool exists = false; local
216 bool exists = false; local
224 bool exists = false; local
233 bool exists = false; local
245 bool exists = false; local
260 bool exists = false; local
295 bool exists = false; local
320 bool exists = false; local
336 bool exists = false; local
349 bool exists = false; local
363 bool exists = false; local
392 bool exists = false; local
411 bool exists = false; local
429 bool exists = false; local
[all...]
/external/drm_hwcomposer/
H A Ddrmconnector.cpp88 bool exists = false; local
92 exists = true;
96 if (exists)
/external/fio/doc/
H A Dconf.py68 from os.path import exists, dirname, join namespace
71 if not exists(version_file):
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java91 * Return true if there exists a file or directory at the specified path
94 * @return true if the file/directory exists
97 public boolean exists(String path); method in interface:FileSystem

Completed in 668 milliseconds

12345678