Home
last modified time | relevance | path

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

/ohos5.0/base/print/print_fwk/frameworks/ohscan/src/
H A Dohscan.cpp308 std::string strvalue = std::string(value); in GetScanOptionValue() local
310 if (!valueMap.numList.count(strvalue)) { in GetScanOptionValue()
311 SCAN_HILOGE("not exit this value: %{public}s", strvalue.c_str()); in GetScanOptionValue()
315 if (!ScanUtil::ConvertToInt(strvalue, intValue)) { in GetScanOptionValue()
316 SCAN_HILOGE("strvalue : %{public}s can not parse to number.", strvalue.c_str()); in GetScanOptionValue()
322 if (!valueMap.strList.count(strvalue)) { in GetScanOptionValue()
323 SCAN_HILOGE("not exit this value: %{public}s", strvalue.c_str()); in GetScanOptionValue()
326 scanOptionValue.SetStrValue(strvalue); in GetScanOptionValue()