Home
last modified time | relevance | path

Searched refs:RemoveHandler (Results 1 - 25 of 39) sorted by relevance

12

/foundation/graphic/graphic_3d/lume/metaobject/src/model/
H A Dobject_provider_base.cpp77 model_->OnDataAdded()->RemoveHandler(uintptr_t(this)); in SetDataModel()
78 model_->OnDataRemoved()->RemoveHandler(uintptr_t(this)); in SetDataModel()
79 model_->OnDataMoved()->RemoveHandler(uintptr_t(this)); in SetDataModel()
H A Dcomposite_object_provider.cpp28 provider->OnDataAdded()->RemoveHandler(uintptr_t(this)); in ~CompositeObjectProvider()
29 provider->OnDataRemoved()->RemoveHandler(uintptr_t(this)); in ~CompositeObjectProvider()
30 provider->OnDataMoved()->RemoveHandler(uintptr_t(this)); in ~CompositeObjectProvider()
227 provider->OnDataAdded()->RemoveHandler(uintptr_t(this)); in OnProviderRemoved()
228 provider->OnDataRemoved()->RemoveHandler(uintptr_t(this)); in OnProviderRemoved()
229 provider->OnDataMoved()->RemoveHandler(uintptr_t(this)); in OnProviderRemoved()
/foundation/graphic/graphic_3d/lume/metaobject/src/property/
H A Dstack_property.cpp40 i->OnChanged()->RemoveHandler(uintptr_t(this)); in CleanUp()
44 i->OnChanged()->RemoveHandler(uintptr_t(this)); in CleanUp()
50 i->OnChanged()->RemoveHandler(uintptr_t(this)); in CleanUp()
69 noti->OnChanged()->RemoveHandler(uintptr_t(this)); in SetValueInValueStack()
230 i->OnChanged()->RemoveHandler(uintptr_t(this)); in PopValue()
248 i->OnChanged()->RemoveHandler(uintptr_t(this)); in RemoveValue()
293 i->OnChanged()->RemoveHandler(uintptr_t(this));
304 i->OnChanged()->RemoveHandler(uintptr_t(this));
H A Dbind.cpp29 p->OnChanged()->RemoveHandler(uintptr_t(this)); in ~Bind()
92 dep->OnChanged()->RemoveHandler(uintptr_t(this)); in RemoveDependency()
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dcontainer_observer.cpp77 container->OnAdded()->RemoveHandler(added_.first); in Unsubscribe()
80 container->OnRemoved()->RemoveHandler(removed_.first); in Unsubscribe()
83 container->OnMoved()->RemoveHandler(moved_.first); in Unsubscribe()
H A Dconnector.cpp55 event->RemoveHandler(handle_); in DetachFrom()
H A Dproxy_object.cpp33 p->OnChanged()->RemoveHandler(uintptr_t(this)); in ~ProxyObject()
105 p->OnChanged()->RemoveHandler(uintptr_t(this)); in OnPropertyRemoved()
/foundation/graphic/graphic_3d/kits/js/src/
H A DAnimationJS.cpp132 anim->OnStarted()->RemoveHandler(OnStartedToken_); in DisposeNative()
135 anim->OnFinished()->RemoveHandler(OnFinishedToken_); in DisposeNative()
229 a->OnFinished()->RemoveHandler(OnFinishedToken_); in OnFinished()
261 a->OnStarted()->RemoveHandler(OnStartedToken_); in OnStarted()
H A DPropertyProxy.cpp63 prop_->OnChanged()->RemoveHandler(changeToken_); in UpdateRemote()
102 prop_->OnChanged()->RemoveHandler(changeToken_); in ~PropertyProxy()
/foundation/multimodalinput/input/frameworks/proxy/event_handler/src/
H A Dinput_interceptor_manager.cpp45 return RemoveHandler(interceptorId, InputHandlerType::INTERCEPTOR); in RemoveInterceptor()
H A Dinput_monitor_manager.cpp50 return RemoveHandler(monitorId, InputHandlerType::MONITOR); in RemoveMonitor()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/interface/
H A DIntfClassRegistryTest.cpp176 EXPECT_TRUE(classReg.OnClassRegistered()->RemoveHandler(token1)); in HWTEST_F()
177 EXPECT_TRUE(classReg.OnClassUnregistered()->RemoveHandler(token2)); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/
H A Dintf_node.h218 META_NS::MakeCallback<META_NS::IOnChanged>([token, this]() { OnLoaded()->RemoveHandler(token); })); in OnLoadedSingleShot()
241 META_NS::MakeCallback<META_NS::IOnChanged>([token, this]() { OnBound()->RemoveHandler(token); })); in OnReady()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dintf_event.h61 virtual bool RemoveHandler(Token) = 0;
/foundation/multimodalinput/input/service/delegate_task/include/
H A Ddelegate_interface.h52 void RemoveHandler(InputHandlerType handlerType, const std::string &name);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/dump/
H A Ddump_manager.h57 API_EXPORT void RemoveHandler(const std::string &infoName, uintptr_t ptr);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/dump/
H A Ddump_manager.cpp74 void DumpManager::RemoveHandler(const std::string &infoName, uintptr_t ptr) in RemoveHandler() function in OHOS::DistributedData::DumpManager
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/property/
H A Darray_element_bind.h49 p->OnChanged()->RemoveHandler((uintptr_t)this); in ~ArrayElementBind()
H A Ddefault_value_bind.h93 source->OnChanged()->RemoveHandler(token_); in UnBind()
/foundation/graphic/graphic_3d/lume/metaobject/test/src/api/
H A DDeferredCallbackTest.cpp134 p->OnChanged()->RemoveHandler(t); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H A Danimation_controller.cpp79 running->OnChanged()->RemoveHandler(uintptr_t(this)); in UpdateRunningHandler()
H A Danimation_state.cpp64 timed->Duration()->OnChanged()->RemoveHandler(uintptr_t(this)); in Uninitialize()
405 notifyChanged->OnChanged()->RemoveHandler(uintptr_t(this)); in Detach()
/foundation/multimodalinput/input/service/subscriber/src/
H A Dkey_gesture_manager.cpp101 bool KeyGestureManager::KeyGesture::RemoveHandler(int32_t id) in RemoveHandler() function in OHOS::MMI::KeyGestureManager::KeyGesture
436 if (keyGesture->RemoveHandler(id)) {
/foundation/multimodalinput/input/service/subscriber/test/
H A Dkey_gesture_manager_ex_test.cpp125 * @tc.desc: Test the funcation RemoveHandler
137 EXPECT_FALSE(myKeyGesture->RemoveHandler(id)); in HWTEST_F()
139 EXPECT_TRUE(myKeyGesture->RemoveHandler(id)); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/
H A Devent_impl.h128 bool RemoveHandler(Token p) override

Completed in 11 milliseconds

12