/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/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/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/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...] |
/kernel/linux/linux-5.10/drivers/infiniband/core/ |
H A D | uverbs_uapi.c | 37 size_t alloc_size, bool *exists) in uapi_add_get_elm() 43 *exists = false; in uapi_add_get_elm() 53 *exists = true; in uapi_add_get_elm() 65 bool exists; in uapi_create_write() local 73 &exists); in uapi_create_write() 77 if (WARN_ON(exists && (def->write.is_ex != method_elm->is_ex))) in uapi_create_write() 108 bool exists; in uapi_merge_method() local 114 &exists); in uapi_merge_method() 117 if (exists) { in uapi_merge_method() 177 bool exists; in uapi_merge_obj_tree() local 36 uapi_add_get_elm(struct uverbs_api *uapi, u32 key, size_t alloc_size, bool *exists) uapi_add_get_elm() argument 231 bool exists; uapi_disable_elm() local 280 bool exists; uapi_merge_def() local [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/core/ |
H A D | uverbs_uapi.c | 37 size_t alloc_size, bool *exists) in uapi_add_get_elm() 43 *exists = false; in uapi_add_get_elm() 53 *exists = true; in uapi_add_get_elm() 65 bool exists; in uapi_create_write() local 73 &exists); in uapi_create_write() 77 if (WARN_ON(exists && (def->write.is_ex != method_elm->is_ex))) in uapi_create_write() 105 bool exists; in uapi_merge_method() local 111 &exists); in uapi_merge_method() 114 if (exists) { in uapi_merge_method() 174 bool exists; in uapi_merge_obj_tree() local 36 uapi_add_get_elm(struct uverbs_api *uapi, u32 key, size_t alloc_size, bool *exists) uapi_add_get_elm() argument 228 bool exists; uapi_disable_elm() local 277 bool exists; uapi_merge_def() local [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/dexcr/ |
H A D | dexcr.c | 23 volatile bool exists; in dexcr_exists() local 37 exists = false; in dexcr_exists() 39 exists = true; in dexcr_exists() 43 return exists; in dexcr_exists()
|
/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):
|
/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()
|
/kernel/linux/linux-5.10/drivers/input/joystick/ |
H A D | cobra.c | 36 unsigned char exists; member 103 if ((r = cobra_read_packet(gameport, data)) != cobra->exists) { in cobra_poll() 109 if (cobra->exists & r & (1 << i)) { in cobra_poll() 159 cobra->exists = cobra_read_packet(gameport, data); in cobra_connect() 162 if ((cobra->exists >> i) & data[i] & 1) { in cobra_connect() 165 cobra->exists &= ~(1 << i); in cobra_connect() 168 if (!cobra->exists) { in cobra_connect() 177 if (~(cobra->exists >> i) & 1) in cobra_connect() 231 if ((cobra->exists >> i) & 1) in cobra_disconnect()
|
/kernel/linux/linux-6.6/drivers/input/joystick/ |
H A D | cobra.c | 33 unsigned char exists; member 100 if ((r = cobra_read_packet(gameport, data)) != cobra->exists) { in cobra_poll() 106 if (cobra->exists & r & (1 << i)) { in cobra_poll() 156 cobra->exists = cobra_read_packet(gameport, data); in cobra_connect() 159 if ((cobra->exists >> i) & data[i] & 1) { in cobra_connect() 162 cobra->exists &= ~(1 << i); in cobra_connect() 165 if (!cobra->exists) { in cobra_connect() 174 if (~(cobra->exists >> i) & 1) in cobra_connect() 228 if ((cobra->exists >> i) & 1) in cobra_disconnect()
|
/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/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/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...] |
/kernel/linux/linux-5.10/net/sched/ |
H A D | act_ife.c | 297 int len, bool atomic, bool exists) in __add_metainfo() 316 if (exists) in __add_metainfo() 319 if (exists) in __add_metainfo() 327 bool exists) in add_metainfo_and_get_ops() 333 ret = __add_metainfo(ops, ife, metaid, NULL, 0, true, exists); in add_metainfo_and_get_ops() 340 int len, bool exists) in add_metainfo() 347 ret = __add_metainfo(ops, ife, metaid, metaval, len, false, exists); in add_metainfo() 354 static int use_all_metadata(struct tcf_ife_info *ife, bool exists) in use_all_metadata() argument 362 rc = add_metainfo_and_get_ops(o, ife, o->metaid, exists); in use_all_metadata() 459 bool exists, boo in populate_metalist() 295 __add_metainfo(const struct tcf_meta_ops *ops, struct tcf_ife_info *ife, u32 metaid, void *metaval, int len, bool atomic, bool exists) __add_metainfo() argument 325 add_metainfo_and_get_ops(const struct tcf_meta_ops *ops, struct tcf_ife_info *ife, u32 metaid, bool exists) add_metainfo_and_get_ops() argument 339 add_metainfo(struct tcf_ife_info *ife, u32 metaid, void *metaval, int len, bool exists) add_metainfo() argument 458 populate_metalist(struct tcf_ife_info *ife, struct nlattr **tb, bool exists, bool rtnl_held) populate_metalist() argument 496 bool exists = false; tcf_ife_init() local [all...] |