Home
last modified time | relevance | path

Searched refs:textType (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-accessibility-kit/
H A Djs-apis-inner-application-accessibilityExtensionContext-sys.md113 ### findElement('textType')<sup>12+</sup>
115 findElement(type: 'textType', condition: string): Promise\<Array\<AccessibilityElement>>;
125 | type | string | 是 | 固定为'textType', 表示根据文本类型查找节点元素。 |
151 rootElement.findElement('textType', condition).then((data: AccessibilityElement[]) => {
H A Djs-apis-inner-application-accessibilityExtensionContext.md83 | textType<sup>12+</sup> | string …
/ohos5.0/base/inputmethod/imf/frameworks/ndk/src/
H A Dinputmethod_inputmethod_proxy_capi.cpp61 InputMethod_EnterKeyType enterKey, InputMethod_TextInputType textType) in OH_InputMethodProxy_NotifyConfigurationChange() argument
70 info.SetTextInputType(static_cast<TextInputType>(textType)); in OH_InputMethodProxy_NotifyConfigurationChange()
/ohos5.0/docs/en/application-dev/reference/apis-accessibility-kit/
H A Djs-apis-inner-application-accessibilityExtensionContext-sys.md113 ### findElement('textType')<sup>12+</sup>
115 findElement(type: 'textType', condition: string): Promise\<Array\<AccessibilityElement>>;
125 | type | string | Yes | Type of element finding. The value is fixed at **'textType'**.|
151 rootElement.findElement('textType', condition).then((data: AccessibilityElement[]) => {
H A Djs-apis-inner-application-accessibilityExtensionContext.md83 | textType<sup>12+</sup> | string …
/ohos5.0/base/inputmethod/imf/interfaces/kits/c/
H A Dinputmethod_inputmethod_proxy_capi.h128 InputMethod_EnterKeyType enterKey, InputMethod_TextInputType textType);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ime-kit/
H A Dinputmethod__inputmethod__proxy__capi_8h.md34 …, [InputMethod_TextInputType](_input_method.md#inputmethod_textinputtype) textType) | 通知输入框配置变化。 |
H A D_input_method.md93 …eytype) enterKey, [InputMethod_TextInputType](#inputmethod_textinputtype) textType) | 通知输入框配置变化。 |
1161 …odProxy * inputMethodProxy, InputMethod_EnterKeyType enterKey, InputMethod_TextInputType textType )
1176 | textType | 输入框类型。 |
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_controller/include/
H A Dinput_method_utils.h100 void SetTextInputType(TextInputType textType) in SetTextInputType() argument
102 textInputType = textType; in SetTextInputType()
/ohos5.0/docs/en/application-dev/reference/apis-ime-kit/
H A Dinputmethod__inputmethod__proxy__capi_8h.md34 …[InputMethod_TextInputType](_input_method.md#inputmethod_textinputtype) textType) | Notifies the c…
H A D_input_method.md93 …type) enterKey, [InputMethod_TextInputType](#inputmethod_textinputtype) textType) | Notifies the c…
1161 …odProxy * inputMethodProxy, InputMethod_EnterKeyType enterKey, InputMethod_TextInputType textType )
1176 | textType | Text box type.|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.35/
H A Dchangelogs-accessibility.md77 …| AccessibilityExtensionContext | findElement(type: 'textType', condition: string): Promise&lt;Arr…
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.35/
H A Dchangelogs-accessibility.md77 …| AccessibilityExtensionContext | findElement(type: 'textType', condition: string): Promise<Array\…
/ohos5.0/foundation/barrierfree/accessibility/frameworks/common/src/
H A Daccessibility_element_info.cpp581 void AccessibilityElementInfo::SetTextType(const std::string &textType) in SetTextType() argument
583 textType_ = textType; in SetTextType()
/ohos5.0/foundation/distributeddatamgr/udmf/framework/jskitsimpl/unittest/
H A DUdmfJsTest.js1094 const textType = 'general.text';
1100 expect(unifiedData.hasType(textType)).assertEqual(true);
1105 expect(types[0]).assertEqual(textType);
1109 expect(unifiedData.hasType(textType)).assertEqual(true);
1114 expect(types[0]).assertEqual(textType);
/ohos5.0/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/
H A Daccessibility_element_info.h1490 void SetTextType(const std::string &textType);
/ohos5.0/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_extension_module_loader/src/
H A Dnapi_accessibility_element.cpp1325 napi_value textType = nullptr; in GetElementInfoAllAttribute4() local
1326 GetElementInfoTextType(callbackInfo, textType); in GetElementInfoAllAttribute4()
1327 NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, value, "textType", textType)); in GetElementInfoAllAttribute4()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_accessibility_manager.cpp6031 …std::string textType = frameNode->GetAccessibilityProperty<NG::AccessibilityProperty>()->GetTextTy… in FindTextByTextHint() local
6032 nlohmann::json textTypeJson = nlohmann::json::parse(textType, nullptr, false); in FindTextByTextHint()