Home
last modified time | relevance | path

Searched refs:childInfo (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/quick-start/
H A Darkts-require.md95 @Require @Param childInfo: Info = new Info();
99 Text(`ChildPage childInfo name :${this.childInfo.name}`)
102 Text(`ChildPage childInfo age :${this.childInfo.age}`)
125 ChildPage({ childInfo: this.info1, state_value: this.label1}) // 调用自定义组件
133 ChildPage({ childInfo: this.info2, state_value: this.label2}) // 调用自定义组件
H A Darkts-localBuilder.md330 @Require @Param childInfo: Info;
333 Text(`自定义组件 name :${this.childInfo.name}`)
336 Text(`自定义组件 age :${this.childInfo.age}`)
393 ChildPage({ childInfo: this.info1}) // 调用自定义组件
401 ChildPage({ childInfo: this.info2}) // 调用自定义组件
H A Darkts-builder.md491 @Require @Param childInfo: Info;
493 overBuilder({name: this.childInfo.name, age: this.childInfo.age})
536 ChildPage({ childInfo: this.info1}) // 调用自定义组件
544 ChildPage({ childInfo: this.info2}) // 调用自定义组件
/ohos5.0/docs/en/application-dev/quick-start/
H A Darkts-require.md94 @Require @Param childInfo: Info = new Info();
98 Text(`ChildPage childInfo name :${this.childInfo.name}`)
101 Text(`ChildPage childInfo age :${this.childInfo.age}`)
124 ChildPage({ childInfo: this.info1, state_value: this.label1}) // Calling a custom component.
132 ChildPage({ childInfo: this.info2, state_value: this.label2}) // Calling a custom component.
H A Darkts-localBuilder.md233 @Require @Param childInfo: Info;
236 Text(`Custom component name :${this.childInfo.name}`)
239 Text(`Custom component age :${this.childInfo.age}`)
296 ChildPage({childInfo: this.info1}) // Call the custom component.
304 ChildPage({childInfo: this.info2}) // Call the custom component.
H A Darkts-builder.md667 @Require @Param childInfo: Info;
669 overBuilder({name: this.childInfo.name, age: this.childInfo.age})
712 ChildPage ({childInfo: this.info1}) // Call the custom component.
720 ChildPage ({childInfo: this.info2}) // Call the custom component.
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_third_accessibility_hover_ng.cpp190 AccessibilityElementInfo childInfo; in HoverPathForThirdRecursive() local
191 if (GetElementInfoForThird(*childId, childInfo, hostElementId) == false) { in HoverPathForThirdRecursive()
195 hostElementId, hoverPoint, childInfo, path, hostOffset)) { in HoverPathForThirdRecursive()
H A Djs_accessibility_manager.cpp5208 for (const auto &childInfo : info) { in CheckIsChildElement() local
5209 DumpLog::GetInstance().Print(childInfo.c_str()); in CheckIsChildElement()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_pattern.cpp931 GridItemIndexInfo childInfo; in SearchIrregularFocusableChild() local
932 childInfo.mainIndex = childMainIndex; in SearchIrregularFocusableChild()
933 childInfo.crossIndex = childCrossIndex; in SearchIrregularFocusableChild()
934 childInfo.mainStart = childMainStart; in SearchIrregularFocusableChild()
935 childInfo.mainEnd = childMainEnd; in SearchIrregularFocusableChild()
936 childInfo.crossStart = chidCrossStart; in SearchIrregularFocusableChild()
937 childInfo.crossEnd = chidCrossEnd; in SearchIrregularFocusableChild()
946 …le nearestDistance = GetNearestDistanceFromChildToCurFocusItemInMainAxis(tarCrossIndex, childInfo); in SearchIrregularFocusableChild()
947 int32_t intersectAreaSize = CalcIntersectAreaInTargetDirectionShadow(childInfo, true); in SearchIrregularFocusableChild()
960 …le nearestDistance = GetNearestDistanceFromChildToCurFocusItemInCrossAxis(tarMainIndex, childInfo); in SearchIrregularFocusableChild()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/
H A Ddrag_drop_manager.cpp1976 auto& childInfo = gatherNodeChildrenInfo[i]; in UpdateGatherNodeAttr() local
1978 Dimension(info.gatherNodeCenter.GetX() - childInfo.halfWidth), in UpdateGatherNodeAttr()
1979 Dimension(info.gatherNodeCenter.GetY() - childInfo.halfHeight))); in UpdateGatherNodeAttr()
1981 if (((childInfo.width > info.width) || (childInfo.height > info.height)) && in UpdateGatherNodeAttr()
1982 !NearZero(childInfo.width) && !NearZero(childInfo.height)) { in UpdateGatherNodeAttr()
1983 updateScale *= std::min(info.width / childInfo.width, info.height / childInfo.height); in UpdateGatherNodeAttr()
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/
H A Dfile_operations_cloud.cpp1255 CloudDiskFileInfo childInfo; in UpdateCloudDiskInode() local
1256 int32_t err = rdbStore->GetAttr(inoPtr->cloudId, childInfo); in UpdateCloudDiskInode()
1261 inoPtr->stat.st_size = childInfo.size; in UpdateCloudDiskInode()
1262 inoPtr->stat.st_mtime = childInfo.mtime / MILLISECOND_TO_SECONDS_TIMES; in UpdateCloudDiskInode()