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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLineBoxList.h 66 void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const;
67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) const;
70 bool anyLineIntersectsRect(RenderBoxModelObject*, const LayoutRect&, const LayoutPoint&) const;
71 bool lineIntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, const LayoutPoint&) const;
72 bool rangeIntersectsRect(RenderBoxModelObject*, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect&, const LayoutPoint&) const;
RenderTextFragment.h 48 RenderBoxModelObject* firstLetter() const { return m_firstLetter; }
49 void setFirstLetter(RenderBoxModelObject* firstLetter) { m_firstLetter = firstLetter; }
72 RenderBoxModelObject* m_firstLetter;
RenderInline.h 28 #include "core/rendering/RenderBoxModelObject.h"
33 class RenderInline : public RenderBoxModelObject {
48 Element* node() const { return toElement(RenderBoxModelObject::node()); }
80 virtual RenderBoxModelObject* virtualContinuation() const OVERRIDE FINAL { return continuation(); }
90 using RenderBoxModelObject::continuation;
91 using RenderBoxModelObject::setContinuation;
131 RenderObject* beforeChild, RenderBoxModelObject* oldCont);
133 RenderObject* newChild, RenderBoxModelObject* oldCont);
185 RenderBoxModelObject* continuationBefore(RenderObject* beforeChild);
RenderBoxModelObject.h 59 class RenderBoxModelObject : public RenderLayerModelObject {
61 RenderBoxModelObject(ContainerNode*);
62 virtual ~RenderBoxModelObject();
263 RenderBoxModelObject* continuation() const;
264 void setContinuation(RenderBoxModelObject*);
282 void moveChildTo(RenderBoxModelObject* toBoxModelObject, RenderObject* child, RenderObject* beforeChild, bool fullRemoveInsert = false);
283 void moveChildTo(RenderBoxModelObject* toBoxModelObject, RenderObject* child, bool fullRemoveInsert = false)
287 void moveAllChildrenTo(RenderBoxModelObject* toBoxModelObject, bool fullRemoveInsert = false)
291 void moveAllChildrenTo(RenderBoxModelObject* toBoxModelObject, RenderObject* beforeChild, bool fullRemoveInsert = false)
297 void moveChildrenTo(RenderBoxModelObject* toBoxModelObject, RenderObject* startChild, RenderObject* endChild, bool fullRemoveInsert = false
    [all...]
RenderBoxModelObject.cpp 27 #include "core/rendering/RenderBoxModelObject.h"
63 typedef HashMap<const RenderBoxModelObject*, RenderBoxModelObject*> ContinuationMap;
68 typedef HashMap<const RenderBoxModelObject*, RenderTextFragment*> FirstLetterRemainingTextMap;
71 void RenderBoxModelObject::setSelectionState(SelectionState state)
90 void RenderBoxModelObject::contentChanged(ContentChangeType changeType)
98 bool RenderBoxModelObject::hasAcceleratedCompositing() const
103 InterpolationQuality RenderBoxModelObject::chooseInterpolationQuality(GraphicsContext* context, Image* image, const void* layer, const LayoutSize& size)
108 RenderBoxModelObject::RenderBoxModelObject(ContainerNode* node
    [all...]
RenderLineBoxList.cpp 148 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const
173 bool RenderLineBoxList::anyLineIntersectsRect(RenderBoxModelObject* renderer, const LayoutRect& rect, const LayoutPoint& offset) const
187 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, const LayoutPoint& offset) const
196 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, const LayoutPoint& paintOffset) const
237 bool RenderLineBoxList::hitTest(RenderBoxModelObject* renderer, const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction hitTestAction) const
RenderInline.cpp 49 : RenderBoxModelObject(element)
84 RenderBoxModelObject* continuation = this->continuation();
92 // We can't wait for RenderBoxModelObject::destroy to clear the selection,
114 RenderBoxModelObject::willBeDestroyed();
119 RenderBoxModelObject* continuation = this->continuation();
127 RenderBoxModelObject::updateFromStyle();
178 RenderBoxModelObject::styleDidChange(diff, oldStyle);
189 RenderBoxModelObject* nextCont = currCont->continuation();
280 static RenderBoxModelObject* nextContinuation(RenderObject* renderer)
287 RenderBoxModelObject* RenderInline::continuationBefore(RenderObject* beforeChild
    [all...]
RenderBlock.h 190 virtual RenderBoxModelObject* virtualContinuation() const OVERRIDE FINAL { return continuation(); }
195 using RenderBoxModelObject::continuation;
196 using RenderBoxModelObject::setContinuation;
235 LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->marginBefore(style()); }
236 LayoutUnit marginAfterForChild(const RenderBoxModelObject* child) const { return child->marginAfter(style()); }
237 LayoutUnit marginStartForChild(const RenderBoxModelObject* child) const { return child->marginStart(style()); }
238 LayoutUnit marginEndForChild(const RenderBoxModelObject* child) const { return child->marginEnd(style()); }
452 RenderObject* beforeChild, RenderBoxModelObject* oldCont);
454 RenderObject* newChild, RenderBoxModelObject* oldCont);
RenderFlowThread.h 84 LayoutPoint adjustedPositionRelativeToOffsetParent(const RenderBoxModelObject&, const LayoutPoint&);
RenderBox.h 27 #include "core/rendering/RenderBoxModelObject.h"
68 class RenderBox : public RenderBoxModelObject {
    [all...]
RenderBox.cpp 96 : RenderBoxModelObject(node)
113 RenderBoxModelObject::willBeDestroyed();
174 RenderBoxModelObject::styleWillChange(diff, newStyle);
179 // Horizontal writing mode definition is updated in RenderBoxModelObject::updateFromStyle,
180 // (as part of the RenderBoxModelObject::styleDidChange call below). So, we can safely cache the horizontal
184 RenderBoxModelObject::styleDidChange(diff, oldStyle);
275 RenderBoxModelObject::updateFromStyle();
606 RenderBoxModelObject::addLayerHitTestRects(layerRects, currentLayer, adjustedLayerOffset, containerRect);
    [all...]
InlineBox.cpp 131 RenderBoxModelObject* flowObject = boxModelObject();
RenderBlock.cpp 243 RenderBoxModelObject* continuation = this->continuation();
339 RenderBoxModelObject* nextCont = currCont->continuation();
434 RenderBoxModelObject* beforeChildParent = 0;
438 RenderBoxModelObject* cont = flow->continuation();
587 RenderObject* beforeChild, RenderBoxModelObject* oldCont)
613 RenderBoxModelObject* curr = toRenderBoxModelObject(parent());
614 RenderBoxModelObject* currChild = this;
658 RenderObject* newChild, RenderBoxModelObject* oldCont)
    [all...]
RenderObject.h 58 class RenderBoxModelObject;
207 RenderBoxModelObject* enclosingBoxModelObject() const;
495 virtual RenderBoxModelObject* virtualContinuation() const { return 0; }
    [all...]
InlineBox.h 24 #include "core/rendering/RenderBoxModelObject.h"
281 RenderBoxModelObject* boxModelObject() const
RenderFlowThread.cpp 198 LayoutPoint RenderFlowThread::adjustedPositionRelativeToOffsetParent(const RenderBoxModelObject& boxModelObject, const LayoutPoint& startPoint)
RenderImage.cpp 466 if (!RenderBoxModelObject::boxShadowShouldBeAppliedToBackground(bleedAvoidance))
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.h 71 RenderBoxModelObject* renderBoxModelObject() const;
AXRenderObject.cpp 82 RenderBoxModelObject* r = renderer.continuation();
100 RenderBoxModelObject* renderer = toRenderBoxModelObject(object);
157 static RenderBoxModelObject* nextContinuation(RenderObject* renderer)
214 RenderBoxModelObject* AXRenderObject::renderBoxModelObject() const
266 RenderBoxModelObject* cssBox = renderBoxModelObject();
435 RenderBoxModelObject* renderer = renderBoxModelObject();
863 RenderBoxModelObject* cssBox = renderBoxModelObject()
    [all...]
AXObjectCache.cpp 297 RenderBoxModelObject* cssBox = toRenderBoxModelObject(renderer);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 199 static RenderBoxModelObject* enclosingBoxModelObject(RenderObject* object)
215 RenderBoxModelObject* box = enclosingBoxModelObject(element->renderer());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h 78 class RenderBoxModelObject;
520 RenderBoxModelObject* renderBoxModelObject() const;
    [all...]
Element.cpp 531 if (RenderBoxModelObject* renderer = renderBoxModelObject())
539 if (RenderBoxModelObject* renderer = renderBoxModelObject())
547 if (RenderBoxModelObject* renderer = renderBoxModelObject())
555 if (RenderBoxModelObject* renderer = renderBoxModelObject())
806 if (renderBoxModelObject())
807 renderBoxModelObject()->absoluteQuads(quads)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 747 static inline RenderText* firstRenderTextInFirstLetter(RenderBoxModelObject* firstLetter)
763 RenderBoxModelObject* r = renderer->firstLetter();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 49 #include "core/rendering/RenderBoxModelObject.h"
623 RenderBoxModelObject* modelObject = renderer->isBoxModelObject() ? toRenderBoxModelObject(renderer) : 0;

Completed in 4318 milliseconds

1 2