/applications/standard/contacts_data/test/unittest/src/ |
H A D | contactpinyin_test.cpp | 116 HWTEST_F(ContactPinyinTest, pinyin_conversion_Insert_test_100, testing::ext::TestSize.Level1) in HWTEST_F() 144 HWTEST_F(ContactPinyinTest, pinyin_conversion_Insert_test_200, testing::ext::TestSize.Level1) in HWTEST_F() 172 HWTEST_F(ContactPinyinTest, pinyin_conversion_Insert_test_300, testing::ext::TestSize.Level1) in HWTEST_F() 200 HWTEST_F(ContactPinyinTest, abnormal_pinyin_conversion_Insert_test_400, testing::ext::TestSize.Level1) in HWTEST_F() 227 HWTEST_F(ContactPinyinTest, abnormal_pinyin_conversion_Insert_test_500, testing::ext::TestSize.Level1) in HWTEST_F()
|
H A D | calllogfuzzyquery_test.cpp | 71 HWTEST_F(CalllogFuzzyQueryTest, calllog_Query_test_100, testing::ext::TestSize.Level1) in HWTEST_F() 117 HWTEST_F(CalllogFuzzyQueryTest, calllog_Query_test_200, testing::ext::TestSize.Level1) in HWTEST_F() 157 HWTEST_F(CalllogFuzzyQueryTest, calllog_Query_test_300, testing::ext::TestSize.Level1) in HWTEST_F() 196 HWTEST_F(CalllogFuzzyQueryTest, calllog_Query_test_400, testing::ext::TestSize.Level1) in HWTEST_F() 235 HWTEST_F(CalllogFuzzyQueryTest, abnormal_calllog_Query_test_500, testing::ext::TestSize.Level1) in HWTEST_F()
|
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | script.h | 171 /// Adds |ext| to the list of device extensions that must be supported. 172 void AddRequiredDeviceExtension(const std::string& ext) { in AddRequiredDeviceExtension() argument 173 engine_info_.required_device_extensions.push_back(ext); in AddRequiredDeviceExtension() 176 /// Adds |ext| to the list of instance extensions that must be supported. 177 void AddRequiredInstanceExtension(const std::string& ext) { in AddRequiredInstanceExtension() argument 178 engine_info_.required_instance_extensions.push_back(ext); in AddRequiredInstanceExtension() 181 /// Adds |ext| to the list of extensions that must be supported by the engine. 184 void AddRequiredExtension(const std::string& ext);
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | android.py | 80 def IsCPPExtension(ext): 81 return make.COMPILABLE_EXTENSIONS.get(ext) == "cxx" 575 (root, ext) = os.path.splitext(source) 576 if IsCPPExtension(ext): 577 local_cpp_extension = ext 589 (root, ext) = os.path.splitext(source) 594 elif IsCPPExtension(ext) and ext != local_cpp_extension: 615 (root, ext) = os.path.splitext(local_file) 616 if IsCPPExtension(ext) an [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | android.py | 80 def IsCPPExtension(ext): 81 return make.COMPILABLE_EXTENSIONS.get(ext) == "cxx" 575 (root, ext) = os.path.splitext(source) 576 if IsCPPExtension(ext): 577 local_cpp_extension = ext 589 (root, ext) = os.path.splitext(source) 594 elif IsCPPExtension(ext) and ext != local_cpp_extension: 615 (root, ext) = os.path.splitext(local_file) 616 if IsCPPExtension(ext) an [all...] |
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_device.c | 664 vk_foreach_struct(ext, properties->pNext) { in dzn_physical_device_get_format_properties() 665 dzn_debug_ignored_stype(ext->sType); in dzn_physical_device_get_format_properties() 1258 vk_foreach_struct(ext, pFeatures->pNext) { in dzn_GetPhysicalDeviceFeatures2() 1259 if (vk_get_physical_device_core_1_1_feature_ext(ext, &core_1_1) || in dzn_GetPhysicalDeviceFeatures2() 1260 vk_get_physical_device_core_1_2_feature_ext(ext, &core_1_2) || in dzn_GetPhysicalDeviceFeatures2() 1261 vk_get_physical_device_core_1_3_feature_ext(ext, &core_1_3)) in dzn_GetPhysicalDeviceFeatures2() 1264 switch (ext->sType) { in dzn_GetPhysicalDeviceFeatures2() 1267 (VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT *)ext; in dzn_GetPhysicalDeviceFeatures2() 1273 dzn_debug_ignored_stype(ext->sType); in dzn_GetPhysicalDeviceFeatures2() 1651 vk_foreach_struct(ext, pPropertie in dzn_GetPhysicalDeviceProperties2() [all...] |
/third_party/python/Lib/test/ |
H A D | test_posixpath.py | 76 def splitextTest(self, path, filename, ext): 77 self.assertEqual(posixpath.splitext(path), (filename, ext)) 78 self.assertEqual(posixpath.splitext("/" + path), ("/" + filename, ext)) 80 ("abc/" + filename, ext)) 82 ("abc.def/" + filename, ext)) 84 ("/abc.def/" + filename, ext)) 86 (filename + ext + "/", "")) 90 ext = bytes(ext, "ASCII") 92 self.assertEqual(posixpath.splitext(path), (filename, ext)) [all...] |
/third_party/jerryscript/tools/ |
H A D | check-license.py | 44 'jerry-ext', 79 if any(fname.endswith(ext) for ext in EXTENSIONS):
|
/third_party/node/lib/internal/modules/esm/ |
H A D | formats.js | 50 function getLegacyExtensionFormat(ext) { 51 return legacyExtensionFormatMap[ext];
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachORelocation.h | 47 bool ext, uint8_t type, bool scattered = false, in MachORelocation() 50 r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {} in MachORelocation() 46 MachORelocation(uint32_t addr, uint32_t index, bool pcrel, uint8_t len, bool ext, uint8_t type, bool scattered = false, int32_t value = 0) MachORelocation() argument
|
/third_party/protobuf/src/google/protobuf/ |
H A D | extension_set.cc | 206 ForEach([](int /* number */, Extension& ext) { ext.Free(); }); in ~ExtensionSet() 237 const Extension* ext = FindOrNull(number); in Has() local 238 if (ext == NULL) return false; in Has() 239 GOOGLE_DCHECK(!ext->is_repeated); in Has() 240 return !ext->is_cleared; in Has() 245 ForEach([&result](int /* number */, const Extension& ext) { in NumExtensions() 246 if (!ext.is_cleared) { in NumExtensions() 254 const Extension* ext = FindOrNull(number); in ExtensionSize() local 255 return ext in ExtensionSize() 259 const Extension* ext = FindOrNull(number); ExtensionType() local 271 Extension* ext = FindOrNull(number); ClearExtension() local [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | standalone.cpp | 473 const char *const ext = & files[i][len - 5]; in standalone_compile_shader() local 475 if (strncmp(".vert", ext, 5) == 0 || strncmp(".glsl", ext, 5) == 0) in standalone_compile_shader() 477 else if (strncmp(".tesc", ext, 5) == 0) in standalone_compile_shader() 479 else if (strncmp(".tese", ext, 5) == 0) in standalone_compile_shader() 481 else if (strncmp(".geom", ext, 5) == 0) in standalone_compile_shader() 483 else if (strncmp(".frag", ext, 5) == 0) in standalone_compile_shader() 485 else if (strncmp(".comp", ext, 5) == 0) in standalone_compile_shader()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.cpp | 153 int CArcInfoEx::FindExtension(const UString &ext) const
in FindExtension() 156 if (ext.IsEqualTo_NoCase(Exts[i].Ext))
in FindExtension() 161 void CArcInfoEx::AddExts(const UString &ext, const UString &addExt)
in AddExts() argument 164 SplitString(ext, exts);
in AddExts() 450 UString ext, addExt;
in LoadFormats() local 451 RINOK(GetProp_String(getProp, getProp2, i, NArchive::NHandlerPropID::kExtension, ext))
in LoadFormats() 453 item.AddExts(ext, addExt);
in LoadFormats() 883 const UString ext = arcPath.Ptr((unsigned)(dotPos + 1));
in FindFormatForArchiveName() local 884 if (ext.IsEmpty())
in FindFormatForArchiveName() 886 if (ext in FindFormatForArchiveName() [all...] |
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkWsiUtil.cpp | 522 const VkSurfaceCapabilities2EXT& ext) in sameSurfaceCapabilities() 524 return ( khr.minImageCount == ext.minImageCount && in sameSurfaceCapabilities() 525 khr.maxImageCount == ext.maxImageCount && in sameSurfaceCapabilities() 526 khr.currentExtent.width == ext.currentExtent.width && in sameSurfaceCapabilities() 527 khr.currentExtent.height == ext.currentExtent.height && in sameSurfaceCapabilities() 528 khr.minImageExtent.width == ext.minImageExtent.width && in sameSurfaceCapabilities() 529 khr.minImageExtent.height == ext.minImageExtent.height && in sameSurfaceCapabilities() 530 khr.maxImageExtent.width == ext.maxImageExtent.width && in sameSurfaceCapabilities() 531 khr.maxImageExtent.height == ext.maxImageExtent.height && in sameSurfaceCapabilities() 532 khr.maxImageArrayLayers == ext in sameSurfaceCapabilities() 521 sameSurfaceCapabilities(const VkSurfaceCapabilitiesKHR& khr, const VkSurfaceCapabilities2EXT& ext) sameSurfaceCapabilities() argument [all...] |
/third_party/vk-gl-cts/external/amber/src/samples/ |
H A D | config_helper_vulkan.cc | 270 for (const auto& ext : extension_properties) { in AreAllValidationExtensionsSupported() 271 if (!strcmp(kExtensionForValidationLayer, ext.extensionName)) in AreAllValidationExtensionsSupported() 717 for (auto& ext : required_extensions) { in CreateVulkanInstance() 718 if (ext == "VK_KHR_get_physical_device_properties2") in CreateVulkanInstance() 726 [](const std::string& ext) -> const char* { return ext.c_str(); }); in CreateVulkanInstance() 769 for (const auto& ext : available_device_extensions_) { in CheckVulkanPhysicalDeviceRequirements() 770 if (ext == "VK_KHR_shader_float16_int8") in CheckVulkanPhysicalDeviceRequirements() 772 else if (ext == "VK_KHR_8bit_storage") in CheckVulkanPhysicalDeviceRequirements() 774 else if (ext in CheckVulkanPhysicalDeviceRequirements() [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | t1_lib.c | 123 OPENSSL_free(s->ext.session_ticket); in tls1_free() 410 ctx->ext.supported_groups_default in ssl_load_groups() 413 if (ctx->ext.supported_groups_default == NULL) { in ssl_load_groups() 418 memcpy(ctx->ext.supported_groups_default, in ssl_load_groups() 421 ctx->ext.supported_groups_default_len = num_deflt_grps; in ssl_load_groups() 514 if (s->ext.supportedgroups == NULL) { in tls1_get_supported_groups() 515 *pgroups = s->ctx->ext.supported_groups_default; in tls1_get_supported_groups() 516 *pgroupslen = s->ctx->ext.supported_groups_default_len; in tls1_get_supported_groups() 518 *pgroups = s->ext.supportedgroups; in tls1_get_supported_groups() 519 *pgroupslen = s->ext in tls1_get_supported_groups() [all...] |
/third_party/openssl/ssl/ |
H A D | t1_lib.c | 122 OPENSSL_free(s->ext.session_ticket); in tls1_free() 409 ctx->ext.supported_groups_default in ssl_load_groups() 412 if (ctx->ext.supported_groups_default == NULL) { in ssl_load_groups() 417 memcpy(ctx->ext.supported_groups_default, in ssl_load_groups() 420 ctx->ext.supported_groups_default_len = num_deflt_grps; in ssl_load_groups() 513 if (s->ext.supportedgroups == NULL) { in tls1_get_supported_groups() 514 *pgroups = s->ctx->ext.supported_groups_default; in tls1_get_supported_groups() 515 *pgroupslen = s->ctx->ext.supported_groups_default_len; in tls1_get_supported_groups() 517 *pgroups = s->ext.supportedgroups; in tls1_get_supported_groups() 518 *pgroupslen = s->ext in tls1_get_supported_groups() [all...] |
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | x509v3.h | 33 (*X509V3_EXT_I2V) (const struct v3_ext_method *method, void *ext, 39 void *ext); 42 typedef int (*X509V3_EXT_I2R) (const struct v3_ext_method *method, void *ext, 616 int X509V3_EXT_add(X509V3_EXT_METHOD *ext); 621 const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext); 625 void *X509V3_EXT_d2i(X509_EXTENSION *ext); 641 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, 644 int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent); 863 ASIdentifiers *ext, variable 866 IPAddrBlocks *ext, in variable [all...] |
/third_party/jerryscript/targets/nuttx-stm32f4/ |
H A D | Makefile | 32 CFLAGS += -I$(JERRYSCRIPT_ROOT_DIR)/jerry-ext/include 36 LIBS = libjerry-core.a libjerry-ext.a libjerry-libm.a
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/ |
H A D | radix_sort_vk_devaddr.h | 51 void * ext; member 75 void * ext; member
|
/third_party/node/tools/ |
H A D | utils.py | 113 def SearchFiles(dir, ext): 114 list = glob.glob(dir+ '/**/*.' + ext, recursive=True)
|
/third_party/node/benchmark/module/ |
H A D | module-loader-deep.js | 10 ext: ['', '.js'], 15 function main({ ext, cache, files }) { 30 `require('../a${ext}');`,
|
/third_party/mesa3d/src/vulkan/util/ |
H A D | vk_extensions_gen.py | 53 %for ext in extensions: 54 bool ${ext.name[3:]}; 96 %for ext in instance_extensions: 97 {"${ext.name}", ${ext.ext_version}}, 102 %for ext in device_extensions: 103 {"${ext.name}", ${ext.ext_version}}, 109 %for ext in instance_extensions: 110 .${ext [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | VulkanInfo.h | 41 bool HasExt(InstanceExt ext) const; 55 bool HasExt(DeviceExt ext) const;
|
/applications/standard/calendardata/calendarmanager/test/unittest/src/ |
H A D | event_attendee_test.cpp | 63 HWTEST_F(EventAttendeeTest, AddEventWithOneAttendee, testing::ext::TestSize.Level1) in HWTEST_F() 83 HWTEST_F(EventAttendeeTest, DelEventWithAttendee, testing::ext::TestSize.Level1) in HWTEST_F() 111 HWTEST_F(EventAttendeeTest, UpdateEventWithAttendee, testing::ext::TestSize.Level1) in HWTEST_F()
|