Home
last modified time | relevance | path

Searched refs:inputValue (Results 1 - 12 of 12) sorted by relevance

/foundation/multimodalinput/input/tools/event_inject/src/
H A Dinjection_event_dispatch.cpp178 bool InjectionEventDispatch::CheckValue(const std::string &inputValue) in CheckValue() argument
180 if ((inputValue.length()) > INPUT_VALUE_LENGTH) { in CheckValue()
181 MMI_HILOGE("The value entered is out of range, value:%{public}s", inputValue.c_str()); in CheckValue()
184 bool isValueNumber = regex_match(inputValue, std::regex("(-[\\d+]+)|(\\d+)")); in CheckValue()
186 int32_t numberValue = stoi(inputValue); in CheckValue()
227 const std::string &inputValue) in CheckEventValue()
237 if (!(CheckValue(inputValue))) { in CheckEventValue()
238 MMI_HILOGE("Input error in value, value:%{public}s", inputValue.c_str()); in CheckEventValue()
226 CheckEventValue(const std::string &inputType, const std::string &inputCode, const std::string &inputValue) CheckEventValue() argument
/foundation/arkui/ace_engine/advanced_ui_component/counter/interfaces/
H A Dcounter.js268 this.__inputValue = new ObservedPropertySimplePU('0', this, "inputValue");
343 if (v20.inputValue !== undefined) {
344 this.inputValue = v20.inputValue;
643 get inputValue() {
647 set inputValue(m20) {
923 this.inputValue = this.value.toString();
944 this.inputValue = this.value.toString();
949 this.inputValue = this.value.toString();
994 this.inputValue
[all...]
/foundation/multimodalinput/input/tools/event_inject/include/
H A Dinjection_event_dispatch.h77 bool CheckValue(const std::string &inputValue);
79 const std::string &inputValue);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/loading_progress/
H A Dloading_progress_utill.h141 static float CalculateValue(float inputValue, float minInput, float maxInput, float minOutPut, float maxOutput) in CalculateValue() argument
143 auto inputScale = (inputValue - minInput) / (maxInput - minInput); in CalculateValue()
/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Dsize.h35 inline static bool IsValueInfinite(double inputValue) in IsValueInfinite() argument
37 return NearEqual(inputValue, INFINITE_SIZE); in IsValueInfinite()
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/
H A Ddom_button_util.cpp123 auto inputValue = attrs.find(DOM_INPUT_VALUE); in SetChildAttr() local
124 if (inputValue != attrs.end()) { in SetChildAttr()
125 textChild->SetData(inputValue->second); in SetChildAttr()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dvideo_view.h174 void CallJSFunctionWithOnePara(const jerry_value_t &callBackFunc, const int64_t inputValue);
H A Dvideo_view.cpp520 void VideoView::CallJSFunctionWithOnePara(const jerry_value_t &callBackFunc, const int64_t inputValue) in CallJSFunctionWithOnePara() argument
525 jerry_value_t value = jerry_create_number(inputValue); in CallJSFunctionWithOnePara()
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_manager_test/
H A Dnet_conn_service_test.cpp1290 std::string inputValue = "12345678910"; in HWTEST_F() local
1291 bool ret = NetConnService::GetInstance()->IsValidDecValue(inputValue); in HWTEST_F()
1294 inputValue = "123456"; in HWTEST_F()
1295 ret = NetConnService::GetInstance()->IsValidDecValue(inputValue); in HWTEST_F()
1298 inputValue = "6.66"; in HWTEST_F()
1299 ret = NetConnService::GetInstance()->IsValidDecValue(inputValue); in HWTEST_F()
/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_conn_service.cpp1909 bool NetConnService::IsValidDecValue(const std::string &inputValue) in IsValidDecValue() argument
1911 if (inputValue.length() > INPUT_VALUE_LENGTH) { in IsValidDecValue()
1912 NETMGR_LOG_E("The value entered is out of range, value:%{public}s", inputValue.c_str()); in IsValidDecValue()
1915 bool isValueNumber = regex_match(inputValue, std::regex("(-[\\d+]+)|(\\d+)")); in IsValidDecValue()
1917 int64_t numberValue = std::stoll(inputValue); in IsValidDecValue()
/foundation/communication/netmanager_base/services/netconnmanager/include/
H A Dnet_conn_service.h479 bool IsValidDecValue(const std::string &inputValue);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_pattern.cpp2856 auto inputValue = layoutProperty->GetSetCounterValue(DEFAULT_MODE); in HandleCountStyle() local
2858 if (inputValue == DEFAULT_MODE) { in HandleCountStyle()
2865 } else if (inputValue != ILLEGAL_VALUE) { in HandleCountStyle()
2881 auto inputValue = layoutProperty->GetSetCounterValue(DEFAULT_MODE); in ProcessUnderlineColorOnModifierDone() local
2882 if (inputValue == ILLEGAL_VALUE) { in ProcessUnderlineColorOnModifierDone()
2886 if (inputValue != DEFAULT_MODE && !showBorder) { in ProcessUnderlineColorOnModifierDone()

Completed in 45 milliseconds