Searched defs:exists (Results 51 - 75 of 196) sorted by relevance

12345678

/external/mockftpserver/tags/2.4/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.5/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/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/internal/io/
H A DInMemoryFileSystem.java116 @Override public boolean exists(File file) throws IOException { method in class:InMemoryFileSystem
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DFaultyFileSystem.java61 @Override public boolean exists(File file) throws IOException { method in class:FaultyFileSystem
62 return delegate.exists(file);
/external/python/cpython2/Doc/tools/
H A Drstlint.py18 from os.path import join, splitext, abspath, exists namespace
167 if not exists(path):
/external/python/cpython3/Doc/tools/
H A Drstlint.py16 from os.path import join, splitext, abspath, exists namespace
167 if not exists(path):
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
H A DFsFile.java8 boolean exists(); method in interface:FsFile
H A DFileFsFile.java29 public boolean exists() { method in class:FileFsFile
30 return file.exists();
/external/selinux/libselinux/src/
H A Dinit.c58 int exists = 0; local
66 return 1; /* Fail as if it exists */
72 exists = 1;
80 return exists;
/external/selinux/libsemanage/src/
H A Dpolicy_components.c29 int exists; local
34 if (dst_dtable->exists(handle, dst->dbase, key, &exists) < 0)
37 if (!exists) {
H A Ddatabase.h106 /* Check if a record exists */
107 int (*exists) (struct semanage_handle * handle, member in struct:dbase_table
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
H A DLoggerRepository.java78 public abstract Logger exists(String name); method in interface:LoggerRepository
/external/autotest/client/site_tests/security_ASLR/
H A Dsecurity_ASLR.py100 def exists(self): member in class:UpstartProcess
114 def exists(self): member in class:SystemdProcess
183 return [p for p in self._PROCESS_LIST if p.exists()]
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.cpp171 bool FilePath::exists (void) const function in class:de::FilePath
262 if (dirPath.exists())
263 throw std::runtime_error("Destination exists already");
264 else if (!parentPath.exists())
277 if (curPath.exists())
278 throw std::runtime_error("Destination exists already");
280 while (!curPath.exists())
/external/devlib/devlib/module/
H A Dcgroups.py99 def exists(self, name): member in class:Controller
234 def exists(self): member in class:CGroup
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DMediaStoreThumbFetcher.java100 public boolean exists(File file) { method in class:MediaStoreThumbFetcher.FileService
101 return file.exists();
141 if (service.exists(file) && service.length(file) > 0) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUData.java94 public static boolean exists(final String resourceName) { method in class:ICUData
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUData.java92 public static boolean exists(final String resourceName) { method in class:ICUData
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DValue.java105 * Whether this value exists. Literals always return true, but variable references will return
108 public abstract boolean exists(); method in class:Value
219 * exists) and to the value of the variable.
232 return exists() == otherValue.exists()
/external/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc219 int exists = PyDict_Contains(self->values, extension); local
220 if (exists < 0) {
223 return PyBool_FromLong(exists);
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
H A DStandard_Suite.py141 def exists(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
142 """exists: Verify if an object exists
145 Returns: true if it exists, false if not
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowEnvironment.java61 if (!exists(EXTERNAL_CACHE_DIR)) EXTERNAL_CACHE_DIR = RuntimeEnvironment.getTempDirectory().create("external-cache");
67 if (!exists(EXTERNAL_FILES_DIR)) EXTERNAL_FILES_DIR = RuntimeEnvironment.getTempDirectory().create("external-files");
93 private static boolean exists(Path path) { method in class:ShadowEnvironment
94 return path != null && Files.exists(path);
99 final Boolean exists = STORAGE_REMOVABLE.get(getExternalStorageDirectory());
100 return exists != null ? exists : false;
128 final Boolean exists = STORAGE_REMOVABLE.get(path);
129 return exists != null ? exists
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-size/
H A Dllvm-size.cpp237 // If file is not stdin, check that it exists.
239 bool exists; local
240 if (sys::fs::exists(file, exists) || !exists) {
/external/webrtc/webrtc/libjingle/xmpp/
H A Dmucroomdiscoverytask_unittest.cc27 bool exists,
32 last_exists = exists;
26 OnResult(buzz::MucRoomDiscoveryTask* task, bool exists, const std::string& name, const std::string& conversation_id, const std::set<std::string>& features, const std::map<std::string, std::string>& extended_info) argument
/external/autotest/client/common_lib/cros/network/
H A Dinterface.py85 Raises an exception if no such interface exists.
95 if ethernet_if.exists and ethernet_if.ipv4_address:
214 def exists(self): member in class:Interface
215 """@return True if this interface exists, False otherwise."""

Completed in 906 milliseconds

12345678