Lines Matching defs:uiValue
8875 ArkUIAccessibilityValue uiValue;
8876 uiValue.min = ArkUIOptionalInt { valuePtr->min.isSet, valuePtr->min.value };
8877 uiValue.max = ArkUIOptionalInt { valuePtr->max.isSet, valuePtr->max.value };
8878 uiValue.current = ArkUIOptionalInt { valuePtr->current.isSet, valuePtr->current.value };
8879 uiValue.text = ArkUIOptionalCharPtr { valuePtr->text.isSet, valuePtr->text.value };
8881 fullImpl->getNodeModifiers()->getCommonModifier()->setAccessibilityValue(node->uiNodeHandle, uiValue);
8888 ArkUIAccessibilityValue uiValue;
8890 fullImpl->getNodeModifiers()->getCommonModifier()->getAccessibilityValue(node->uiNodeHandle, uiValue);
8891 value.min = ArkUI_OptionalInt { uiValue.min.isSet, uiValue.min.value };
8892 value.max = ArkUI_OptionalInt { uiValue.max.isSet, uiValue.max.value };
8893 value.current = ArkUI_OptionalInt { uiValue.current.isSet, uiValue.current.value };
8894 value.text = ArkUI_OptionalCharPtr { uiValue.text.isSet, uiValue.text.value };