/ohos5.0/foundation/resourceschedule/ffrt/src/queue/ |
H A D | base_queue.cpp | 64 void BaseQueue::Remove() in Remove() function in ffrt::BaseQueue 67 Remove(whenMap_); in Remove() 70 void BaseQueue::Remove(std::multimap<uint64_t, QueueTask*>& whenMap) in Remove() function in ffrt::BaseQueue 78 int BaseQueue::Remove(const char* name) in Remove() function in ffrt::BaseQueue 81 return Remove(name, whenMap_); in Remove() 84 int BaseQueue::Remove(const char* name, std::multimap<uint64_t, QueueTask*>& whenMap) in Remove() function in ffrt::BaseQueue 104 int BaseQueue::Remove(const QueueTask* task) in Remove() function in ffrt::BaseQueue 107 return Remove(task, whenMap_); in Remove() 110 int BaseQueue::Remove(const QueueTask* task, std::multimap<uint64_t, QueueTask*>& whenMap) in Remove() function in ffrt::BaseQueue
|
H A D | base_queue.h | 48 virtual void Remove(); 49 virtual int Remove(const char* name); 50 virtual int Remove(const QueueTask* task); 85 void Remove(std::multimap<uint64_t, QueueTask*>& whenMap); 86 int Remove(const QueueTask* task, std::multimap<uint64_t, QueueTask*>& whenMap); 87 int Remove(const char* name, std::multimap<uint64_t, QueueTask*>& whenMap);
|
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_picker/ |
H A D | ui_test_ui_picker.cpp | 43 container_->Remove(setLoopBtn_); in TearDown() 44 container_->Remove(setLoopOffBtn_); in TearDown() 45 container_->Remove(setSelectBtn_); in TearDown() 46 container_->Remove(setLeftToRightBtn_); in TearDown() 47 container_->Remove(setRightToLeftBtn_); in TearDown() 48 container_->Remove(setMarginBtn_); in TearDown() 49 container_->Remove(selectIndex_); in TearDown() 50 container_->Remove(selectTime_); in TearDown() 51 container_->Remove(picker1_); in TearDown() 52 container_->Remove(picker2_); in TearDown() [all …]
|
/ohos5.0/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_swipe_view_unit_test.cpp | 108 swipeView_->Remove(view); 139 swipeView_->Remove(preView); 140 swipeView_->Remove(view); 163 swipeView_->Remove(view); 212 swipeView_->Remove(view); 213 swipeView_->Remove(view2); 292 swipeView_->Remove(view1); 293 swipeView_->Remove(view2); 294 swipeView_->Remove(view3);
|
H A D | ui_radio_button_unit_test.cpp | 132 view->Remove(radioBtn1); 133 view->Remove(radioBtn2); 134 view->Remove(radioBtn3); 135 view->Remove(radioBtn4); 136 view->Remove(radioBtn5);
|
H A D | ui_view_group_unit_test.cpp | 120 viewGroup_->Remove(view); 199 viewGroup->Remove(view1); 203 viewGroup->Remove(view2); 216 viewGroup->Remove(view1); 298 viewGroup->Remove(view3); 408 group->Remove(label); 464 group->Remove(label);
|
/ohos5.0/base/location/test/location_locator/source/ |
H A D | work_record_test.cpp | 62 EXPECT_EQ(false, emptyWorkrecord->Remove("emptyRecord")); 63 EXPECT_EQ(false, emptyWorkrecord->Remove(SYSTEM_UID, 0, "emptyRecord", "10000")); 77 EXPECT_EQ(false, workrecord->Remove("WrongName")); 79 EXPECT_EQ(true, workrecord->Remove("name")); 94 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UID, 0, "WrongName", "0")); 96 EXPECT_EQ(false, workrecord->Remove(999, 0, "name", "0")); 98 EXPECT_EQ(false, workrecord->Remove(999, 0, "WrongName", "0")); 100 EXPECT_EQ(false, workrecord->Remove(999, 1, "name", "0")); 102 EXPECT_EQ(false, workrecord->Remove(999, 1, "WrongName", "0")); 104 EXPECT_EQ(false, workrecord->Remove(SYSTEM_UID, 1, "WrongName", "0")); [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/platform/eventhandler/ |
H A D | event_queue.h | 77 void Remove(const std::shared_ptr<EventHandler> &owner); 85 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId); 94 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t param); 102 void Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name); 228 void Remove(const RemoveFilter &filter);
|
/ohos5.0/base/notification/eventhandler/test/fuzztest/eventqueueannex_fuzzer/ |
H A D | eventqueueannex_fuzzer.cpp | 60 eventQueue.Remove(myHandler); in DoSomethingInterestingWithMyAPI() 61 eventQueue.Remove(myHandler, innerEventId); in DoSomethingInterestingWithMyAPI() 62 eventQueue.Remove(myHandler, innerEventId, param); in DoSomethingInterestingWithMyAPI() 63 eventQueue.Remove(myHandler, stringData); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/common/test/ |
H A D | executor_pool_test.cpp | 93 executorPool_->Remove(taskId); 118 executorPool_->Remove(id); 128 HWTEST_F(ExecutorPoolTest, Remove, TestSize.Level0) 138 ASSERT_TRUE(executorPool_->Remove(temp)); 162 executorPool_->Remove(temp); 206 executors->Remove(taskId, false); in __anon319724040902()
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/animator/ |
H A D | animator.cpp | 24 AnimatorManager::GetInstance()->Remove(this); in ~Animator() 41 AnimatorManager::GetInstance()->Remove(this); in Stop() 47 AnimatorManager::GetInstance()->Remove(this); in Pause()
|
/ohos5.0/base/notification/eventhandler/frameworks/eventhandler/include/ |
H A D | event_queue_ffrt.h | 64 LOCAL_API void Remove(const std::shared_ptr<EventHandler> &owner) override; 72 … LOCAL_API void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) override; 81 …LOCAL_API void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t p… 89 …LOCAL_API bool Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name) overrid…
|
H A D | event_queue_base.h | 85 void Remove(const std::shared_ptr<EventHandler> &owner) override; 93 void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) override; 102 …void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t param) over… 110 bool Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name) override; 239 LOCAL_API void Remove(const RemoveFilter &filter);
|
/ohos5.0/foundation/arkui/ui_lite/interfaces/kits/common/ |
H A D | spannable_string.h | 139 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 141 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 153 *tempSpan = tempList.Remove(*tempSpan)->prev_; in EqualInsert() 181 *tempSpan = tempList.Remove(*tempSpan)->prev_; in UnequalInsert() 191 *tempSpan = tempList.Remove(*tempSpan)->prev_; in UnequalInsert()
|
/ohos5.0/foundation/distributeddatamgr/relational_store/rdbmock/frameworks/native/rdb/ |
H A D | lru_bucket.h | 73 Remove(it->second); 96 Remove(it->second); in Set() 166 Remove(it->second); in Delete() 188 Remove(node); in PopBack() 197 void Remove(Node *node) in Remove() function
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/common/ |
H A D | lru_bucket.h | 73 Remove(it->second); 96 Remove(it->second); in Set() 166 Remove(it->second); in Delete() 188 Remove(node); in PopBack() 197 void Remove(Node *node) in Remove() function
|
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/multiThread/ |
H A D | rdb_connection_rd_test.cpp | 138 executors_->Remove(taskId1, true); 139 executors_->Remove(taskId2, true); 174 executors_->Remove(taskId1, true); 175 executors_->Remove(taskId2, true);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/platform/eventhandler_impl/ |
H A D | event_queue.cpp | 142 Remove(filter); in RemoveOrphan() 159 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner) in Remove() function in OHOS::AppExecFwk::EventQueue 168 Remove(filter); in Remove() 171 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) in Remove() function in OHOS::AppExecFwk::EventQueue 182 Remove(filter); in Remove() 185 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t … in Remove() function in OHOS::AppExecFwk::EventQueue 197 Remove(filter); in Remove() 200 void EventQueue::Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name) in Remove() function in OHOS::AppExecFwk::EventQueue 211 Remove(filter); in Remove() 214 void EventQueue::Remove(const RemoveFilter &filter) in Remove() function in OHOS::AppExecFwk::EventQueue
|
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | insight_intent_execute_param.cpp | 125 insightIntentParam.Remove(AAFwk::Want::PARAM_RESV_CALLER_TOKEN); in UpdateInsightIntentCallerInfo() 129 insightIntentParam.Remove(AAFwk::Want::PARAM_RESV_CALLER_UID); in UpdateInsightIntentCallerInfo() 133 insightIntentParam.Remove(AAFwk::Want::PARAM_RESV_CALLER_PID); in UpdateInsightIntentCallerInfo() 137 insightIntentParam.Remove(AAFwk::Want::PARAM_RESV_CALLER_BUNDLE_NAME); in UpdateInsightIntentCallerInfo()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/ |
H A D | object_container.h | 80 bool Remove(IContainer::SizeType index) override in META_BEGIN_NAMESPACE() 82 return container_->Remove(index); in META_BEGIN_NAMESPACE() 84 bool Remove(const IObject::Ptr& child) override in META_BEGIN_NAMESPACE() 86 return container_->Remove(child); in META_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_view_zindex/ |
H A D | ui_test_view_zindex.cpp | 177 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn() 180 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn() 183 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn() 186 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn() 193 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn() 195 zIndexViewGroup->Remove(zIndexView); in ClickModifyBtn()
|
/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/network/executer/ |
H A D | iexecuter_test.cpp | 136 EXPECT_TRUE(executer->Remove(nullptr) == ERR_OK); 139 EXPECT_TRUE(executer->Remove(nullptr) != ERR_OK); 144 EXPECT_TRUE(executer->Remove(rule) == ERR_OK); 147 EXPECT_FALSE(executer->Remove(rule) == ERR_OK); 155 EXPECT_TRUE(executer->Remove(rule) == ERR_OK);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/ability_cache_manager_test/ |
H A D | ability_cache_manager_test.cpp | 132 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(removeRec); 172 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(removeRec); 213 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(removeRec); 272 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord2); 273 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord3); 319 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord1); 320 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord3); 380 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord1); 381 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord2); 382 OHOS::AAFwk::AbilityCacheManager::GetInstance().Remove(abilityRecord4); [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | attachment_container.cpp | 56 bool AttachmentContainer::Remove(IContainer::SizeType index) in Remove() function in AttachmentContainer 58 return Remove(GetAt(index)); in Remove() 61 bool AttachmentContainer::Remove(const IObject::Ptr& child) in Remove() function in AttachmentContainer 144 return ObjectContainerFwd::Remove(attachment); in Detach()
|
/ohos5.0/base/notification/eventhandler/interfaces/inner_api/ |
H A D | event_queue.h | 160 virtual void Remove(const std::shared_ptr<EventHandler> &owner) = 0; 168 virtual void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId) = 0; 177 …virtual void Remove(const std::shared_ptr<EventHandler> &owner, uint32_t innerEventId, int64_t par… 185 virtual bool Remove(const std::shared_ptr<EventHandler> &owner, const std::string &name) = 0;
|