Home
last modified time | relevance | path

Searched refs:types (Results 1 - 25 of 654) sorted by relevance

12345678910>>...27

/foundation/distributeddatamgr/udmf/interfaces/cj/src/
H A Dtype_descriptor_impl.cpp47 std::vector<std::string> types = typeDescriptor_->GetBelongingToTypes(); in GetBelongingToTypes() local
48 return Utils::StringVectorToArray(types); in GetBelongingToTypes()
71 std::vector<std::string> types = typeDescriptor_->GetFilenameExtensions(); in GetFilenameExtensions() local
72 return Utils::StringVectorToArray(types); in GetFilenameExtensions()
77 std::vector<std::string> types = typeDescriptor_->GetMimeTypes(); in GetMimeTypes() local
78 return Utils::StringVectorToArray(types); in GetMimeTypes()
H A Dunified_data_impl.cpp133 std::vector<std::string> types = unifiedData_->GetTypesLabels(); in GetTypes() local
134 return StringVectorToArray(types); in GetTypes()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/
H A Dunified_data.cpp100 std::vector<std::string> types; in GetTypesLabels() local
102 types.push_back(UtdUtils::GetUtdIdFromUtdEnum(record->GetType())); in GetTypesLabels()
104 return types; in GetTypesLabels()
121 auto types = record->GetUtdIds(); in GetEntriesTypes() local
122 labels.insert(types.begin(), types.end()); in GetEntriesTypes()
134 auto types = record->GetUtdIds(); in HasTypeInEntries() local
135 if (types.find(type) != types.end()) { in HasTypeInEntries()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dunified_record_test.cpp97 auto types = record.GetUtdIds(); in HWTEST_F() local
98 EXPECT_TRUE(types.empty()); in HWTEST_F()
122 auto types = record.GetUtdIds(); in HWTEST_F() local
123 EXPECT_TRUE(types.find(utdId) != types.end()); in HWTEST_F()
148 auto types = record.GetUtdIds(); in HWTEST_F() local
149 EXPECT_TRUE(types.find(utdId) != types.end()); in HWTEST_F()
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_data_ability_impl.cpp38 std::vector<std::string> types; in GetFileTypes() local
39 types.push_back("Type1"); in GetFileTypes()
40 types.push_back("Type2"); in GetFileTypes()
41 types.push_back("Type3"); in GetFileTypes()
42 return types; in GetFileTypes()
/foundation/distributeddatamgr/pasteboard/framework/test/src/
H A Dpaste_data_record_test.cpp278 auto types = record->GetValidTypes(inputTypes); in HWTEST_F() local
279 ASSERT_EQ(types.size(), 0); in HWTEST_F()
282 types = record->GetValidTypes(inputTypes); in HWTEST_F()
283 auto it = std::find(types.begin(), types.end(), UDMF::UtdUtils::GetUtdIdFromUtdEnum(UDMF::HTML)); in HWTEST_F()
284 ASSERT_NE(it, types.end()); in HWTEST_F()
287 types = record->GetValidTypes(inputTypes); in HWTEST_F()
288 it = std::find(types.begin(), types.end(), UDMF::UtdUtils::GetUtdIdFromUtdEnum(UDMF::FILE_URI)); in HWTEST_F()
289 ASSERT_NE(it, types in HWTEST_F()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/platform/utils/
H A Dflat_obj.h19 * @brief Define types and structures for reading and writing object in parcel.
29 #include <sys/types.h>
52 #include <sys/types.h>
53 #include <linux/types.h>
/foundation/ability/ability_lite/interfaces/kits/js/napi/
H A Djs_aafwk.cpp51 napi_valuetype types[1];
52 status = napi_typeof(env, args[0], types);
54 assert(argc == 1 && types[0] == napi_object);
75 napi_valuetype types[1];
76 status = napi_typeof(env, args[0], types);
78 assert(argc == 1 && types[0] == napi_object);
/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/
H A Ddrag_preview.h91 dragPreview->previewStyle_.types.clear(); in SetForegroundColor()
135 dragPreview->previewStyle_.types.clear(); in Animate()
168 auto iter = std::find(previewStyle_.types.begin(), previewStyle_.types.end(), in SetColor()
170 if (iter == previewStyle_.types.end()) { in SetColor()
171 previewStyle_.types.emplace_back(PreviewType::FOREGROUND_COLOR); in SetColor()
/foundation/arkui/ace_engine/frameworks/core/common/interaction/
H A Dinteraction_data.h94 std::vector<PreviewType> types; member
102 return types == other.types && foregroundColor == other.foregroundColor && opacity == other.opacity && in operator ==()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dimage_analyzer_adapter_impl.cpp55 // If config is not set, all types are enabled by default. in GetImageAnalyzerConfig()
57 std::vector<ImageAnalyzerType> types = {ImageAnalyzerType::SUBJECT, ImageAnalyzerType::TEXT}; in GetImageAnalyzerConfig() local
60 for (int i = 0; i < static_cast<int>(types.size()); ++i) { in GetImageAnalyzerConfig()
62 napi_create_int32(env_, static_cast<int>(types[i]), &tmpValue); in GetImageAnalyzerConfig()
65 napi_set_named_property(env_, analyzerConfig, "types", typeNapi); in GetImageAnalyzerConfig()
/foundation/ability/idl_tool/idl_tool_2/codegen/SA/rust/
H A Dsa_rust_code_emitter.cpp31 const AST::TypeStringMap &types = ast_->GetTypes(); in EmitCommonHeaders() local
32 for (const auto &pair : types) { in EmitCommonHeaders()
/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dskills.cpp635 * @brief Obtains the count of types.
717 std::vector<std::string> types; in MatchData() local
719 types.emplace_back(it->GetPattern()); in MatchData()
725 if (types.empty() && schemes.empty()) { in MatchData()
767 if (!types.empty()) { in MatchData()
786 std::vector<PatternsMatcher> types = types_; in FindMimeType() local
791 auto it = types.begin(); in FindMimeType()
792 for (; it != types.end(); it++) { in FindMimeType()
797 if (it != types.end()) { in FindMimeType()
803 return !types in FindMimeType()
[all...]
/foundation/ability/ability_runtime/test/mock/frameworks_kits_test/DemoAbility/
H A Ddemo_ability_test.cpp143 std::vector<std::string> types; in GetFileTypes() local
144 types.push_back("Type1"); in GetFileTypes()
145 types.push_back("Type2"); in GetFileTypes()
146 types.push_back("Type3"); in GetFileTypes()
147 return types; in GetFileTypes()
/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_data_detector_adapter.cpp19 void DataDetectorAdapter::SetTextDetectTypes(const std::string& types) in SetTextDetectTypes() argument
21 textDetectTypes_ = types; in SetTextDetectTypes()
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dnetlink_msg.h20 #include <asm/types.h>
30 #include <sys/types.h>
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/service_impl/
H A Dmod.rs28 /// Module of Cloud Service Synchronization basic types.
29 pub mod types; modules
/foundation/distributeddatamgr/relational_store/frameworks/cj/src/
H A Drelational_store_utils.cpp304 CArrPRIKeyType types{0}; in VectorToCArrPRIKeyType()
306 return types; in VectorToCArrPRIKeyType()
308 types.head = static_cast<RetPRIKeyType*>(malloc(sizeof(RetPRIKeyType) * arr.size())); in VectorToCArrPRIKeyType()
309 if (types.head == nullptr) { in VectorToCArrPRIKeyType()
310 return types; in VectorToCArrPRIKeyType()
313 types.head[i] = VariantToRetPRIKeyType(arr[i]); in VectorToCArrPRIKeyType()
315 types.size = arr.size(); in VectorToCArrPRIKeyType()
316 return types; in VectorToCArrPRIKeyType()
/foundation/ai/ai_engine/services/common/utils/constants/
H A Dconstants.h16 #include <sys/types.h>
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/api/
H A Denvironment_uid.h20 #include <meta/base/types.h>
H A Dcamera_uid.h20 #include <meta/base/types.h>
H A Dlight_uid.h20 #include <meta/base/types.h>
H A Drender_configuration_uid.h20 #include <meta/base/types.h>
H A Dresource_container_uid.h20 #include <meta/base/types.h>
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dsubmesh_handler_uid.h20 #include <meta/base/types.h>

Completed in 8 milliseconds

12345678910>>...27