Lines Matching defs:valuePtr
8864 ArkUI_AccessibilityValue* valuePtr = reinterpret_cast<ArkUI_AccessibilityValue*>(item->object);
8865 CHECK_NULL_RETURN(valuePtr, ERROR_CODE_PARAM_INVALID);
8866 if (valuePtr->current.isSet && ((!valuePtr->min.isSet) || (!valuePtr->max.isSet))) {
8869 if (valuePtr->max.value < valuePtr->min.value) {
8872 if ((valuePtr->current.value < valuePtr->min.value) || (valuePtr->current.value > valuePtr->max.value)) {
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 };