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

12345678

/external/mesa3d/scons/
H A Dx11.py44 def exists(env): function
H A Ddxsdk.py70 def exists(env): function
H A Dllvm.py76 if not os.path.exists(llvm_config):
247 def exists(env): function
/external/jsoncpp/scons-tools/
H A Dsrcdist.py170 if targz.exists(env):
175 def exists(env): function
177 Make sure srcdist exists.
179 return targz.exists(env)
H A Dglobtool.py49 def exists(env): function
51 Tool always exists.
H A Dsubstinfile.py76 def exists(env): function
78 Make sure tool exists.
/external/ltp/testcases/lib/
H A Dcmdlib.sh43 # Nuke the testcase temporary directory if it exists.
99 # FUNCTION: exists
102 exists() function
/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/autotest/client/site_tests/firmware_TouchMTB/
H A Dkeyboard_device.py35 def exists(self): member in class:KeyboardDevice
36 """Indicate whether this device exists or not."""
/external/autotest/server/hosts/
H A Dadb_label.py33 def exists(self, host): member in class:CameraHalLabel
42 def exists(self, host): member in class:LoopbackDongleLabel
H A Dbase_label.py15 def forever_exists_decorate(exists):
19 We'll check if the label already exists on the host and return True if so.
22 @param exists: The exists method on the label class.
26 Wrapper around the label exists method.
31 @returns True if the label already exists on the host, otherwise run
32 the exists method.
35 return (self._NAME in info.labels) or exists(self, host)
76 def exists(self, host): member in class:BaseLabel
87 raise NotImplementedError('exists no
138 def exists(self, host): member in class:StringLabel
[all...]
/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/dtc/tests/
H A Dcheck_path.c55 int fail_config, exists, check_exists; local
64 if (!strcmp(argv[2], "exists"))
66 else if (!strcmp(argv[2], "not-exists"))
73 CONFIG("Usage: %s <base dtb> <[exists|not-exists]> <node-path>", argv[0]);
77 exists = fdt_path_offset(fdt_base, argv[3]) >= 0;
79 if (exists == check_exists)
/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/python/cpython2/Lib/
H A Dgenericpath.py9 __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/cpython2/Lib/lib2to3/fixes/
H A Dfix_import.py15 from os.path import dirname, join, exists, sep namespace
94 if not exists(join(dirname(base_path), "__init__.py")):
97 if exists(base_path + ext):
/external/python/cpython3/Lib/
H A Dgenericpath.py9 __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
16 def exists(path): function
17 """Test whether a path exists. Returns False for broken symbolic links"""
/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_import.py15 from os.path import dirname, join, exists, sep namespace
94 if not exists(join(dirname(base_path), "__init__.py")):
97 if exists(base_path + ext):
/external/slf4j/integration/src/test/java/org/slf4j/test_osgi/
H A DCheckingBundleListener.java54 boolean exists(String bundleName) { method in class:CheckingBundleListener
/external/v8/src/base/
H A Dhashmap-entry.h25 bool exists() const { return exists_; } function in struct:v8::base::TemplateHashMapEntry
43 bool exists() const { return key != nullptr; } function in struct:v8::base::TemplateHashMapEntry
/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...]

Completed in 600 milliseconds

12345678