/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/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...] |
/test/testfwk/developer_test/local_coverage/ |
H A D | coverage_tools.py | 41 if os.path.exists(all_system_info_path): 52 if os.path.exists(system_info_path): 57 print("%s not exists.", all_system_info_path) 66 if os.path.exists(code_path): 74 if os.path.exists(gcda_dir_path): 78 if os.path.exists(remove_out): 81 if os.path.exists(remove_thrd): 94 if not os.path.exists(tmp_cov_path): 96 if not os.path.exists(os.path.join(tmp_cov_path, "ex.txt")): 124 if os.path.exists(testfwk_json_pat [all...] |
/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/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...] |
/test/testfwk/developer_test/libs/fuzzlib/ |
H A D | fuzzer_helper.py | 99 if not os.path.exists(project_yaml_path): 130 print(color_logger.red('%s already exists.' % project_dir_path), 136 if os.path.exists(file_path): 142 if os.path.exists(file_path): 148 if os.path.exists(file_path): 153 if os.path.exists(file_path): 159 if not os.path.exists(corpus_dir): 161 if os.path.exists(os.path.join(corpus_dir, 'init')): 201 if not os.path.exists(os.path.dirname(subsystem_src_flag_file_path)): 203 if os.path.exists(subsystem_src_flag_file_pat [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):
|
/test/testfwk/developer_test/libs/fuzzlib/tools/ |
H A D | colored.py | 69 if not os.path.exists(Colored.LOG_DIR): 73 if not os.path.exists(project_log_dir): 77 if not os.path.exists(current_project_log_dir): 82 if not os.path.exists(Colored.LOG_DIR): 86 if not os.path.exists(project_log_dir): 90 if not os.path.exists(current_project_log_dir):
|
/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()
|
/test/xts/tools/build/ |
H A D | utils.py | 74 if not os.path.exists(input_file): 84 if not os.path.exists(file_dir): 111 if to_dir and not os.path.exists(_output): 113 if not to_dir and not os.path.exists(_parent_output): 170 if not os.path.exists(module_list_file): 225 if not os.path.exists(gradle_output_dir): 228 if not os.path.exists(out_put_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()
|
/test/testfwk/developer_test/src/core/build/ |
H A D | build_testcases.py | 62 if not os.path.exists(target_dir): 87 if os.path.exists(toolchain_filepath): 110 if os.path.exists(xts_testcase_out_dir): 232 if os.path.exists(package_out_dir): 239 if os.path.exists(phone_out_dir): 252 if os.path.exists(curr_productform_outdir): 271 if os.path.exists(phone_out_dir): 284 if os.path.exists(curr_productform_outdir): 299 if os.path.exists(BUILD_FILEPATH): 325 if os.path.exists(BUILD_FILEPAT [all...] |
/test/testfwk/developer_test/local_coverage/code_coverage/ |
H A D | multiprocess_code_coverage.py | 81 if os.path.exists(subsystem_config_filepath): 110 if os.path.exists(subsystem_rootpath_item): 169 if os.path.exists(gcno_path): 172 print(f"{gcno_path} not exists!") 185 if not os.path.exists(single_info_path): 190 if not os.path.exists(src_dir): 191 print(f"Sours path {src_dir} not exists!") 214 if not os.path.exists(trace_file): 215 print(f"Error: trace file {trace_file} not exists!") 224 if os.path.exists(filenam [all...] |
/test/xts/tools/lite/build/ |
H A D | utils.py | 104 if not os.path.exists(input_file): 114 if not os.path.exists(file_dir): 141 if to_dir and not os.path.exists(_output): 143 if not to_dir and not os.path.exists(_parent_output): 163 if os.path.isfile(source_file) and os.path.exists(source_file): 168 if not os.path.exists(new_output): 212 if not os.path.exists(module_list_file): 236 if os.path.exists(product_json): 310 if os.path.exists(module_info_list_file): 324 if not os.path.exists(out_di [all...] |
/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...] |