HomeSort by relevance Sort by last modified time
    Searched refs:firstChild (Results 1 - 25 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCellTest.cpp 86 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
94 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
102 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer())
    [all...]
RenderObjectChildList.cpp 47 while (firstChild()) {
48 if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText())) {
49 firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment.
52 if (firstChild()->node())
53 firstChild()->node()->setRenderer(0);
54 firstChild()->destroy();
102 if (firstChild() == oldChild)
140 if (firstChild() == beforeChild
    [all...]
RenderRubyBase.cpp 83 if (!firstChild())
102 moveChildrenTo(toBlock, firstChild(), beforeChild);
110 if (!firstChild())
117 RenderObject* firstChildHere = firstChild();
128 moveChildrenTo(toBase, firstChild(), beforeChild);
RenderTableCol.h 41 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
44 // If you have a RenderTableCol, use firstChild or lastChild instead.
56 bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
RenderMedia.h 41 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
44 // If you have a RenderMedia, use firstChild or lastChild instead.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.cpp 57 Node* firstChild = parent->firstChild();
58 if (!firstChild || !firstChild->isElementNode())
60 parent = toElement(firstChild);
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNodeTest.cpp 45 RefPtr<TestTree> firstChild = TestTree::create();
48 root->appendChild(firstChild.get());
49 EXPECT_EQ(root->firstChild(), firstChild.get());
50 EXPECT_EQ(root->lastChild(), firstChild.get());
51 EXPECT_EQ(firstChild->parent(), root.get());
54 EXPECT_EQ(root->firstChild(), firstChild.get());
56 EXPECT_EQ(lastChild->previous(), firstChild.get());
57 EXPECT_EQ(firstChild->next(), lastChild.get())
    [all...]
TreeNode.h 66 NodeType* firstChild() const { return m_firstChild; }
144 NodeType* child = oldParent->firstChild();
161 if (typename TreeNode<T>::NodeType* next = current->firstChild())
181 while (first->firstChild())
182 first = first->firstChild();
195 while (next->firstChild())
196 next = next->firstChild();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerControllerTest.cpp 94 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
110 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
124 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
137 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
140 parent->removeChild(parent->firstChild());
151 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild())
    [all...]
ParentNode.h 49 return ElementTraversal::firstChild(node);
60 for (Element* child = ElementTraversal::firstChild(node); child; child = ElementTraversal::nextSibling(*child))
ChildFrameDisconnector.cpp 31 for (Node* child = root().firstChild(); child; child = child->nextSibling())
46 for (Node* child = root.firstChild(); child; child = child->nextSibling())
90 for (Node* child = node.firstChild(); child; child = child->nextSibling())
TreeWalker.idl 33 [RaisesException] Node firstChild();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameClient.h 24 virtual Frame* firstChild() const = 0;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
NativeBreakpointsSidebarPane.js 61 if (!this.listElement.firstChild) {
76 if (!this.listElement.firstChild) {
  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.cpp 49 Frame* RemoteFrameClient::firstChild() const
51 return toCoreFrame(m_webFrame->firstChild());
RemoteFrameClient.h 26 virtual Frame* firstChild() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAltGlyphItemElement.cpp 47 for (SVGGlyphRefElement* glyph = Traversal<SVGGlyphRefElement>::firstChild(*this); glyph; glyph = Traversal<SVGGlyphRefElement>::nextSibling(*glyph)) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineFlowBox.cpp 37 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
52 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
60 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDetailsElement.cpp 104 if (HTMLSummaryElement* summary = Traversal<HTMLSummaryElement>::firstChild(*this))
107 HTMLContentElement* content = toHTMLContentElement(userAgentShadowRoot()->firstChild());
108 ASSERT(content->firstChild() && isHTMLSummaryElement(*content->firstChild()));
109 return toElement(content->firstChild());
HTMLTableRowsCollection.cpp 60 child = Traversal<HTMLElement>::firstChild(table);
65 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*child))
72 child = Traversal<HTMLElement>::firstChild(table);
81 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*child))
88 child = Traversal<HTMLElement>::firstChild(table);
93 if (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*child))
HTMLPictureElement.cpp 27 for (HTMLImageElement* imageElement = Traversal<HTMLImageElement>::firstChild(*this); imageElement; imageElement = Traversal<HTMLImageElement>::nextSibling(*imageElement)) {
HTMLTableRowElement.cpp 76 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*head); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
83 for (HTMLElement* tbody = Traversal<HTMLElement>::firstChild(*table, HasHTMLTagName(tbodyTag)); tbody; tbody = Traversal<HTMLElement>::nextSibling(*tbody, HasHTMLTagName(tbodyTag))) {
84 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*tbody); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
92 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*foot); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
  /external/chromium_org/tools/findit/
svn_repository_parser.py 65 'author')[0].firstChild.nodeValue
75 file_path = changed_path.firstChild.nodeValue
89 0].firstChild.nodeValue
161 line_num = tds[0].getElementsByTagName('a')[0].firstChild.nodeValue
175 new_line = tds[2].firstChild.nodeValue
200 if title[0].firstChild.nodeValue == 'ViewVC Exception':
227 line_content += content.firstChild.nodeValue
233 while not tds[1].firstChild:
237 author = tds[1].firstChild.nodeValue
241 revision = tds[2].getElementsByTagName('a')[0].firstChild.nodeValu
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
character_fallback_test.js 21 while (target.firstChild)
22 target.removeChild(target.firstChild);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseButtonInputType.cpp 53 toText(element().userAgentShadowRoot()->firstChild())->setData(element().valueWithDefault());

Completed in 807 milliseconds

1 2 3 4 5 6 7 8 91011>>