HomeSort by relevance Sort by last modified time
    Searched refs:firstChild (Results 51 - 75 of 260) sorted by null

1 23 4 5 6 7 8 91011

  /external/webkit/WebCore/rendering/
RenderObjectChildList.h 44 RenderObject* firstChild() const { return m_firstChild; }
48 // will need to manipulate firstChild or lastChild directly.
FixedTableLayout.cpp 85 RenderObject* child = m_table->firstChild();
95 if (col->firstChild())
133 RenderObject* next = child->firstChild();
153 RenderObject* firstRow = section->firstChild();
154 child = firstRow->firstChild();
InlineIterator.h 83 next = current->firstChild();
135 || ((!skipInlines || !next->firstChild()) // Always return EMPTY inlines.
149 if (!block->firstChild())
152 RenderObject* o = block->firstChild();
164 if (skipInlines && o->firstChild())
RenderTableRow.cpp 120 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
136 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
187 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
CounterNode.h 54 CounterNode* firstChild() const { return m_firstChild; }
RenderApplet.cpp 65 for (Node* child = element->firstChild(); child; child = child->nextSibling()) {
RenderSVGShadowTreeRootContainer.cpp 83 for (Node* child = m_shadowRoot->firstChild(); child; child = child->nextSibling())
  /external/webkit/WebCore/svg/
SVGFEMergeElement.cpp 43 for (Node* n = firstChild(); n != 0; n = n->nextSibling()) {
SVGFontFaceSrcElement.cpp 44 for (Node* child = firstChild(); child; child = child->nextSibling()) {
SVGSwitchElement.cpp 44 for (Node* n = firstChild(); n != 0; n = n->nextSibling()) {
SVGUseElement.cpp 208 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
256 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
346 String firstChildNodeName = element->firstChild() ? element->firstChild()->nodeName() : "null";
351 text += String::format("SVGElementInstance this=%p, (parentNode=%s (%p), firstChild=%s (%p), correspondingElement=%s (%p), shadowTreeElement=%s (%p), id=%s)\n",
352 targetInstance, parentNodeName.latin1().data(), element->parentNode(), firstChildNodeName.latin1().data(), element->firstChild(),
372 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
399 for (Node* cur = start->firstChild(); cur; cur = cur->nextSibling()) {
506 associateInstancesWithShadowTreeElements(shadowRoot->firstChild(), m_targetElementInstance.get());
614 for (Node* node = target->firstChild(); node; node = node->nextSibling())
    [all...]
  /external/webkit/WebCore/bindings/js/
JSTreeWalkerCustom.cpp 48 JSValue JSTreeWalker::firstChild(ExecState* exec, const ArgList&)
50 Node* node = impl()->firstChild(exec);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 724 int firstChild = _firstch(index);
726 if (DTM.NULL == firstChild)
728 else if (NOTPROCESSED == firstChild)
731 ps.println("First child: " + firstChild);
883 int firstChild = _firstch(identity);
885 return firstChild != DTM.NULL;
973 int firstChild = _firstch(identity);
975 return makeNodeHandle(firstChild);
989 int firstChild, eType;
991 for (firstChild = _firstch(makeNodeIdentity(nodeHandle))
    [all...]
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 87 - (DOMNode *)firstChild
91 return kit(coreHTMLDocument->firstChild());
93 WebCore::Node* child = coreHTMLDocument->firstChild();
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 38 tmp_node.replaceChild(convertMath(tmp_node.firstChild),tmp_node.firstChild);
  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 54 ProfileNode* currentNode = m_head->firstChild();
55 for (ProfileNode* nextNode = currentNode; nextNode; nextNode = nextNode->firstChild())
  /external/webkit/WebCore/dom/
ContainerNode.h 43 Node* firstChild() const { return m_firstChild; }
125 return static_cast<const ContainerNode*>(this)->firstChild();
StyleElement.cpp 65 for (Node* c = e->firstChild(); c; c = c->nextSibling()) {
78 for (Node* c = e->firstChild(); c; c = c->nextSibling()) {
SelectorNodeList.cpp 57 for (Node* n = rootNode->firstChild(); n; n = n->traverseNextNode(rootNode)) {
  /external/webkit/WebCore/html/
HTMLTableSectionElement.cpp 93 n = firstChild();
118 const Node *n = firstChild();
  /external/webkit/WebKit/chromium/src/
WebNode.cpp 134 WebNode WebNode::firstChild() const
136 return WebNode(m_private->firstChild());
  /external/webkit/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 61 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild) {
  /external/webkit/WebCore/inspector/front-end/
AuditLauncherView.js 110 childNodes[i].firstChild.checked = checkCategories;
148 this._selectAllCheckboxElement = categoryElement.firstChild;
161 categoryElement.firstChild.addEventListener("click", boundCategoryClickListener, false);
162 sortedCategories[i]._checkboxElement = categoryElement.firstChild;
  /external/webkit/WebCore/page/
FrameTree.cpp 38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
154 Frame* result = firstChild();
162 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
232 Frame* child = firstChild();
FrameTree.h 49 Frame* firstChild() const { return m_firstChild.get(); }

Completed in 1192 milliseconds

1 23 4 5 6 7 8 91011