Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ui_lite/frameworks/components/
H A Dui_canvas.cpp1422 TextParam* textParam = new TextParam; in StrokeText() local
1423 if (textParam == nullptr) { in StrokeText()
1427 textParam->text = text; in StrokeText()
1428 textParam->fontStyle = fontStyle; in StrokeText()
1431 textParam->position = point; in StrokeText()
1433 cmd.param = textParam; in StrokeText()
1491 if (textParam == nullptr) { in DoDrawText()
1494 if (textParam->fontStyle.fontSize <= 0) { in DoDrawText()
1497 Text* text = textParam->textComment; in DoDrawText()
1498 text->SetText(textParam->text); in DoDrawText()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_tab_content.cpp137 JSRef<JSVal> textParam = paramObject->GetProperty("text"); in SetTabBar() local
138 auto isTextEmpty = textParam->IsEmpty() || textParam->IsUndefined() || textParam->IsNull(); in SetTabBar()
142 if (ParseJsString(textParam, text)) { in SetTabBar()
618 JSRef<JSVal> textParam = paramObject->GetProperty("text"); in SetBottomTabBarStyle() local
621 if (ParseJsString(textParam, text)) { in SetBottomTabBarStyle()
/ohos5.0/foundation/arkui/ui_lite/interfaces/kits/components/
H A Dui_canvas.h597 TextParam* textParam = static_cast<TextParam*>(param); in DeleteTextParam() local
598 delete textParam; in DeleteTextParam() local
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_bar_pattern.h50 …TabBarParam(const std::string& textParam, const std::string& iconParam, TabBarBuilderFunc&& builde… in TabBarParam() argument
51 : text_(textParam), icon_(iconParam), builder_(std::move(builderParam)) {}; in TabBarParam()