Home
last modified time | relevance | path

Searched refs:IsInteger (Results 1 – 8 of 8) sorted by relevance

/base/msdp/device_status/tools/vdev/src/
Dvirtual_touchscreen_builder.cpp289 if (!Utility::IsInteger(optarg) || (optind < 0) || (optind + 1 >= argc) || in ReadDownAction()
290 !Utility::IsInteger(argv[optind]) || !Utility::IsInteger(argv[optind + 1])) { in ReadDownAction()
300 while ((optind < argc) && Utility::IsInteger(argv[optind])) { in ReadDownAction()
310 …if (!Utility::IsInteger(optarg) || (optind < 0) || (optind + 1 >= argc) || !Utility::IsInteger(arg… in ReadMoveAction()
318 if ((optind + 1 < argc) && Utility::IsInteger(argv[optind + 1])) { in ReadMoveAction()
323 while ((optind < argc) && Utility::IsInteger(argv[optind])) { in ReadMoveAction()
332 if (!Utility::IsInteger(optarg)) { in ReadUpAction()
347 …if (!Utility::IsInteger(optarg) || (optind < 0) || (optind + 1 >= argc) || !Utility::IsInteger(arg… in ReadMoveToAction()
348 !Utility::IsInteger(argv[optind + 1])) { in ReadMoveToAction()
358 while ((optind < argc) && Utility::IsInteger(argv[optind])) { in ReadMoveToAction()
[all …]
Dvirtual_mouse_builder.cpp284 if (!Utility::IsInteger(std::string(optarg)) || (optind < 0) || (optind >= argc)) { in ReadMoveAction()
292 if ((argv[optind] != nullptr) && Utility::IsInteger(std::string(argv[optind]))) { in ReadMoveAction()
304 …if (!Utility::IsInteger(optarg) || (optind < 0) || (optind >= argc) || !Utility::IsInteger(argv[op… in ReadMoveToAction()
313 while ((optind < argc) && Utility::IsInteger(argv[optind])) { in ReadMoveToAction()
322 …if (!Utility::IsInteger(optarg) || (optind < 0) || (optind >= argc) || !Utility::IsInteger(argv[op… in ReadDragToAction()
335 while ((optind < argc) && Utility::IsInteger(argv[optind])) { in ReadDragToAction()
364 if (!Utility::IsInteger(std::string(optarg))) { in ReadScrollAction()
Dvirtual_keyboard_builder.cpp196 if (!Utility::IsInteger(optarg)) { in ReadDownAction()
211 if (!Utility::IsInteger(optarg)) { in ReadUpAction()
Dvirtual_device_builder.cpp124 if (!Utility::IsInteger(std::string(dent->d_name))) { in Unmount()
354 if (!Utility::IsInteger(std::string(path))) { in WaitFor()
/base/msdp/device_status/utils/common/include/
Dutility.h55 static bool IsInteger(const std::string &target);
/base/msdp/device_status/utils/common/
Dlibdevicestatus_util_map30 …"OHOS::Msdp::DeviceStatus::Utility::IsInteger(std::__h::basic_string<char, std::__h::char_traits<c…
/base/msdp/device_status/utils/common/src/
Dutility.cpp101 bool Utility::IsInteger(const std::string &target) in IsInteger() function in OHOS::Msdp::DeviceStatus::Utility
/base/msdp/device_status/services/device_manager/src/
Ddevice.cpp381 if (configItem.empty() || value.empty() || !Utility::IsInteger(value)) { in ConfigItemSwitch()