Home
last modified time | relevance | path

Searched refs:Attach (Results 1 - 25 of 187) sorted by relevance

12345678

/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dintf_attachment_container.h48 * @brief See IAttach::Attach()
50 bool Attach(const IObject::Ptr& attachment) in Attach() function in IAttachmentContainer
52 return Attach(attachment, {}); in Attach()
55 bool Attach(const T& object) in Attach() function in IAttachmentContainer
57 return Attach(interface_pointer_cast<IObject>(object), {}); in Attach()
60 * @brief See IAttach::Attach()
62 virtual bool Attach(const IObject::Ptr& attachment, const IObject::Ptr& dataContext) = 0;
64 bool Attach(const T& object, const U& dataContext) in Attach() function in IAttachmentContainer
66 return Attach(interface_pointer_cast<IObject>(object), interface_pointer_cast<IObject>(dataContext)); in Attach()
69 * @brief Attach a
79 bool Attach(IContainer::SizeType pos, const T& object, const U& dataContext) Attach() function in IAttachmentContainer
[all...]
H A Dintf_attach.h41 * @brief Attach an attachment to this object. The object being attached to will be used as the data context.
45 bool Attach(const IObject::Ptr& attachment) in Attach() function in IAttach
47 return Attach(attachment, {}); in Attach()
49 /** Type helper for Attach */
51 bool Attach(const T& object) in Attach() function in IAttach
53 return Attach(interface_pointer_cast<IObject>(object), {}); in Attach()
56 * @brief Attach an attachment to this object.
62 virtual bool Attach(const IObject::Ptr& attachment, const IObject::Ptr& dataContext) = 0;
63 /** Type helper for Attach */
65 bool Attach(cons function in IAttach
[all...]
/foundation/arkui/ace_engine/frameworks/core/common/ime/
H A Dtext_input_proxy.cpp29 RefPtr<TextInputConnection> TextInputProxy::Attach(const WeakPtr<TextInputClient>& client, in Attach() function in OHOS::Ace::TextInputProxy
35 return delegate_->Attach(client, config, taskExecutor, instanceId); in Attach()
H A Dtext_input.h31 virtual RefPtr<TextInputConnection> Attach(const WeakPtr<TextInputClient>& client,
H A Dtext_input_proxy.h43 RefPtr<TextInputConnection> Attach(const WeakPtr<TextInputClient>& client, const TextInputConfiguration& config,
/foundation/ability/ability_runtime/test/unittest/data_ability_record_test/
H A Ddata_ability_record_test.cpp97 EXPECT_EQ(dataAbilityRecord->Attach(abilitySchedulerMock_), ERR_OK); in HWTEST_F()
207 EXPECT_EQ(dataAbilityRecord->Attach(abilitySchedulerMock_), ERR_OK); in HWTEST_F()
218 * SubFunction: Attach
219 * FunctionPoints: The parameter of function Attach.
221 * CaseDescription: Verify function Attach request parameter without call StartLoading.
228 EXPECT_EQ(dataAbilityRecord->Attach(abilitySchedulerMock_), ERR_INVALID_STATE); in HWTEST_F()
236 * SubFunction: Attach
237 * FunctionPoints: The parameter of function Attach.
239 * CaseDescription: Verify function Attach request parameter with nullptr
247 EXPECT_EQ(dataAbilityRecord->Attach(nullpt in HWTEST_F()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/internal/
H A Dobject_api.h145 META_API_CACHE_INTERFACE(META_NS::IAttach, Attach)
403 * @brief Attach an attachment to this object.
405 auto& Attach(const META_NS::IObject::Ptr& attachment, const META_NS::IObject::Ptr& dataContext = {}) in Attach() function in Object
407 META_API_CACHED_INTERFACE(Attach)->Attach(attachment, dataContext);
411 auto& Attach(const T& attachment, const U& dataContext = {}) in Attach() function in Object
413 return Attach(interface_pointer_cast<IObject>(attachment), interface_pointer_cast<IObject>(dataContext));
416 auto& Attach(const T& attachment) in Attach() function in Object
418 return Attach(interface_pointer_cast<IObject>(attachment), {}); in Attach()
425 META_API_CACHED_INTERFACE(Attach) in Detach()
539 FinalClassType& Attach(const META_NS::IAttachment::Ptr& attachment, const META_NS::IObject::Ptr& dataContext = {}) Attach() function in Internal::ObjectInterfaceAPI
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dattachment_container.cpp48 return Attach(N_POS, object, {}); in Add()
53 return Attach(index, object, {}); in Insert()
95 bool AttachmentContainer::Attach(const IObject::Ptr& attachment, const IObject::Ptr& dataContext) in Attach() function in AttachmentContainer
97 return Attach(N_POS, attachment, dataContext); in Attach()
100 bool AttachmentContainer::Attach( in Attach() function in AttachmentContainer
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_keyframe_animation_test.cpp73 renderKeyframeAnimation->Attach(renderNode.get()); in HWTEST_F()
100 renderKeyframeAnimation->Attach(renderNode.get()); in HWTEST_F()
128 renderKeyframeAnimation->Attach(renderNode.get()); in HWTEST_F()
156 renderKeyframeAnimation->Attach(renderNode.get()); in HWTEST_F()
184 renderKeyframeAnimation->Attach(renderNode.get()); in HWTEST_F()
H A Drs_render_transition_test.cpp111 transition->Attach(renderNode.get()); in HWTEST_F()
118 transition2->Attach(renderNode2.get()); in HWTEST_F()
156 transition->Attach(renderNode.get()); in HWTEST_F()
163 transition2->Attach(renderNode2.get()); in HWTEST_F()
H A Drs_render_path_animation_test.cpp133 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
161 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
191 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
222 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
249 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
385 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
446 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
473 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
499 renderPathAnimation->Attach(renderNode.get()); in HWTEST_F()
H A Drs_render_spring_animation_test.cpp105 renderSpringAnimation->Attach(renderNode.get()); in HWTEST_F()
142 * @tc.desc: Verify the Attach
156 renderSpringAnimation->Attach(nullptr); in HWTEST_F()
164 * @tc.desc: Verify the Attach
182 renderSpringAnimation1->Attach(renderNode.get()); in HWTEST_F()
186 renderSpringAnimation2->Attach(renderNode.get()); in HWTEST_F()
194 * @tc.desc: Verify the Attach
212 renderSpringAnimation1->Attach(renderNode.get()); in HWTEST_F()
219 renderSpringAnimation2->Attach(renderNode.get()); in HWTEST_F()
262 renderSpringAnimation->Attach(renderNod in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/progress/
H A Drosen_render_progress.cpp29 track_->Attach(GetContext()); in Update()
35 track_->Attach(GetContext()); in Update()
/foundation/arkui/ui_lite/frameworks/render/
H A Drender_buffer.h52 Attach(renBuf, areaWidth, areaHeight, stride); in RenderBuffer()
62 void Attach(uint8_t* renBuf, uint32_t areaWidth, uint32_t areaHeight, int32_t stride) in Attach() function in OHOS::RenderBuffer
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/hdi_adapter/
H A Dheadset_adapter_host_manager.cpp52 int32_t HeadsetAdapterHostManager::Attach( in Attach() function in OHOS::IntellVoiceEngine::HeadsetAdapterHostManager
56 return headsetAdapterProxy1_0_->Attach(info); in Attach()
H A Dadapter_host_manager.cpp65 int32_t AdapterHostManager::Attach(const OHOS::HDI::IntelligentVoice::Engine::V1_0::IntellVoiceEngineAdapterInfo &info) in Attach() function in OHOS::IntellVoiceEngine::AdapterHostManager
68 return adapterProxy1_0_->Attach(info); in Attach()
/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/
H A Dsvg_path.cpp63 renderNode->Attach(context_); in CreateRender()
72 renderBox->Attach(context_); in CreateRender()
/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/
H A Drender_popup_list_item.cpp49 renderBox_->Attach(GetContext()); in Update()
56 renderText_->Attach(GetContext()); in Update()
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/update/
H A Dupdate_engine.cpp112 int ret = Attach(info); in Init()
137 int32_t UpdateEngine::Attach(const IntellVoiceEngineInfo &info) in Attach() function in OHOS::IntellVoiceEngine::UpdateEngine
153 return adapter_->Attach(adapterInfo); in Attach()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_storage_encrypt_test.cpp257 int Attach(const string &dbName) in Attach() function
734 * @tc.steps:step2. Attach DB. in HWTEST_F()
737 EXPECT_EQ(Attach(STORE_ID2), SQLITE_OK); in HWTEST_F()
774 * @tc.steps:step3. Attach DB. in HWTEST_F()
777 EXPECT_NE(Attach(STORE_ID2), SQLITE_OK); in HWTEST_F()
814 * @tc.steps:step3. Attach DB. in HWTEST_F()
817 EXPECT_NE(Attach(STORE_ID2), SQLITE_OK); in HWTEST_F()
854 * @tc.steps:step3. Attach DB. in HWTEST_F()
857 EXPECT_EQ(Attach(STORE_ID2), SQLITE_OK); in HWTEST_F()
874 * @tc.desc: Attach D
[all...]
/foundation/arkui/ace_engine/adapter/preview/entrance/editing/
H A Dtext_input_impl.h33 RefPtr<TextInputConnection> Attach(const WeakPtr<TextInputClient>& client, const TextInputConfiguration& config,
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/
H A Dcanvas_render_context_base.h34 virtual void Attach(uint64_t textureId) = 0;
/foundation/multimodalinput/input/util/common/include/
H A Ddevice_observer.h28 virtual void Attach(std::shared_ptr<IDeviceObserver> observer) = 0;
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/
H A Dcanvas_render_context_base.h32 virtual void Attach(uint64_t textureId) = 0;
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_native_test/
H A Dextension_ability_thread_test.cpp73 extensionabilitythread->Attach(application, abilityRecord, mainRunner, nullptr); in HWTEST_F()
130 * @tc.name: Attach
149 extensionabilitythread->Attach(application, abilityRecord, mainRunner, nullptr); in HWTEST_F()
158 * @tc.name: Attach
177 extensionabilitythread->Attach(application, abilityRecord, mainRunner, nullptr); in HWTEST_F()
186 * @tc.name: Attach
204 extensionabilitythread->Attach(application, abilityRecord, nullptr); in HWTEST_F()
213 * @tc.name: Attach
232 extensionabilitythread->Attach(application, abilityRecord, nullptr); in HWTEST_F()
261 extensionabilitythread->Attach(applicatio in HWTEST_F()
[all...]

Completed in 12 milliseconds

12345678