本文整理汇总了C++中ScrollingStateNode::children方法的典型用法代码示例。如果您正苦于以下问题:C++ ScrollingStateNode::children方法的具体用法?C++ ScrollingStateNode::children怎么用?C++ ScrollingStateNode::children使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ScrollingStateNode
的用法示例。
在下文中一共展示了ScrollingStateNode::children方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: recursiveDumpNodes
void RemoteScrollingTreeTextStream::recursiveDumpNodes(const ScrollingStateNode& node, bool changedPropertiesOnly)
{
RemoteScrollingTreeTextStream& ts = *this;
ts << "\n";
ts.increaseIndent();
ts.writeIndent();
dump(node, changedPropertiesOnly);
if (node.children()) {
ts << "\n";
ts.increaseIndent();
ts.writeIndent();
ts << "(children";
ts.increaseIndent();
for (auto& childNode : *node.children())
recursiveDumpNodes(*childNode, changedPropertiesOnly);
ts << ")";
ts.decreaseIndent();
ts.decreaseIndent();
}
ts << ")";
ts.decreaseIndent();
}
示例2: removeNodeAndAllDescendants
void ScrollingStateTree::removeNodeAndAllDescendants(ScrollingStateNode* node, SubframeNodeRemoval subframeNodeRemoval)
{
ScrollingStateNode* parent = node->parent();
recursiveNodeWillBeRemoved(node, subframeNodeRemoval);
if (node == m_rootStateNode)
m_rootStateNode = nullptr;
else if (parent) {
ASSERT(parent->children() && parent->children()->find(node) != notFound);
if (auto children = parent->children()) {
size_t index = children->find(node);
if (index != notFound)
children->remove(index);
}
}
}
示例3: encodeNodeAndDescendants
static void encodeNodeAndDescendants(IPC::ArgumentEncoder& encoder, const ScrollingStateNode& stateNode)
{
switch (stateNode.nodeType()) {
case FrameScrollingNode:
case OverflowScrollingNode:
encoder << toScrollingStateScrollingNode(stateNode);
break;
case FixedNode:
encoder << toScrollingStateFixedNode(stateNode);
break;
case StickyNode:
encoder << toScrollingStateStickyNode(stateNode);
break;
}
if (!stateNode.children())
return;
for (size_t i = 0; i < stateNode.children()->size(); ++i) {
const OwnPtr<ScrollingStateNode>& child = stateNode.children()->at(i);
encodeNodeAndDescendants(encoder, *child.get());
}
}