Lines Matching defs:node

514         TAG_LOGI(AceLogTag::ACE_UIEVENT, "back press for remove overlay node");
523 TAG_LOGI(AceLogTag::ACE_UIEVENT, "back press for remove overlay node");
830 const RefPtr<OHOS::Ace::NG::FrameNode>& node) {
833 auto touchTask = [context, event, markProcess, node]() {
836 context->OnAccessibilityHoverEvent(event, node);
838 context->OnPenHoverEvent(event, node);
840 if (node) {
841 context->OnTouchEvent(event, node);
862 const RefPtr<OHOS::Ace::NG::FrameNode>& node) {
865 auto mouseTask = [context, event, markProcess, node]() {
866 if (node) {
867 context->OnMouseEvent(event, node);
887 const RefPtr<OHOS::Ace::NG::FrameNode>& node) {
890 auto axisTask = [context, event, markProcess, node]() {
891 if (node) {
892 context->OnAxisEvent(event, node);
1037 const DragEventAction& action, const RefPtr<NG::FrameNode>& node) {
1040 auto callback = [context, pointerEvent, action, node]() {
1041 context->OnDragEvent(pointerEvent, action, node);
1253 FillRequestCallback(WeakPtr<NG::PipelineContext> pipelineContext, const RefPtr<NG::FrameNode>& node,
1255 : pipelineContext_(pipelineContext), node_(node), autoFillType_(autoFillType), isNative_(isNative) {}
1267 auto node = node_.Upgrade();
1268 CHECK_NULL_VOID(node);
1270 [viewDataWrap, node, autoFillType = autoFillType_]() {
1271 if (node) {
1272 node->NotifyFillRequestSuccess(viewDataWrap, nullptr, autoFillType);
1293 auto node = node_.Upgrade();
1294 CHECK_NULL_VOID(node);
1298 [errCode, pipelineContext, node, fillContent, isPopup]() {
1300 pipelineContext->NotifyFillRequestFailed(node, errCode, fillContent, isPopup);
1333 auto node = node_.Upgrade();
1334 CHECK_NULL_RETURN(node, 0);
1335 auto rectf = node->GetRectWithRender();
1340 auto trans = node->GetTransformRelativeOffset();
1369 auto node = node_.Upgrade();
1370 CHECK_NULL_RETURN(node, 0);
1371 auto rectf = node->GetRectWithRender();
1428 bool AceContainer::UpdatePopupUIExtension(const RefPtr<NG::FrameNode>& node,
1431 CHECK_NULL_RETURN(node, false);
1437 auto autoFillContainerNode = node->GetFirstAutoFillContainerNode();
1443 OverwritePageNodeInfo(node, viewData);
1481 void AceContainer::FillAutoFillViewData(const RefPtr<NG::FrameNode> &node, RefPtr<ViewDataWrap> &viewDataWrap)
1483 CHECK_NULL_VOID(node);
1486 auto pattern = node->GetPattern<NG::TextFieldPattern>();
1535 AbilityBase::PageNodeInfo node;
1536 node.id = info->GetId();
1537 node.depth = -1;
1538 node.autoFillType = static_cast<AbilityBase::AutoFillType>(info->GetAutoFillType());
1539 node.isFocus = info->GetIsFocus();
1540 node.value = info->GetValue();
1541 node.placeholder = info->GetPlaceholder();
1542 node.metadata = info->GetMetadata();
1544 node.rect.left = rectF.GetX();
1545 node.rect.top = rectF.GetY();
1546 node.rect.width = rectF.Width();
1547 node.rect.height = rectF.Height();
1548 nodeInfos.emplace_back(node);
1554 void FillAutoFillCustomConfig(const RefPtr<NG::FrameNode>& node,
1557 CHECK_NULL_VOID(node);
1563 customConfig.nodeId = node->GetId();
1580 bool AceContainer::RequestAutoFill(const RefPtr<NG::FrameNode>& node, AceAutoFillType autoFillType,
1585 CHECK_NULL_RETURN(node, false);
1594 auto autoFillContainerNode = node->GetFirstAutoFillContainerNode();
1596 FillAutoFillViewData(node, viewDataWrap);
1597 auto callback = std::make_shared<FillRequestCallback>(pipelineContext, node, autoFillType, isNative);
1607 OverwritePageNodeInfo(node, viewData);
1614 FillAutoFillCustomConfig(node, customConfig, isNative);
1676 bool AceContainer::RequestAutoSave(const RefPtr<NG::FrameNode>& node, const std::function<void()>& onFinish,
1685 uiContentImpl->DumpViewData(node, viewDataWrap, false, true);
1694 OverwritePageNodeInfo(node, viewData);