Searched defs:childNode (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DContainerNode.h68 Node* childNode(unsigned index) const;
152 inline Node* Node::childNode(unsigned index) const function in class:WebCore::Node
156 return toContainerNode(this)->childNode(index);
H A DContainerNode.cpp1032 Node *ContainerNode::childNode(unsigned index) const function in class:WebCore::ContainerNode
H A DRange.cpp211 Node* childNode = checkNodeWOffset(refNode.get(), offset, ec); local
215 m_start.set(refNode, offset, childNode);
251 Node* childNode = checkNodeWOffset(refNode.get(), offset, ec); local
255 m_end.set(refNode, offset, childNode);
1016 m_start.container()->insertBefore(newNode.release(), m_start.container()->childNode(startOffset), ec);
1133 Node* childBefore = n->childNode(offset - 1);
1553 if (Node* child = m_start.container()->childNode(m_start.offset()))
1597 if (Node* child = m_end.container()->childNode(m_end.offset()))
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermediate.cpp281 TIntermTyped* TIntermediate::addUnaryMath(TOperator op, TIntermNode* childNode, TSourceLoc line, TSymbolTable& symbolTable) argument
284 TIntermTyped* child = childNode->getAsTyped();
/external/llvm/lib/Analysis/
H A DPathNumbering.cpp430 BallLarusNode* childNode; local
433 childNode = succNode;
435 childNode = addNode(succBB);
436 inDag[succBB] = childNode;
438 addEdge(currentNode, childNode, duplicateCount);
439 dfsStack.push(childNode);
/external/icu4c/i18n/
H A Dplurrule_impl.h173 AndConstraint *childNode; member in class:OrConstraint
/external/webkit/Source/WebCore/editing/
H A DReplaceSelectionCommand.cpp689 for (RefPtr<Node> childNode = parentNode->firstChild(); childNode; childNode = childNode->nextSibling())
690 childNodes.append(childNode);
693 Node* childNode = it->get(); local
694 if (childNode->isTextNode() || !isBlock(childNode) || childNode->hasTagName(preTag)) {
700 insertNodeAfter(newSpan, childNode);
[all...]
H A DApplyStyleCommand.cpp1062 PassRefPtr<Node> childNode = 0; local
1065 childNode = elem->firstChild();
1087 for (; childNode; childNode = childNode->nextSibling())
1088 applyInlineStyleToPushDown(childNode.get(), styleToPushDown.get());
/external/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp4124 Node* childNode = child->node(); local
4125 if (!childNode)
4135 if (!ancestor || ancestor->node()->rendererIsEditable() == childNode->rendererIsEditable())
4142 return ancestor->createVisiblePosition(childNode->nodeIndex(), DOWNSTREAM);
4143 return ancestor->createVisiblePosition(childNode->nodeIndex() + 1, UPSTREAM);

Completed in 125 milliseconds