Home
last modified time | relevance | path

Searched refs:firstInputTimeWithId_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dtouch_event.cpp51 firstInputTimeWithId_.find(point.id) == firstInputTimeWithId_.end()) { in TriggerTouchCallBack()
52 firstInputTimeWithId_[point.id] = point.time; in TriggerTouchCallBack()
55 firstInputTimeWithId_.find(point.id) != firstInputTimeWithId_.end()) { in TriggerTouchCallBack()
57 …int64_t inputTime = static_cast<int64_t>(firstInputTimeWithId_[point.id].time_since_epoch().count(… in TriggerTouchCallBack()
66 firstInputTimeWithId_.erase(point.id); in TriggerTouchCallBack()
H A Dtouch_event.h174 std::map<int32_t, TimeStamp> firstInputTimeWithId_; variable