Home
last modified time | relevance | path

Searched refs:cItr (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/include/
H A Devent_log_helper.h177 if (cItr != pressedKeys.cend()) { in PrintInfoLog()
179 for (; cItr != pressedKeys.cend(); ++cItr) { in PrintInfoLog()
180 tmpStr += ("," + std::to_string(*cItr)); in PrintInfoLog()
244 if (cItr != pressedKeys.cend()) { in Print()
246 for (; cItr != pressedKeys.cend(); ++cItr) { in Print()
247 tmpStr += ("," + std::to_string(*cItr)); in Print()
312 if (cItr != pressedKeys.cend()) { in PrintInfoLog()
314 for (; cItr != pressedKeys.cend(); ++cItr) { in PrintInfoLog()
315 tmpStr += ("," + std::to_string(*cItr)); in PrintInfoLog()
436 if (cItr != pressedKeys.cend()) { in Print()
[all …]
/ohos5.0/foundation/multimodalinput/input/test/facility/virtual_device/src/
H A Dgeneral_device.cpp74 std::map<std::string, std::string>::const_iterator cItr = nodes.find(name); in FindDeviceNode() local
75 if (cItr == nodes.cend()) { in FindDeviceNode()
79 std::cout << "Node name : \'" << cItr->second << "\'" << std::endl; in FindDeviceNode()
81 ss << "/dev/input/" << cItr->second; in FindDeviceNode()
126 std::map<std::string, std::string>::const_iterator cItr = nodes.find(name); in GetInputDeviceNodes() local
127 if (cItr != nodes.end()) { in GetInputDeviceNodes()
128 nodes.erase(cItr); in GetInputDeviceNodes()
/ohos5.0/base/msdp/device_status/tools/vdev/src/
H A Dvirtual_device.cpp51 std::map<std::string, std::string>::const_iterator cItr = nodes.find(name); in FindDeviceNode() local
52 if (cItr == nodes.cend()) { in FindDeviceNode()
56 FI_HILOGD("Node name : \'%{public}s\'", cItr->second.c_str()); in FindDeviceNode()
58 ss << "/dev/input/" << cItr->second; in FindDeviceNode()
107 std::map<std::string, std::string>::const_iterator cItr = nodes.find(name); in GetInputDeviceNodes() local
108 if (cItr != nodes.end()) { in GetInputDeviceNodes()
109 nodes.erase(cItr); in GetInputDeviceNodes()
/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/test/src/
H A Dtransform_point_test.cpp197 std::map<std::string, std::string>::const_iterator cItr = nodes.find(name); in GetInputDeviceNodes() local
198 if (cItr != nodes.end()) { in GetInputDeviceNodes()
199 nodes.erase(cItr); in GetInputDeviceNodes()
227 std::map<std::string, std::string>::const_iterator cItr = nodes.find(dev); in SetupVirtualStylus() local
228 if (cItr == nodes.cend()) { in SetupVirtualStylus()
232 MMI_HILOGD("Node name : \'%{public}s\'.", cItr->second.c_str()); in SetupVirtualStylus()
234 ss << "/dev/input/" << cItr->second; in SetupVirtualStylus()
/ohos5.0/foundation/multimodalinput/input/service/monitor/src/
H A Devent_monitor_handler.cpp678 std::set<SessionHandler>::const_iterator cItr = monitors_.cbegin(); in OnSessionLost() local
679 while (cItr != monitors_.cend()) { in OnSessionLost()
680 if (cItr->session_ != session) { in OnSessionLost()
681 ++cItr; in OnSessionLost()
683 cItr = monitors_.erase(cItr); in OnSessionLost()