Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H A Dradio_accessibility_property.cpp41 auto radioEventHub = frameNode->GetEventHub<NG::RadioEventHub>(); in GetText() local
42 auto value = radioEventHub ? radioEventHub->GetValue() : ""; in GetText()
H A Dradio_pattern.h148 auto radioEventHub = host->GetEventHub<NG::RadioEventHub>(); in ToJsonValue() local
149 auto value = radioEventHub ? radioEventHub->GetValue() : ""; in ToJsonValue()
150 auto group = radioEventHub ? radioEventHub->GetGroup() : ""; in ToJsonValue()
H A Dradio_pattern.cpp68 auto radioEventHub = frameNode->GetEventHub<NG::RadioEventHub>(); in OnDetachFromFrameNode() local
69 CHECK_NULL_VOID(radioEventHub); in OnDetachFromFrameNode()
70 groupManager->RemoveRadioFromGroup(radioEventHub->GetGroup(), frameNode->GetId()); in OnDetachFromFrameNode()
515 auto radioEventHub = GetEventHub<RadioEventHub>(); in UpdateUncheckStatus() local
516 CHECK_NULL_VOID(radioEventHub); in UpdateUncheckStatus()
518 radioEventHub->UpdateChangeEvent(false); in UpdateUncheckStatus()
698 auto radioEventHub = GetEventHub<RadioEventHub>(); in UpdateGroupCheckStatus() local
699 CHECK_NULL_VOID(radioEventHub); in UpdateGroupCheckStatus()
701 groupManager->UpdateRadioGroupValue(radioEventHub->GetGroup(), frameNode->GetId()); in UpdateGroupCheckStatus()
714 radioEventHub->UpdateChangeEvent(check); in UpdateGroupCheckStatus()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/radio/
H A Dradio_test_ng.cpp1236 auto radioEventHub = frameNode->GetEventHub<NG::RadioEventHub>(); variable
1237 ASSERT_NE(radioEventHub, nullptr);
1238 radioEventHub->SetValue(VALUE);