Searched defs:exists (Results 1 - 25 of 131) sorted by relevance

123456

/external/mesa3d/scons/
H A Dx11.py44 def exists(env): function
H A Ddxsdk.py70 def exists(env): function
H A Dllvm.py73 if not os.path.exists(llvm_config):
204 def exists(env): function
H A Dcrossmingw.py232 def exists(env): function
H A Dgallium.py48 if os.path.islink(target) or os.path.exists(target):
543 def exists(env): function
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/
H A Dpath_utils_test.js19 exists: function(fileName) {
55 assert.equal(path_utils.exists('/a/b/file_exists.html'), true);
56 assert.equal(path_utils.exists('file_exists.html'), true);
57 assert.equal(path_utils.exists('./file_exists.html'), true);
58 assert.equal(path_utils.exists('/a/file_does_not_exists.html'), false);
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
H A DIMarkerFactory.java53 * Checks if the marker with the name already exists. If name is null, then false
57 * @return true id the marker exists, false otherwise.
59 boolean exists(String name); method in interface:IMarkerFactory
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DBasicMarkerFactory.java81 public boolean exists(String name) { method in class:BasicMarkerFactory
/external/doclava/src/com/google/doclava/
H A DHierarchy.java90 private static boolean exists(ClassInfo cl) { method in class:Hierarchy
109 if (exists(cl)) {
110 hdf.setValue("exists", "1");
120 if (exists(cl)) {
121 hdf.setValue("interfaces." + i + ".exists", "1");
/external/jetty/src/java/org/eclipse/jetty/client/webdav/
H A DMkcolExchange.java34 boolean exists = false; field in class:MkcolExchange
48 exists = true;
51 if ( status == HttpStatus.METHOD_NOT_ALLOWED_405 ) // returned when resource exists
54 exists = true;
60 public boolean exists() method in class:MkcolExchange
62 return exists;
H A DPropfindExchange.java53 public boolean exists() method in class:PropfindExchange
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DTypeConverter.java30 * 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/
H A DNumberValue.java51 public boolean exists() { method in class:NumberValue
H A DStringValue.java41 public boolean exists() { method in class:StringValue
H A DVariableValue.java71 public boolean exists() { method in class:VariableValue
72 return TypeConverter.exists(getReference());
/external/libselinux/src/
H A Dinit.c34 int exists = 0; local
58 exists = 1;
63 if (!exists)
/external/lldb/test/pexpect-2.4/examples/
H A Dssh_session.py86 def exists(self, file): member in class:ssh_session
/external/messageformat/java/com/ibm/icu/impl/
H A DICUData.java28 public static boolean exists(final String resourceName) { method in class:ICUData
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
H A DCheckingBundleListener.java54 boolean exists(String bundleName) { method in class:CheckingBundleListener
/external/v8/tools/testrunner/local/
H A Dutils.py30 from os.path import exists namespace
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.cpp37 Object (bool& exists) argument
38 : m_exists(exists)
66 MovePtr<Object> createObject (bool& exists) argument
68 UniquePtr<Object> objectPtr(new Object(exists));
78 bool exists = false; local
80 UniquePtr<Object> ptr(new Object(exists));
81 DE_TEST_ASSERT(exists);
84 DE_TEST_ASSERT(!exists);
89 bool exists = false; local
92 UniquePtr<Object> ptr(new Object(exists));
106 bool exists = false; local
114 bool exists = false; local
128 bool exists = false; local
141 bool exists = false; local
154 bool exists = false; local
175 bool exists = false; local
191 bool exists = false; local
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DJarResource.java94 * Returns true if the respresenetd resource exists.
97 public boolean exists() method in class:JarResource
102 return super.exists();
136 if (!exists())
223 if (!file.exists())
230 if (!dir.exists())
/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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/io/
H A DInMemoryFileSystem.java53 @Override public boolean exists(File file) throws IOException { method in class:InMemoryFileSystem

Completed in 1393 milliseconds

123456