Searched refs:textParam (Results 1 – 4 of 4) sorted by relevance
1422 TextParam* textParam = new TextParam; in StrokeText() local1423 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 …]
137 JSRef<JSVal> textParam = paramObject->GetProperty("text"); in SetTabBar() local138 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() local621 if (ParseJsString(textParam, text)) { in SetBottomTabBarStyle()
597 TextParam* textParam = static_cast<TextParam*>(param); in DeleteTextParam() local598 delete textParam; in DeleteTextParam() local
50 …TabBarParam(const std::string& textParam, const std::string& iconParam, TabBarBuilderFunc&& builde… in TabBarParam() argument51 : text_(textParam), icon_(iconParam), builder_(std::move(builderParam)) {}; in TabBarParam()