/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/ |
H A D | type_descriptor.cpp | 22 TypeDescriptor::TypeDescriptor(const std::string &typeId, const std::vector<std::string> &belonging… in TypeDescriptor() function in OHOS::UDMF::TypeDescriptor 30 TypeDescriptor::TypeDescriptor(const TypeDescriptorCfg& typeDescriptorCfg) in TypeDescriptor() function in OHOS::UDMF::TypeDescriptor 42 TypeDescriptor::~TypeDescriptor() in ~TypeDescriptor() 131 bool TypeDescriptor::Equals(std::shared_ptr<TypeDescriptor> descriptor) in Equals() 136 const std::string& TypeDescriptor::GetTypeId() const in GetTypeId() 141 std::vector<std::string> TypeDescriptor::GetBelongingToTypes() in GetBelongingToTypes() 146 std::string TypeDescriptor::GetIconFile() in GetIconFile() 151 std::string TypeDescriptor::GetDescription() in GetDescription() 156 std::string TypeDescriptor::GetReferenceURL() in GetReferenceURL() 161 std::vector<std::string> TypeDescriptor::GetFilenameExtensions() in GetFilenameExtensions() [all …]
|
/ohos5.0/foundation/distributeddatamgr/udmf/interfaces/innerkits/data/ |
H A D | type_descriptor.h | 28 class API_EXPORT TypeDescriptor { 30 TypeDescriptor(const std::string &typeId, const std::vector<std::string> &belongingToTypes, 33 TypeDescriptor(const TypeDescriptorCfg& typeDescriptorCfg); 34 ~TypeDescriptor(); 39 bool Equals(std::shared_ptr<TypeDescriptor> descriptor);
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/ |
H A D | utd_client_test.cpp | 69 std::shared_ptr<TypeDescriptor> descriptor; 91 std::shared_ptr<TypeDescriptor> descriptor; 108 std::shared_ptr<TypeDescriptor> descriptor; 125 std::shared_ptr<TypeDescriptor> descriptor; 145 std::shared_ptr<TypeDescriptor> descriptor; 162 std::shared_ptr<TypeDescriptor> descriptor; 314 std::shared_ptr<TypeDescriptor> descriptor; 438 std::shared_ptr<TypeDescriptor> descriptor; 459 std::shared_ptr<TypeDescriptor> descriptor; 479 std::shared_ptr<TypeDescriptor> descriptor; [all …]
|
/ohos5.0/foundation/distributeddatamgr/udmf/adapter/framework/innerkitsimpl/client/ |
H A D | utd_client.h | 33 class TypeDescriptor; variable 38 … Status GetTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descriptor); 60 …Status GetFlexibleTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descr…
|
H A D | utd_client.cpp | 37 Status UtdClient::GetTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &des… in GetTypeDescriptor() 52 …::GetFlexibleTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descriptor) in GetFlexibleTypeDescriptor()
|
/ohos5.0/foundation/distributeddatamgr/udmf/interfaces/innerkits/client/ |
H A D | utd_client.h | 32 class TypeDescriptor; variable 37 … Status GetTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descriptor); 60 …Status GetFlexibleTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descr…
|
/ohos5.0/foundation/distributeddatamgr/udmf/interfaces/jskits/data/ |
H A D | type_descriptor_napi.h | 30 static void NewInstance(napi_env env, std::shared_ptr<TypeDescriptor> in, napi_value &out); 37 std::shared_ptr<TypeDescriptor> value_;
|
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/ |
H A D | arkts-bytecode-file-format.md | 42 ## TypeDescriptor section 43 TypeDescriptor是类([Class](#class)) 名称的格式,由`'L'`、`'_'`、`ClassName`和`';'`组成:`L_ClassName;`。其中,`ClassNa… 92 | `name` | `String` | 外部类的名称,命名遵循[TypeDescriptor](#typedescriptor)语法。 | 118 …` | 一个数组,数组中每个元素的值是一个指向[Class](#class)的偏移量。数组中的元素根据类的名称进行排序,名称遵循[TypeDescriptor](#typedescript… 129 | `name` | `String` | Class的名称,命名遵循[TypeDescriptor](#typedescriptor)语法。 |
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/ |
H A D | js-apis-data-uniformTypeDescriptor.md | 201 ## TypeDescriptor<sup>11+</sup> 254 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 300 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 346 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 359 equals(typeDescriptor: TypeDescriptor): boolean 361 判断指定的标准化数据类型描述类对象的类型ID和当前标准化数据类型描述类对象的类型ID是否相同,即[TypeDescriptor](#typedescriptor11)对象的typeId。 369 | typeDescriptor | [TypeDescriptor](#typedescriptor11) | 是 |待比较的标准化数据类型描述类对象。 | 392 …let typeA : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('genera… 393 …let typeB : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('genera… 405 getTypeDescriptor(typeId: string): TypeDescriptor [all …]
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/client/ |
H A D | utd_client.cpp | 75 Status UtdClient::GetTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &des… in GetTypeDescriptor() 81 descriptor = std::make_shared<TypeDescriptor>(utdTypeCfg); in GetTypeDescriptor() 120 …::GetFlexibleTypeDescriptor(const std::string &typeId, std::shared_ptr<TypeDescriptor> &descriptor) in GetFlexibleTypeDescriptor() 127 descriptor = std::make_shared<TypeDescriptor>(flexibleTypeDescriptorCfg); in GetFlexibleTypeDescriptor()
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/ndkimpl/data/ |
H A D | utd.cpp | 77 static std::shared_ptr<TypeDescriptor> GetTypeDescriptorByUtdClient(const char* typeId) in GetTypeDescriptorByUtdClient() 79 std::shared_ptr<TypeDescriptor> typeDescriptor; in GetTypeDescriptorByUtdClient()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/ |
H A D | js-apis-data-uniformTypeDescriptor.md | 201 ## TypeDescriptor<sup>11+</sup> 254 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 300 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 346 …let typeObj : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('gene… 359 equals(typeDescriptor: TypeDescriptor): boolean 369 | typeDescriptor | [TypeDescriptor](#typedescriptor11) | Yes |Uniform data type to compare. | 392 …let typeA : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('genera… 393 …let typeB : uniformTypeDescriptor.TypeDescriptor = uniformTypeDescriptor.getTypeDescriptor('genera… 405 getTypeDescriptor(typeId: string): TypeDescriptor 407 Obtains the **TypeDescriptor** object based on the uniform data type ID. [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/ |
H A D | mime_type_mgr.cpp | 45 std::shared_ptr<UDMF::TypeDescriptor> typeDescriptor; in GetMimeTypeByUri()
|
H A D | skill.cpp | 520 std::shared_ptr<UDMF::TypeDescriptor> paramTypeDescriptor; in IsUtdMatch()
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/fuzztest/utdclient_fuzzer/ |
H A D | utd_client_fuzzer.cpp | 34 std::shared_ptr<TypeDescriptor> typeDescriptor; in GetTypeDescriptorFuzz()
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/ |
H A D | type_descriptor_napi.cpp | 64 void TypeDescriptorNapi::NewInstance(napi_env env, std::shared_ptr<TypeDescriptor> in, napi_value &… in NewInstance() 156 std::shared_ptr<TypeDescriptor> typeDescriptor; in Equals()
|
H A D | uniform_type_descriptor_napi.cpp | 79 std::shared_ptr<TypeDescriptor> descriptor; in GetTypeDescriptor()
|
/ohos5.0/foundation/distributeddatamgr/udmf/interfaces/jskits/common/ |
H A D | napi_data_utils.h | 90 …static napi_status GetValue(napi_env env, napi_value in, std::shared_ptr<TypeDescriptor> &descript…
|
/ohos5.0/docs/zh-cn/application-dev/database/ |
H A D | uniform-data-type-descriptors.md | 46 标准化数据类型包含了标准化数据类型的标识ID、归属类型关系、简要描述等信息,具体可见[TypeDescriptor属性](../reference/apis-arkdata/js-apis-data…
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | arkts-bytecode-file-format.md | 42 ## TypeDescriptor section 43 **TypeDescriptor** is the format of the [Class](#class) name. Its name **L_ClassName;** is consiste… 92 | `name` | `String` | Enclosing class name, which follows the [TypeDescriptor](#t… 118 …Elements in an array are sorted by the class name which follows the [TypeDescriptor](#typedescript… 129 | `name` | `String` | Class name, which follows the [TypeDescriptor](#typedescrip…
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/ |
H A D | napi_data_utils.cpp | 372 napi_status NapiDataUtils::GetValue(napi_env env, napi_value in, std::shared_ptr<TypeDescriptor> &d… in GetValue()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_util.cpp | 625 std::shared_ptr<UDMF::TypeDescriptor> typeDescriptor; in IsSpecificUtd()
|
H A D | bundle_data_mgr.cpp | 1815 std::shared_ptr<UDMF::TypeDescriptor> wantTypeDescriptor; in MatchUtd()
|
/ohos5.0/docs/en/application-dev/database/ |
H A D | uniform-data-type-descriptors.md | 46 …ips, and brief description of a uniform data type. For details, see [TypeDescriptor properties](..…
|