Home
last modified time | relevance | path

Searched refs:stylePropValue (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/
H A Dapp_style_item.cpp85 …eItem *AppStyleItem::GenerateFromJSValue(jerry_value_t stylePropName, jerry_value_t stylePropValue) in GenerateFromJSValue() argument
104 stylePropValue, pseudoType_); in GenerateFromJSValue()
110 AppStyleItem *AppStyleItem::CreateStyleItem(uint16_t keyId, const jerry_value_t stylePropValue, uin… in CreateStyleItem() argument
123 if (jerry_value_is_number(stylePropValue)) { in CreateStyleItem()
129 newStyleItem->SetFloatingValue(jerry_get_number_value(stylePropValue)); in CreateStyleItem()
131 newStyleItem->SetNumValue((int32_t)(jerry_get_number_value(stylePropValue))); in CreateStyleItem()
133 } else if (jerry_value_is_boolean(stylePropValue)) { in CreateStyleItem()
134 newStyleItem->SetBoolValue(jerry_get_boolean_value(stylePropValue)); in CreateStyleItem()
137 strValueBuffer = MallocStringOf(stylePropValue, &strLength); in CreateStyleItem()
H A Dapp_style_item.h170 …tatic AppStyleItem *GenerateFromJSValue(jerry_value_t stylePropName, jerry_value_t stylePropValue);
172 const jerry_value_t stylePropValue,
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dtext_component.cpp342 const char * const stylePropValue = GetStyleStrValue(styleItem); in SetTextAlign() local
343 uint16_t alignId = KeyParser::ParseKeyId(stylePropValue, GetStyleStrValueLen(styleItem)); in SetTextAlign()
356 stylePropValue); in SetTextAlign()