Home
last modified time | relevance | path

Searched refs:DomGridRow (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_grid_row.cpp24 DomGridRow::DomGridRow(NodeId nodeId, const std::string& nodeName) : DOMDiv(nodeId, nodeName) {} in DomGridRow() function in OHOS::Ace::Framework::DomGridRow
26 void DomGridRow::SetParentGridInfo(const RefPtr<GridContainerInfo>& parent) in SetParentGridInfo()
37 void DomGridRow::OnChildNodeAdded(const RefPtr<DOMNode>& child, int32_t slot) in OnChildNodeAdded()
48 void DomGridRow::OnChildNodeRemoved(const RefPtr<DOMNode>& child) in OnChildNodeRemoved()
58 bool DomGridRow::SetSpecializedAttr(const std::pair<std::string, std::string>& attr) in SetSpecializedAttr()
70 bool DomGridRow::SetSpecializedStyle(const std::pair<std::string, std::string>& style) in SetSpecializedStyle()
H A Ddom_grid_row.h25 class DomGridRow : public DOMDiv {
26 DECLARE_ACE_TYPE(DomGridRow, DOMDiv);
29 DomGridRow(NodeId nodeId, const std::string& nodeName);
30 ~DomGridRow() override = default;
H A Ddom_grid_container.cpp43 auto gridRow = AceType::DynamicCast<DomGridRow>(child); in OnChildNodeAdded()
53 auto gridRow = AceType::DynamicCast<DomGridRow>(child); in OnChildNodeRemoved()
H A Ddom_document.cpp162 { DOM_NODE_TAG_GRID_ROW, &DOMNodeCreator<DomGridRow> }, in CreateNodeWithId()