Lines Matching defs:indicator

7313     ArkUI_SwiperIndicator* indicator = reinterpret_cast<ArkUI_SwiperIndicator*>(item->object);
7314 CHECK_NULL_RETURN(indicator, ERROR_CODE_PARAM_INVALID);
7315 node->swiperIndicator = indicator;
7318 indicatorProp.dimLeft = ArkUIOptionalFloat { indicator->dimLeft.isSet, indicator->dimLeft.value };
7319 indicatorProp.dimTop = ArkUIOptionalFloat { indicator->dimTop.isSet, indicator->dimTop.value };
7320 indicatorProp.dimRight = ArkUIOptionalFloat { indicator->dimRight.isSet, indicator->dimRight.value };
7321 indicatorProp.dimBottom = ArkUIOptionalFloat { indicator->dimBottom.isSet, indicator->dimBottom.value };
7322 if (indicator->type == ARKUI_SWIPER_INDICATOR_TYPE_DOT) {
7324 indicatorProp.itemWidth = ArkUIOptionalFloat { indicator->itemWidth.isSet, indicator->itemWidth.value };
7325 indicatorProp.itemHeight = ArkUIOptionalFloat { indicator->itemHeight.isSet, indicator->itemHeight.value };
7327 ArkUIOptionalFloat { indicator->selectedItemWidth.isSet, indicator->selectedItemWidth.value };
7329 ArkUIOptionalFloat { indicator->selectedItemHeight.isSet, indicator->selectedItemHeight.value };
7330 indicatorProp.maskValue = ArkUIOptionalInt { indicator->maskValue.isSet, indicator->maskValue.value };
7331 indicatorProp.colorValue = ArkUIOptionalUint { indicator->colorValue.isSet, indicator->colorValue.value };
7333 ArkUIOptionalUint { indicator->selectedColorValue.isSet, indicator->selectedColorValue.value };
7335 ArkUIOptionalInt { indicator->maxDisplayCount.isSet, indicator->maxDisplayCount.value };
7354 ArkUI_SwiperIndicator* indicator = reinterpret_cast<ArkUI_SwiperIndicator*>(node->swiperIndicator);
7355 if (!indicator) {
7361 indicator->dimLeft.value = props.dimLeft.value;
7362 indicator->dimTop.value = props.dimTop.value;
7363 indicator->dimRight.value = props.dimRight.value;
7364 indicator->dimBottom.value = props.dimBottom.value;
7366 indicator->itemWidth.value = props.itemWidth.value;
7367 indicator->itemHeight.value = props.itemHeight.value;
7368 indicator->selectedItemWidth.value = props.selectedItemWidth.value;
7369 indicator->selectedItemHeight.value = props.selectedItemHeight.value;
7370 indicator->maskValue.value = props.maskValue.value;
7371 indicator->colorValue.value = props.colorValue.value;
7372 indicator->selectedColorValue.value = props.selectedColorValue.value;
7373 indicator->maxDisplayCount.value = props.maxDisplayCount.value;
7375 indicator = nullptr;
7380 g_attributeItem.object = indicator;