/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deSharedPtr.cpp | 44 Object (bool& exists) in Object() argument 45 : m_exists(exists) in Object() 62 DerivedObject (bool& exists) in DerivedObject() argument 63 : Object(exists) in DerivedObject() 71 SharedPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) in SharedPtrTestThread() argument 73 , m_exists (exists) in SharedPtrTestThread() 107 WeakPtrTestThread (const SharedPtr<Object>& ptr, const bool& exists) in WeakPtrTestThread() argument 109 , m_exists (exists) in WeakPtrTestThread() 140 SharedPtr<Object> makeObject (bool& exists) in makeObject() argument 142 return SharedPtr<Object>(new Object(exists)); in makeObject() 187 bool exists = false; SharedPtr_selfTest() local 199 bool exists = false; SharedPtr_selfTest() local 216 bool exists = false; SharedPtr_selfTest() local 224 bool exists = false; SharedPtr_selfTest() local 233 bool exists = false; SharedPtr_selfTest() local 245 bool exists = false; SharedPtr_selfTest() local 260 bool exists = false; SharedPtr_selfTest() local 295 bool exists = false; SharedPtr_selfTest() local 320 bool exists = false; SharedPtr_selfTest() local 336 bool exists = false; SharedPtr_selfTest() local 349 bool exists = false; SharedPtr_selfTest() local 363 bool exists = false; SharedPtr_selfTest() local 392 bool exists = false; SharedPtr_selfTest() local 411 bool exists = false; SharedPtr_selfTest() local 429 bool exists = false; SharedPtr_selfTest() local [all...] |
H A D | deUniquePtr.cpp | 37 Object (bool& exists) in Object() argument 38 : m_exists(exists) in Object() 66 MovePtr<Object> createObject (bool& exists) in createObject() argument 68 UniquePtr<Object> objectPtr(new Object(exists)); in createObject() 78 bool exists = false; in UniquePtr_selfTest() local 80 UniquePtr<Object> ptr(new Object(exists)); in UniquePtr_selfTest() 81 DE_TEST_ASSERT(exists); in UniquePtr_selfTest() 84 DE_TEST_ASSERT(!exists); in UniquePtr_selfTest() 89 bool exists = false; in UniquePtr_selfTest() local 92 UniquePtr<Object> ptr(new Object(exists)); in UniquePtr_selfTest() 106 bool exists = false; UniquePtr_selfTest() local 114 bool exists = false; UniquePtr_selfTest() local 128 bool exists = false; UniquePtr_selfTest() local 141 bool exists = false; UniquePtr_selfTest() local 154 bool exists = false; UniquePtr_selfTest() local 175 bool exists = false; UniquePtr_selfTest() local 191 bool exists = false; UniquePtr_selfTest() local [all...] |
/third_party/weex-loader/ |
H A D | module-source.js | 19 const exists = function(src, dst, callback) { 23 fs.exists(dst, function(exists) { 24 if (exists) { 58 exists(_src, _dst, copy); 66 exists(path.resolve(__dirname, src), dist, copy);
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_archive_util.py | 119 self.assertTrue(os.path.exists(tarball)) 163 self.assertTrue(os.path.exists(tarball)) 177 self.assertTrue(os.path.exists(tarball2)) 191 self.assertTrue(os.path.exists(tarball)) 202 self.assertTrue(os.path.exists(tarball)) 220 self.assertTrue(os.path.exists(tarball)) 234 self.assertFalse(os.path.exists(tarball)) 248 self.assertTrue(os.path.exists(tarball)) 274 self.assertTrue(os.path.exists(tarball)) 307 self.assertTrue(os.path.exists(re [all...] |
H A D | test_install_data.py | 38 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 40 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 50 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 51 self.assertTrue(os.path.exists(os.path.join(inst, rone))) 68 self.assertTrue(os.path.exists(os.path.join(inst2, rtwo))) 69 self.assertTrue(os.path.exists(os.path.join(inst, rone)))
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_vulkan_header.py | 37 if os.path.exists(header): 53 if os.path.exists(xmlfile): 84 if os.path.exists(xmlfile): 198 if os.path.exists(x): 204 if os.path.exists(x): 211 if not os.path.exists(x): 218 if not os.path.exists(x): 265 if not os.path.exists(args.basexml): 268 if not os.path.exists(args.supersetxml): 271 if not os.path.exists(arg [all...] |
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/ |
H A D | NVCtrl.c | 346 Bool exists; in XNVCTRLQueryTargetAttribute() local 367 exists = rep.flags; in XNVCTRLQueryTargetAttribute() 368 if (exists && value) *value = rep.value; in XNVCTRLQueryTargetAttribute() 371 return exists; in XNVCTRLQueryTargetAttribute() 397 Bool exists; in XNVCTRLQueryTargetAttribute64() local 418 exists = rep.flags; in XNVCTRLQueryTargetAttribute64() 419 if (exists && value) *value = rep.value_64; in XNVCTRLQueryTargetAttribute64() 422 return exists; in XNVCTRLQueryTargetAttribute64() 437 Bool exists; in XNVCTRLQueryTargetStringAttribute() local 464 exists in XNVCTRLQueryTargetStringAttribute() 564 Bool exists; XNVCTRLQueryValidTargetAttributeValues32() local 606 Bool exists; XNVCTRLQueryValidTargetStringAttributeValues() local 652 Bool exists; XNVCTRLQueryValidTargetAttributeValues64() local 695 Bool exists; XNVCTRLQueryValidTargetAttributeValues() local 753 Bool exists; QueryAttributePermissionsInternal() local 981 Bool exists; XNVCTRLQueryTargetBinaryData() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_unicode_file.py | 22 if os.path.exists(filename): 27 # file already exists etc. 32 self.assertTrue(os.path.exists(filename)) 35 self.assertTrue(os.path.exists(os.path.abspath(filename))) 71 self.assertFalse(os.path.exists(filename2)) 72 self.assertTrue(os.path.exists(filename1 + '.new')) 74 self.assertFalse(os.path.exists(filename2 + '.new')) 75 self.assertTrue(os.path.exists(filename1)) 84 self.assertFalse(os.path.exists(filename2 + '.new')) 111 self.assertTrue(not os.path.exists(filenam [all...] |
H A D | test_py_compile.py | 78 self.assertTrue(os.path.exists(self.pyc_path)) 79 self.assertFalse(os.path.exists(self.cache_path)) 93 @unittest.skipIf(not os.path.exists(os.devnull) or os.path.isfile(os.devnull), 103 self.assertTrue(os.path.exists(self.cache_path)) 109 self.assertTrue(os.path.exists(self.pyc_path)) 110 self.assertFalse(os.path.exists(self.cache_path)) 115 self.assertTrue(os.path.exists(self.pyc_path)) 116 self.assertFalse(os.path.exists(self.cache_path)) 138 self.assertFalse(os.path.exists( 143 self.assertTrue(os.path.exists(sel [all...] |
/third_party/protobuf/python/ |
H A D | setup.py | 23 if 'PROTOC' in os.environ and os.path.exists(os.environ['PROTOC']): 25 elif os.path.exists("../src/protoc"): 27 elif os.path.exists("../src/protoc.exe"): 29 elif os.path.exists("../vsprojects/Debug/protoc.exe"): 31 elif os.path.exists("../vsprojects/Release/protoc.exe"): 51 .proto file. Does nothing if the output already exists and is newer than 54 if not require and not os.path.exists(source): 59 if (not os.path.exists(output) or 60 (os.path.exists(source) and 64 if not os.path.exists(sourc [all...] |
/third_party/toybox/ |
H A D | install.py | 21 if not os.path.exists(bin_dir): 25 if not os.path.exists(sbin_dir): 29 if not os.path.exists(usr_bin_dir): 33 if not os.path.exists(usr_sbin_dir): 38 if os.path.exists(target_link):
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _packager.py | 38 if not os.path.exists(EXCLUDED_FILENAME): 57 if not os.path.exists(TEST262_CASES_DIR): 61 if not os.path.exists(TEST262_HARNESS_DIR): 65 if not os.path.exists(TEST262_WEB_CASES_DIR): 68 if not os.path.exists(TEST262_WEB_HARNESS_DIR): 79 if not os.path.exists(dirName): 82 if not os.path.exists(dirName): 167 if not os.path.exists(temp): 325 if not os.path.exists(os.path.dirname(toFilename)): 327 fileExists = os.path.exists(toFilenam [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | utils.cc | 116 std::vector<char> ReadCharsFromFile(FILE* file, bool* exists, bool verbose, in ReadCharsFromFile() argument 122 *exists = false; in ReadCharsFromFile() 135 *exists = false; in ReadCharsFromFile() 140 *exists = true; in ReadCharsFromFile() 144 std::vector<char> ReadCharsFromFile(const char* filename, bool* exists, in ReadCharsFromFile() argument 147 std::vector<char> result = ReadCharsFromFile(file, exists, verbose, filename); in ReadCharsFromFile() 174 std::string ReadFile(const char* filename, bool* exists, bool verbose) { in ReadFile() argument 175 std::vector<char> result = ReadCharsFromFile(filename, exists, verbose); in ReadFile() 179 std::string ReadFile(FILE* file, bool* exists, bool verbose) { in ReadFile() argument 180 std::vector<char> result = ReadCharsFromFile(file, exists, verbos in ReadFile() [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/ |
H A D | extension.rb | 29 # Check if a link macro target exists - overridden by specific macros 31 def exists? target 36 if not exists? target 171 def exists? target 180 def exists? target 204 def exists? target 218 def exists? target 227 def exists? target 258 def exists? target 272 def exists [all...] |
/third_party/python/Lib/distutils/ |
H A D | dep_util.py | 12 """Return true if 'source' exists and is more recently modified than 13 'target', or if 'source' exists and 'target' doesn't. Return false if 17 if not os.path.exists(source): 20 if not os.path.exists(target): 56 listed in 'sources'. In other words, if 'target' exists and is newer 68 if not os.path.exists(target): 78 if not os.path.exists(source):
|
H A D | file_util.py | 33 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" %
|
/third_party/rust/crates/rust-openssl/openssl-sys/build/ |
H A D | find_normal.rs | 20 if openssl_dir.join("lib64").exists() { in get_openssl() 23 if openssl_dir.join("lib").exists() { in get_openssl() 42 if homebrew.exists() { in resolve_with_wellknown_homebrew_location() 53 if homebrew.exists() { in resolve_with_wellknown_homebrew_location() 65 if include_openssl.exists() { in resolve_with_wellknown_location() 132 if system.exists() { in find_openssl_dir()
|
/third_party/node/tools/icu/ |
H A D | iculslocs.cc | 141 * @param exists set to TRUE if exists, FALSE otherwise. 146 int localeExists(const char* loc, UBool* exists) { in localeExists() argument 153 *exists = false; in localeExists() 155 *exists = true; in localeExists() 161 *exists = false; in localeExists() 322 UBool exists; in list() local 323 if (localeExists(key, &exists)) { in list() 327 if (exists) { in list()
|
/third_party/vk-gl-cts/external/ |
H A D | fetch_sources.py | 60 if os.path.exists(readonlydir): 62 if os.path.exists(fullDstPath): 89 if os.path.exists(archiveDir): 94 if os.path.exists(archiveFile): 105 if os.path.exists(extractedChecksumFile): 142 if not os.path.exists(os.path.dirname(dstPath)): 159 if os.path.exists(tmpPath): 173 if not os.path.exists(dstPath): 177 if os.path.exists(os.path.join(dstPath, entry)): 178 raise Exception("%s exists alread [all...] |
/third_party/node/deps/v8/tools/dev/ |
H A D | update-compile-commands.py | 22 if not os.path.exists(path): 45 if not os.path.exists(build_dir): 49 if not os.path.exists(args_gn): 53 if not os.path.exists(build_ninja): 92 assert os.path.exists("out/x64.debug/build.ninja")
|
/third_party/node/deps/v8/src/base/ |
H A D | hashmap-entry.h | 35 bool exists() const { return exists_; } in exists() function 55 bool exists() const { return key != nullptr; } in exists() function 72 bool exists() const { return exists_; } in exists() function 92 bool exists() const { return key != nullptr; } in exists() function
|
/third_party/mindspore/ |
H A D | build_helper.py | 125 if not os.path.exists(md5_path): 139 if not os.path.exists(os.path.join(patch_path, md5_file.replace(".md5", ".patch"))): 149 if not os.path.exists(os.path.join(out_src_path, ".status")): 169 if os.path.exists(out_src_path): 173 if os.path.exists(os.path.join(out_src_path, ".status")): 174 print("patch files not changed and " + os.path.join(out_src_path, ".status") + " exists.")
|
/third_party/rust/crates/bindgen/bindgen/codegen/postprocessing/ |
H A D | merge_extern_blocks.rs | 27 let mut exists = false; in visit_item_mod_mut() variables 38 exists = true; in visit_item_mod_mut() 44 if !exists { in visit_item_mod_mut()
|
/third_party/rust/crates/cxx/gen/build/src/ |
H A D | target.rs | 28 if dir.join(".rustc_info.json").exists() 29 || dir.join("CACHEDIR.TAG").exists() 33 .map_or(false, |parent| parent.join("Cargo.toml").exists())
|
/third_party/libinput/test/ |
H A D | test-quirks.c | 1386 bool exists, value = false; in START_TEST() local 1389 exists = quirks_get_bool(q, QUIRK_MODEL_ALPS_SERIAL_TOUCHPAD, &value); in START_TEST() 1392 ck_assert(exists); in START_TEST() 1395 ck_assert(!exists); in START_TEST() 1405 bool exists, value = false; in START_TEST() local 1408 exists = quirks_get_bool(q, QUIRK_MODEL_WACOM_TOUCHPAD, &value); in START_TEST() 1411 ck_assert(exists); in START_TEST() 1414 ck_assert(!exists); in START_TEST() 1424 bool exists, value = false; in START_TEST() local 1427 exists in START_TEST() 1443 bool exists, value = false; START_TEST() local [all...] |