HomeSort by relevance Sort by last modified time
    Searched defs:virtualChildren (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCol.h 40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
80 virtual RenderObjectChildList* virtualChildren() { return children(); }
81 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderTableRow.h 39 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
40 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
92 virtual RenderObjectChildList* virtualChildren() { return children(); }
93 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderFrameSet.h 62 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
63 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
97 virtual RenderObjectChildList* virtualChildren() { return children(); }
98 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderTableSection.h 68 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
69 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
222 virtual RenderObjectChildList* virtualChildren() { return children(); }
223 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderObject.h 163 // to discourage their use. The virtualChildren() call inside these
169 if (const RenderObjectChildList* children = virtualChildren())
175 if (const RenderObjectChildList* children = virtualChildren())
180 virtual RenderObjectChildList* virtualChildren() { return 0; }
181 virtual const RenderObjectChildList* virtualChildren() const { return 0; }
249 virtual bool canHaveChildren() const { return virtualChildren(); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.h 45 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
46 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
71 virtual RenderObjectChildList* virtualChildren() { return children(); }
72 virtual const RenderObjectChildList* virtualChildren() const { return children(); }

Completed in 39 milliseconds