Lines Matching defs:const
45 int32_t DelegateInterface::OnPostSyncTask(DTaskCallback cb) const
56 InputHandlerType type, std::shared_ptr<PointerEvent> event) const
65 InputHandlerType type, std::shared_ptr<PointerEvent> event) const
68 for (const auto &handler : handlers) {
98 int32_t DelegateInterface::AddHandler(InputHandlerType type, const HandlerSummary &summary)
106 const HandleEventType currentType = GetEventType(type);
109 const HandleEventType newType = GetEventType(type);
136 HandleEventType DelegateInterface::GetEventType(InputHandlerType type) const
143 for (const auto &handler : handlers) {
151 uint32_t DelegateInterface::GetDeviceTags(InputHandlerType type) const
161 for (const auto &handler : handlers) {
169 void DelegateInterface::RemoveLocal(InputHandlerType type, const std::string &name, uint32_t &deviceTags)
186 int32_t DelegateInterface::GetPriority(InputHandlerType type) const
196 void DelegateInterface::RemoveHandler(InputHandlerType type, const std::string &name)
198 const HandleEventType currentType = GetEventType(type);
202 const HandleEventType newType = GetEventType(type);
203 const int32_t newLevel = GetPriority(type);
204 const uint64_t newTags = GetDeviceTags(type);
227 bool DelegateInterface::HasHandler(const std::string &name) const
230 [name](const auto &item) {