HomeSort by relevance Sort by last modified time
    Searched defs:Exists (Results 1 - 25 of 51) sorted by null

1 2 3

  /build/blueprint/pathtools/
fs.go 65 Exists(name string) (bool, bool, error)
77 func (osFs) Exists(name string) (bool, bool, error) {
153 func (m *mockFs) Exists(name string) (bool, bool, error) {
  /build/kati/
file.h 38 bool Exists() const { return exists_; }
fileutil.cc 37 bool Exists(StringPiece filename) {
175 if (Exists(pat))
dep.cc 381 bool Exists(Symbol target) {
387 return ::Exists(target.str());
512 if (!Exists(Intern(buf))) {
602 if (!Exists(input))
  /external/swiftshader/third_party/LLVM/tools/llvm-ranlib/
llvm-ranlib.cpp 72 // Make sure it exists, we don't create empty archives
73 bool Exists;
74 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists)
  /external/tensorflow/tensorflow/contrib/lite/toco/
toco_port.cc 81 Status Exists(const string& filename, const file::Options& options) {
82 auto status = ::file::Exists(filename, ::file::Defaults());
154 Status Exists(const string& filename, const file::Options& options) {
  /external/swiftshader/third_party/LLVM/lib/Archive/
Archive.cpp 70 bool Exists;
71 if (sys::fs::exists(newFile.str(), Exists) || !Exists) {
ArchiveWriter.cpp 160 bool Exists;
161 if (sys::fs::exists(filePath.str(), Exists) || !Exists) {
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMap.h 97 @brief If a mapping already exists for 'key' then it will return
98 the associated data. If no mapping currently exists, a new
134 @brief Removes an element from the map if it exists.
177 @brief Checks whether or not data exists for the specified key.
179 @return Whether data exists for the specified key or not.
181 bool Exists(const KeyType key) const
  /test/vts/utils/python/file/
target_file_utils.py 41 def Exists(filepath, shell):
42 """Determines if a file or directory exists.
49 True if exists, False otherwise.
299 """Asserts that the specified path exists and has the correct permission.
307 asserts.assertTrue(Exists(path, shell), "%s: File does not exist." % path)
  /device/linaro/bootloader/edk2/OvmfPkg/Virtio10Dxe/
Virtio10.h 35 BOOLEAN Exists; // The device exposes this structure
  /external/protobuf/src/google/protobuf/testing/
file.cc 61 bool File::Exists(const string& name) {
121 if (Exists(path)) return false;
  /external/tensorflow/tensorflow/core/grappler/
utils.h 84 bool Exists(const T& value) const { return set_.find(value) != set_.end(); }
  /system/update_engine/common/
fake_prefs.cc 91 bool FakePrefs::Exists(const string& key) const {
prefs.cc 80 bool PrefsBase::Exists(const string& key) const {
  /frameworks/base/tools/aapt2/format/binary/
TableFlattener_test.cpp 83 ::testing::AssertionResult Exists(ResTable* table, const StringPiece& expected_name,
171 EXPECT_TRUE(Exists(&res_table, "com.app.test:id/one", ResourceId(0x7f020000), {},
174 EXPECT_TRUE(Exists(&res_table, "com.app.test:id/two", ResourceId(0x7f020001), {},
177 EXPECT_TRUE(Exists(&res_table, "com.app.test:id/three", ResourceId(0x7f020002), {},
180 EXPECT_TRUE(Exists(&res_table, "com.app.test:integer/one", ResourceId(0x7f030000), {},
183 EXPECT_TRUE(Exists(&res_table, "com.app.test:integer/one", ResourceId(0x7f030000),
190 EXPECT_TRUE(Exists(&res_table, "com.app.test:string/test", ResourceId(0x7f040000), {},
196 EXPECT_TRUE(Exists(&res_table, "com.app.test:layout/bar", ResourceId(0x7f050000), {},
211 EXPECT_TRUE(Exists(&res_table, "com.app.test:id/one", ResourceId(0x7f020001), {},
213 EXPECT_TRUE(Exists(&res_table, "com.app.test:id/three", ResourceId(0x7f020003), {}
    [all...]
  /bionic/libc/malloc_debug/
PointerData.cpp 491 bool PointerData::Exists(const void* ptr) {
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 196 def Exists(bucket, remote_path):
334 if not os.path.exists(directory):
355 if os.path.exists(partial_download_path.name):
396 if (os.path.exists(download_path) and
417 if not os.path.exists(hash_path):
434 if os.path.exists(fetch_ts_path) and os.path.exists(file_path):
449 if os.path.exists(file_path) and CalculateHash(file_path) == expected_hash:
  /external/v8/tools/mb/
mb_unittest.py 47 def Exists(self, path):
252 # The second time we run this, the build dir exists and matches, so no
264 # exists but wasn't populated by mb; this should also result in a clobber.
mb.py 231 if path and self.Exists(path):
341 # Check that every referenced args file or config actually exists.
344 if not self.Exists(self.ToAbsPath(config)):
357 # listed by a config or another mixin actually exists.
517 if not self.Exists(mb_type_path):
520 if not self.Exists(toolchain_path):
541 if self.Exists(gn_args_path):
561 if not self.Exists(self.ToAbsPath(config)):
590 if not self.Exists(path):
611 if not self.Exists(self.args.config_file)
    [all...]
  /art/libartbase/base/
variant_map.h 243 if (Exists(key)) {
278 bool Exists(const TKey<TValue>& key) const {
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 74 static bool Exists() { return false; }
89 static bool Exists() { return BuiltInDefaultValue<T>::Exists(); }
98 static bool Exists() { return true; }
108 static bool Exists() { return true; } \
180 // exists a built-in default value.
181 static bool Exists() {
182 return IsSet() || internal::BuiltInDefaultValue<T>::Exists();
216 // exists a built-in default value.
217 static bool Exists() {
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-ar/
llvm-ar.cpp 287 // Make sure it exists and is a directory
314 bool Exists;
315 if (sys::fs::exists(aPath.str(), Exists) || !Exists)
720 bool Exists;
721 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists) {
  /external/v8/src/
global-handles.h 419 DCHECK(Exists(singleton));
424 inline bool Exists(SingletonHandle singleton) {
  /external/dng_sdk/source/
dng_xmp_sdk.cpp 546 bool dng_xmp_sdk::Exists (const char *ns,
920 if (Exists (ns, path))

Completed in 322 milliseconds

1 2 3