Home
last modified time | relevance | path

Searched refs:textVal (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dtab_content_model_impl.cpp106 auto textVal = text.value_or(DEFAULT_TAB_BAR_NAME); in SetTabBar() local
108 tabBarChild = CreateTabBarLabelComponent(tabContentItemComponent, textVal); in SetTabBar()
110 tabContentItemComponent->SetBarText(textVal); in SetTabBar()
174 RefPtr<V2::TabContentItemComponent>& tabContent, const std::optional<std::string>& textVal) in ProcessTabBarLabel() argument
176 std::string textStr = textVal.value_or(DEFAULT_TAB_BAR_NAME); in ProcessTabBarLabel()
186 const std::optional<std::string>& textVal, const std::optional<std::string>& iconVal) in ProcessTabBarTextIconPair() argument
189 return ProcessTabBarLabel(tabContent, textVal); in ProcessTabBarTextIconPair()
192 auto textStr = textVal.value_or(DEFAULT_TAB_BAR_NAME); in ProcessTabBarTextIconPair()
H A Dtab_content_model_impl.h51 const std::optional<std::string>& textVal, const std::optional<std::string>& iconVal);
55 RefPtr<V2::TabContentItemComponent>& tabContent, const std::optional<std::string>& textVal);
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Dui-js-components-qrcode.md136 <qrcode value="{{textVal}}"></qrcode>
162 textVal: ''
165 this.textVal = e.value
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/
H A Dmarquee_tdd_test.cpp256 const char *textVal = "hello world"; in ComponentMarqueeStyleSetTest011() local
258 jerry_value_t textValue = jerry_create_string(reinterpret_cast<const jerry_char_t *>(textVal)); in ComponentMarqueeStyleSetTest011()
301 const char *textVal = "hello world"; in ComponentMarqueeStyleSetTest012() local
303 jerry_value_t textValue = jerry_create_string(reinterpret_cast<const jerry_char_t *>(textVal)); in ComponentMarqueeStyleSetTest012()
346 const char *textVal = "hello world"; in ComponentMarqueeStyleSetTest013() local
348 jerry_value_t textValue = jerry_create_string(reinterpret_cast<const jerry_char_t *>(textVal)); in ComponentMarqueeStyleSetTest013()
/ohos5.0/docs/en/application-dev/ui/
H A Dui-js-components-qrcode.md136 <qrcode value="{{textVal}}"></qrcode>
162 textVal: ''
165 this.textVal = e.value
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_text_area_bridge.cpp2101 Local<JSValueRef> textVal = runtimeCallInfo->GetCallArgRef(NUM_2); in SetTextAreaInitialize() local
2112 if (textVal->IsString(vm) && ArkTSUtils::ParseJsString(vm, textVal, text)) { in SetTextAreaInitialize()