Home
last modified time | relevance | path

Searched refs:checked (Results 1 - 25 of 62) sorted by relevance

123

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H A Dradio_paint_method.h41 void UpdateUIStatus(bool checked) in UpdateUIStatus() argument
43 if (checked != radioModifier_->GetIsCheck()) { in UpdateUIStatus()
44 if (!enabled_ && !checked && Container::GreatOrEqualAPITargetVersion(PlatformVersion::VERSION_TWELVE)) { in UpdateUIStatus()
51 radioModifier_->UpdateIndicatorAnimation(checked); in UpdateUIStatus()
53 radioModifier_->UpdateIsOnAnimatableProperty(checked); in UpdateUIStatus()
56 } else if (!checked && isFirstCreated_) { in UpdateUIStatus()
57 radioModifier_->InitOpacityScale(checked); in UpdateUIStatus()
65 bool checked = false; variable
67 checked = paintProperty->GetRadioCheckValue();
92 UpdateUIStatus(checked); variable
[all...]
H A Dradio_model_ng.h26 RadioConfiguration(const std::string& value, bool checked, bool enabled) in RadioConfiguration() argument
27 : CommonConfiguration(enabled), value_(value), checked_(checked) in RadioConfiguration()
H A Dradio_modifier.h76 void PaintRadio(RSCanvas& canvas, bool checked, const SizeF& contentSize, const OffsetF& contentOffset) const;
77 void PaintIndicator(RSCanvas& canvas, bool checked, const SizeF& contentSize, const OffsetF& contentOffset) const;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dcode_sign_helper.cpp29 void CodeSignHelper::SetHapChecked(bool checked) in SetHapChecked() argument
31 isHapChecked = checked; in SetHapChecked()
/foundation/multimodalinput/input/service/filter/test/
H A Dmock.cpp20 std::shared_ptr<InputDevice> InputDeviceManager::GetInputDevice(int32_t deviceId, bool checked) const in GetInputDevice()
25 return DfsMessageParcel::messageParcel->GetInputDevice(deviceId, checked); in GetInputDevice()
H A Dmock.h32 virtual std::shared_ptr<InputDevice> GetInputDevice(int32_t deviceId, bool checked) = 0;
40 MOCK_METHOD2(GetInputDevice, std::shared_ptr<InputDevice>(int32_t deviceId, bool checked));
/foundation/multimodalinput/input/service/interceptor/test/
H A Dmock.h31 virtual std::shared_ptr<InputDevice> GetInputDevice(int32_t deviceId, bool checked) = 0;
38 MOCK_METHOD2(GetInputDevice, std::shared_ptr<InputDevice>(int32_t deviceId, bool checked));
H A Dmock.cpp42 std::shared_ptr<InputDevice> InputDeviceManager::GetInputDevice(int32_t deviceId, bool checked) const in GetInputDevice()
47 return DfsMessageParcel::messageParcel->GetInputDevice(deviceId, checked); in GetInputDevice()
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dtoggle_composed_element.cpp52 auto checked = renderToggle ? renderToggle->GetToggleComponent()->GetCheckedState() : false; in GetChecked() local
53 return ConvertBoolToString(checked); in GetChecked()
H A Dradio_composed_element.cpp26 { "checked", [](const RadioComposedElement& inspector) { return inspector.GetChecked(); } }
34 DumpLog::GetInstance().AddDesc(std::string("checked: ").append(GetChecked())); in Dump()
60 auto checked = render ? render->GetChecked() : false; in GetChecked() local
61 return ConvertBoolToString(checked); in GetChecked()
H A Dswitch_composed_element.cpp54 auto checked = renderSwitch ? renderSwitch->GetChecked() : false; in GetChecked() local
55 return ConvertBoolToString(checked); in GetChecked()
H A Dcheckbox_composed_element.cpp61 auto checked = renderCheckbox ? renderCheckbox->GetChecked() : false; in GetChecked() local
62 return ConvertBoolToString(checked); in GetChecked()
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/
H A Ddom_radio_util.cpp101 bool checked = false; in SetChildAttr() local
104 checked = StringToBool(attr.second); in SetChildAttr()
113 if (checked) { in SetChildAttr()
115 component->SetOriginChecked(checked); in SetChildAttr()
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Dform_value.h90 void SetChecked(bool checked) in SetChecked() argument
92 isChecked_ = checked; in SetChecked()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dinput_radio_component.cpp46 bool checked = jerry_get_boolean_value(attrValue); in SetPrivateAttribute() local
48 checked ? UICheckBox::UICheckBoxState::SELECTED : UICheckBox::UICheckBoxState::UNSELECTED; in SetPrivateAttribute()
52 HILOG_ERROR(HILOG_MODULE_ACE, "the checkbox checked is error value"); in SetPrivateAttribute()
H A Dinput_checkbox_component.cpp46 bool checked = jerry_get_boolean_value(attrValue); in SetPrivateAttribute() local
48 checked ? UICheckBox::UICheckBoxState::SELECTED : UICheckBox::UICheckBoxState::UNSELECTED; in SetPrivateAttribute()
52 HILOG_ERROR(HILOG_MODULE_ACE, "the checkbox checked is error value"); in SetPrivateAttribute()
/foundation/multimodalinput/input/service/window_manager/test/
H A Dmock.h49 virtual std::shared_ptr<InputDevice> GetInputDevice(int32_t deviceId, bool checked) = 0;
67 MOCK_METHOD2(GetInputDevice, std::shared_ptr<InputDevice>(int32_t deviceId, bool checked));
/foundation/arkui/ace_engine/frameworks/component_test/core/
H A Dcomponent_test_matcher_impl.cpp135 void ComponentTestMatcherImpl::SetChecked(bool checked) in SetChecked() argument
137 matchFuncs.emplace_back([checked](ComponentTestComponentImpl& componentImpl) -> bool { in SetChecked()
139 return componentImpl.IsCheckedImpl(errInfo) == checked && errInfo.errCode == ErrCode::RET_OK; in SetChecked()
/foundation/arkui/ace_engine/frameworks/core/accessibility/
H A Dnative_interface_accessibility_impl.h161 void SetChecked(bool checked) in SetChecked()
163 this->checked = checked; in SetChecked()
168 return checked; in IsChecked()
455 bool checked = false; member
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dcode_sign_helper.h39 void SetHapChecked(bool checked);
/foundation/arkui/ace_engine/frameworks/core/components/checkable/
H A Dcheckable_component.h426 void UpdateRenderChecked(CheckableStatus checked) in UpdateRenderChecked() argument
429 groupValueUpdateHandler_(checked); in UpdateRenderChecked()
443 void UpdateItemChecked(bool checked) in UpdateItemChecked() argument
446 itemValueUpdateHandler_(checked); in UpdateItemChecked()
652 void SetOriginChecked(bool checked) in SetOriginChecked() argument
654 originChecked_ = checked; in SetOriginChecked()
H A Drender_checkbox.h38 void SetChecked(bool checked) in SetChecked() argument
40 checked_ = checked; in SetChecked()
H A Drender_checkbox.cpp60 checkbox->SetGroupValueUpdateHandler([weak = AceType::WeakClaim(this)](CheckableStatus checked) { in Update()
62 if (renderCheckbox && renderCheckbox->UpdateGroupValue(checked)) { in Update()
66 checkbox->SetItemValueUpdateHandler([weak = AceType::WeakClaim(this)](bool checked) { in Update()
68 if (renderCheckbox && renderCheckbox->UpdateItemValue(checked)) { in Update()
/foundation/multimodalinput/input/test/fuzztest/inputdevicemanager_fuzzer/
H A Dinputdevicemanager_fuzzer.cpp32 bool checked = true; in InputDeviceManagerFuzzTest() local
48 INPUT_DEV_MGR->GetInputDevice(deviceId, checked); in InputDeviceManagerFuzzTest()
/foundation/arkui/ace_engine/frameworks/core/components/picker/
H A Dpicker_datetime_component.h64 void OnLunarCallback(bool checked, std::vector<std::string>& resultTags) override;

Completed in 9 milliseconds

123