/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/auto_fill_manager/src/ |
H A D | auto_fill_manager.cpp | 65 if (request.autoFillType == AbilityBase::AutoFillType::UNSPECIFIED) { in RequestAutoFill() 221 if ((it->autoFillType == AbilityBase::AutoFillType::PASSWORD || in IsNeed2SaveRequest() 222 it->autoFillType == AbilityBase::AutoFillType::USER_NAME || in IsNeed2SaveRequest() 243 AbilityBase::AutoFillType autoFillType = request.autoFillType; in ConvertAutoFillWindowType() local 245 autoFillType <= AbilityBase::AutoFillType::FORMAT_ADDRESS) { in ConvertAutoFillWindowType() 248 } else if (autoFillType == AbilityBase::AutoFillType::PASSWORD || in ConvertAutoFillWindowType() 249 autoFillType == AbilityBase::AutoFillType::USER_NAME || in ConvertAutoFillWindowType() 250 autoFillType == AbilityBase::AutoFillType::NEW_PASSWORD) { in ConvertAutoFillWindowType() 300 if (autoFillType == AbilityBase::AutoFillType::PASSWORD || in IsNeedToCreatePopupWindow() 301 autoFillType == AbilityBase::AutoFillType::USER_NAME || in IsNeedToCreatePopupWindow() [all …]
|
H A D | auto_fill_extension_callback.cpp | 132 want.SetParam(WANT_PARAMS_AUTO_FILL_TYPE_KEY, static_cast<int32_t>(request_.autoFillType)); in ReloadInModal()
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | view_data_wrap_ohos.cpp | 52 …if (type < it->autoFillType && it->autoFillType < AbilityBase::AutoFillType::FULL_STREET_ADDRESS) { in ViewDataToType() 53 return it->autoFillType; in ViewDataToType() 59 if (AbilityBase::AutoFillType::FULL_STREET_ADDRESS <= it->autoFillType && in ViewDataToType() 60 it->autoFillType <= AbilityBase::AutoFillType::FORMAT_ADDRESS) { in ViewDataToType() 61 return it->autoFillType; in ViewDataToType() 98 if (it->autoFillType == AbilityBase::AutoFillType::UNSPECIFIED) { in GetPlaceHolderValue() 113 if (it->autoFillType == AbilityBase::AutoFillType::UNSPECIFIED) { in GetPlaceHolderValue() 114 it->autoFillType = HintToAutoFillType(intType[index]); in GetPlaceHolderValue()
|
H A D | view_data_wrap_ohos.h | 57 void SetAutoFillType(AceAutoFillType autoFillType) override in SetAutoFillType() argument 59 pageNodeInfo_.autoFillType = static_cast<AbilityBase::AutoFillType>(autoFillType); in SetAutoFillType() 64 return static_cast<AceAutoFillType>(pageNodeInfo_.autoFillType); in GetAutoFillType()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ability-kit/ |
H A D | js-apis-inner-application-pageNodeInfo-sys.md | 19 | autoFillType | [AutoFillType](js-apis-inner-application-autoFillType-sys.md) | 否 | 否 …
|
H A D | js-apis-inner-application-autoFillRequest-sys.md | 25 | type | [AutoFillType](js-apis-inner-application-autoFillType-sys.md) | 是 | 自动填充类型。… 428 'autoFillType': request.type
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/auto_fill_manager_test/ |
H A D | auto_fill_manager_test.cpp | 113 const AbilityBase::AutoFillType autoFillType = AbilityBase::AutoFillType::UNSPECIFIED; variable 224 autoFillRequest.autoFillType = AbilityBase::AutoFillType::PASSWORD; 233 autoFillRequest.autoFillType = AbilityBase::AutoFillType::PERSON_FULL_NAME;
|
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/view_data/src/ |
H A D | page_node_info.cpp | 48 …autoFillType = static_cast<AutoFillType>(jsonObject.at(PAGE_NODE_INFO_AUTO_FILL_TYPE).get<int32_t>… in FromJsonString() 91 {PAGE_NODE_INFO_AUTO_FILL_TYPE, static_cast<int32_t>(autoFillType)}, in ToJsonString()
|
/ohos5.0/docs/en/application-dev/reference/apis-ability-kit/ |
H A D | js-apis-inner-application-pageNodeInfo-sys.md | 19 | autoFillType | [AutoFillType](js-apis-inner-application-autoFillType-sys.md) | No | No…
|
H A D | js-apis-inner-application-autoFillRequest-sys.md | 25 | type | [AutoFillType](js-apis-inner-application-autoFillType-sys.md) | Yes | Type o… 428 'autoFillType': request.type
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/view_data/ |
H A D | hint_to_type_wrap.h | 23 AceAutoFillType autoFillType = AceAutoFillType::ACE_UNSPECIFIED; member
|
H A D | page_node_info_wrap.h | 47 virtual void SetAutoFillType(AceAutoFillType autoFillType) {} in SetAutoFillType() argument
|
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/view_data/include/ |
H A D | page_node_info.h | 34 AutoFillType autoFillType = AutoFillType::UNSPECIFIED; member
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/ |
H A D | text_field_pattern_test.cpp | 2549 AceAutoFillType autoFillType = AceAutoFillType::ACE_UNSPECIFIED; variable 2552 autoFillType = AceAutoFillType::ACE_USER_NAME; 2555 autoFillType = AceAutoFillType::ACE_PASSWORD; 2558 autoFillType = AceAutoFillType::ACE_NEW_PASSWORD; 2589 pattern->SetAutoFillTriggeredStateByType(autoFillType); 2592 autoFillType = AceAutoFillType::ACE_USER_NAME; 2593 pattern->SetAutoFillTriggeredStateByType(autoFillType); 2596 autoFillType = AceAutoFillType::ACE_PASSWORD; 2597 pattern->SetAutoFillTriggeredStateByType(autoFillType); 2600 autoFillType = AceAutoFillType::ACE_NEW_PASSWORD; [all …]
|
H A D | text_input_modify_test.cpp | 1441 auto autoFillType = AceAutoFillType::ACE_UNSPECIFIED; variable 1446 pattern_->NotifyFillRequestSuccess(viewData, info, autoFillType);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_pattern.cpp | 2436 …return (autoFillType == AceAutoFillType::ACE_USER_NAME || autoFillType == AceAutoFillType::ACE_PAS… in IsAutoFillPasswordType() 2465 …auto tempAutoFillType = IsAutoFillUserName(autoFillType) ? AceAutoFillType::ACE_USER_NAME : autoFi… in CheckAutoFillType() 2481 if (IsAutoFillUserName(autoFillType) || autoFillType == AceAutoFillType::ACE_PASSWORD) { in GetAutoFillTriggeredStateByType() 2498 if (IsAutoFillUserName(autoFillType) || autoFillType == AceAutoFillType::ACE_PASSWORD) { in SetAutoFillTriggeredStateByType() 2520 return hintToTypeWrap.autoFillType; in GetAutoFillType() 2570 auto autoFillType = GetAutoFillType(); in ProcessAutoFill() local 2743 …keyBoardMap_.find(autoFillType) == keyBoardMap_.end() || keyboard_ != keyBoardMap_[autoFillType]) { in CheckIfNeedToResetKeyboard() 7308 auto autoFillType = GetAutoFillType(); in OnBackPressed() local 7309 if (IsAutoFillUserName(autoFillType)) { in OnBackPressed() 7314 …if (AceAutoFillType::ACE_UNSPECIFIED < autoFillType && autoFillType <= AceAutoFillType::ACE_FORMAT… in OnBackPressed() [all …]
|
H A D | text_field_pattern.h | 1129 RefPtr<PageNodeInfoWrap> nodeWrap, AceAutoFillType autoFillType) override; 1683 bool GetAutoFillTriggeredStateByType(const AceAutoFillType& autoFillType); 1684 void SetAutoFillTriggeredStateByType(const AceAutoFillType& autoFillType); 1686 bool IsAutoFillPasswordType(const AceAutoFillType& autoFillType); 1731 bool IsAutoFillUserName(const AceAutoFillType& autoFillType);
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/auto_fill_manager/include/ |
H A D | auto_fill_custom_config.h | 101 AbilityBase::AutoFillType autoFillType = AbilityBase::AutoFillType::UNSPECIFIED; member
|
H A D | auto_fill_manager.h | 39 bool IsNeedToCreatePopupWindow(const AbilityBase::AutoFillType &autoFillType);
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ace_container.cpp | 1259 AceAutoFillType autoFillType, bool isNative = true) in FillRequestCallback() argument 1275 [viewDataWrap, node, autoFillType = autoFillType_]() { in OnFillRequestSuccess() 1277 node->NotifyFillRequestSuccess(viewDataWrap, nullptr, autoFillType); in OnFillRequestSuccess() 1285 [viewDataWrap, pipelineContext, autoFillType = autoFillType_]() { in OnFillRequestSuccess() 1287 pipelineContext->NotifyFillRequestSuccess(autoFillType, viewDataWrap); in OnFillRequestSuccess() 1543 node.autoFillType = static_cast<AbilityBase::AutoFillType>(info->GetAutoFillType()); in OverwritePageNodeInfo() 1585 bool AceContainer::RequestAutoFill(const RefPtr<NG::FrameNode>& node, AceAutoFillType autoFillType, in RequestAutoFill() argument 1622 autoFillRequest.autoFillType = static_cast<AbilityBase::AutoFillType>(autoFillType); in RequestAutoFill() 1635 bool AceContainer::IsNeedToCreatePopupWindow(const AceAutoFillType& autoFillType) in IsNeedToCreatePopupWindow() argument 1638 static_cast<AbilityBase::AutoFillType>(autoFillType)); in IsNeedToCreatePopupWindow() [all …]
|
H A D | ace_container.h | 598 bool RequestAutoFill(const RefPtr<NG::FrameNode>& node, AceAutoFillType autoFillType, 600 bool IsNeedToCreatePopupWindow(const AceAutoFillType& autoFillType) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | container.h | 505 virtual bool RequestAutoFill(const RefPtr<NG::FrameNode>& node, AceAutoFillType autoFillType, 511 virtual bool IsNeedToCreatePopupWindow(const AceAutoFillType& autoFillType) in IsNeedToCreatePopupWindow() argument
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/ability/native/auto_fill_extension_ability/ |
H A D | js_auto_fill_extension_util.cpp | 127 jsValue = AppExecFwk::WrapInt32ToJS(env, static_cast<int32_t>(pageNodeInfo.autoFillType)); in WrapPageNodeInfo() 227 node.autoFillType = static_cast<AbilityBase::AutoFillType>(type); in UnwrapPageNodeInfo()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/auto_fill_manager/ |
H A D | js_auto_fill_manager.cpp | 106 uiContent->DumpViewData(request.viewData, request.autoFillType); in OnRequestAutoSaveInner()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/ |
H A D | pattern.h | 399 RefPtr<PageNodeInfoWrap> nodeWrap, AceAutoFillType autoFillType) {} in NotifyFillRequestSuccess() argument
|