/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&, LayoutUnit outlineSize = 0) const; 71 bool lineIntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, const LayoutPoint&) const; 72 bool rangeIntersectsRect(RenderBoxModelObject*, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect&, const LayoutPoint&) const;
|
RenderInline.h | 27 #include "core/rendering/RenderBoxModelObject.h" 34 class RenderInline : public RenderBoxModelObject { 45 Element* node() const { return toElement(RenderBoxModelObject::node()); } 77 virtual RenderBoxModelObject* virtualContinuation() const OVERRIDE FINAL { return continuation(); } 87 using RenderBoxModelObject::continuation; 88 using RenderBoxModelObject::setContinuation; 128 RenderObject* beforeChild, RenderBoxModelObject* oldCont); 130 RenderObject* newChild, RenderBoxModelObject* oldCont); 182 RenderBoxModelObject* continuationBefore(RenderObject* beforeChild);
|
RenderBoxModelObject.h | 61 class RenderBoxModelObject : public RenderLayerModelObject { 63 RenderBoxModelObject(ContainerNode*); 64 virtual ~RenderBoxModelObject(); 179 void highQualityRepaintTimerFired(Timer<RenderBoxModelObject>*); 266 RenderBoxModelObject* continuation() const; 267 void setContinuation(RenderBoxModelObject*); 285 void moveChildTo(RenderBoxModelObject* toBoxModelObject, RenderObject* child, RenderObject* beforeChild, bool fullRemoveInsert = false); 286 void moveChildTo(RenderBoxModelObject* toBoxModelObject, RenderObject* child, bool fullRemoveInsert = false) 290 void moveAllChildrenTo(RenderBoxModelObject* toBoxModelObject, bool fullRemoveInsert = false) 294 void moveAllChildrenTo(RenderBoxModelObject* toBoxModelObject, RenderObject* beforeChild, 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 bool RenderBoxModelObject::startTransition(double timeOffset, CSSPropertyID propertyId, const RenderStyle* fromStyle, const RenderStyle* toStyle) 110 void RenderBoxModelObject::transitionPaused(double timeOffset, CSSPropertyID propertyId) 117 void RenderBoxModelObject::transitionFinished(CSSPropertyID propertyId [all...] |
RenderInline.cpp | 50 : RenderBoxModelObject(element) 85 RenderBoxModelObject* continuation = this->continuation(); 93 // We can't wait for RenderBoxModelObject::destroy to clear the selection, 115 RenderBoxModelObject::willBeDestroyed(); 120 RenderBoxModelObject* continuation = this->continuation(); 128 RenderBoxModelObject::updateFromStyle(); 166 RenderBoxModelObject::styleDidChange(diff, oldStyle); 177 RenderBoxModelObject* nextCont = currCont->continuation(); 269 static RenderBoxModelObject* nextContinuation(RenderObject* renderer) 276 RenderBoxModelObject* RenderInline::continuationBefore(RenderObject* beforeChild [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, LayoutUnit outlineSize) const 189 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, const LayoutPoint& offset) const 198 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, const LayoutPoint& paintOffset) const 240 bool RenderLineBoxList::hitTest(RenderBoxModelObject* renderer, const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction hitTestAction) const
|
RenderBlock.h | 255 virtual RenderBoxModelObject* virtualContinuation() const OVERRIDE FINAL { return continuation(); } 260 using RenderBoxModelObject::continuation; 261 using RenderBoxModelObject::setContinuation; 304 LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->marginBefore(style()); } 305 LayoutUnit marginAfterForChild(const RenderBoxModelObject* child) const { return child->marginAfter(style()); } 306 LayoutUnit marginStartForChild(const RenderBoxModelObject* child) const { return child->marginStart(style()); } 307 LayoutUnit marginEndForChild(const RenderBoxModelObject* child) const { return child->marginEnd(style()); } [all...] |
RenderBox.h | 26 #include "core/rendering/RenderBoxModelObject.h" 50 class RenderBox : public RenderBoxModelObject { [all...] |
RenderFlowThread.h | 101 LayoutPoint adjustedPositionRelativeToOffsetParent(const RenderBoxModelObject&, const LayoutPoint&);
|
RenderBox.cpp | 97 : RenderBoxModelObject(node) 165 RenderBoxModelObject::willBeDestroyed(); 223 RenderBoxModelObject::styleWillChange(diff, newStyle); 228 // Horizontal writing mode definition is updated in RenderBoxModelObject::updateFromStyle, 229 // (as part of the RenderBoxModelObject::styleDidChange call below). So, we can safely cache the horizontal 233 RenderBoxModelObject::styleDidChange(diff, oldStyle); 324 RenderBoxModelObject::updateFromStyle(); 690 RenderBoxModelObject::addLayerHitTestRects(layerRects, currentLayer, adjustedLayerOffset, containerRect); [all...] |
InlineBox.cpp | 130 RenderBoxModelObject* flowObject = boxModelObject();
|
InlineBox.h | 24 #include "core/rendering/RenderBoxModelObject.h" 278 RenderBoxModelObject* boxModelObject() const
|
RenderObject.h | 58 class RenderBoxModelObject; 203 RenderBoxModelObject* enclosingBoxModelObject() const; 505 virtual RenderBoxModelObject* virtualContinuation() const { return 0; } [all...] |
RenderBlock.cpp | 210 RenderBoxModelObject* continuation = this->continuation(); 306 RenderBoxModelObject* nextCont = currCont->continuation(); 354 RenderBoxModelObject* beforeChildParent = 0; 358 RenderBoxModelObject* cont = flow->continuation(); 507 RenderObject* beforeChild, RenderBoxModelObject* oldCont) 533 RenderBoxModelObject* curr = toRenderBoxModelObject(parent()); 534 RenderBoxModelObject* currChild = this; 578 RenderObject* newChild, RenderBoxModelObject* oldCont) [all...] |
RenderFlowThread.cpp | 426 LayoutPoint RenderFlowThread::adjustedPositionRelativeToOffsetParent(const RenderBoxModelObject& boxModelObject, const LayoutPoint& startPoint) 433 RenderBoxModelObject* startRegionBox = startRegion->isRenderNamedFlowFragment() ? toRenderBoxModelObject(startRegion->parent()) : startRegion; [all...] |
RenderImage.cpp | 484 if (!RenderBoxModelObject::boxShadowShouldBeAppliedToBackground(bleedAvoidance))
|
RenderTreeAsText.cpp | 250 const RenderBoxModelObject& box = *toRenderBoxModelObject(&o); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderSupport.h | 35 class RenderBoxModelObject;
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXRenderObject.h | 71 RenderBoxModelObject* renderBoxModelObject() const;
|
AXRenderObject.cpp | 102 RenderBoxModelObject* renderer = toRenderBoxModelObject(object); 158 static RenderBoxModelObject* nextContinuation(RenderObject* renderer) 215 RenderBoxModelObject* AXRenderObject::renderBoxModelObject() const 276 RenderBoxModelObject* cssBox = renderBoxModelObject(); 443 RenderBoxModelObject* renderer = renderBoxModelObject(); 878 RenderBoxModelObject* cssBox = renderBoxModelObject(); [all...] |
AXObjectCache.cpp | 293 RenderBoxModelObject* cssBox = toRenderBoxModelObject(renderer);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PrintContext.cpp | 227 static RenderBoxModelObject* enclosingBoxModelObject(RenderObject* object) 243 RenderBoxModelObject* box = enclosingBoxModelObject(element->renderer());
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Node.h | 80 class RenderBoxModelObject; 537 RenderBoxModelObject* renderBoxModelObject() const; [all...] |
Element.cpp | 560 if (RenderBoxModelObject* renderer = renderBoxModelObject()) 568 if (RenderBoxModelObject* renderer = renderBoxModelObject()) 583 if (RenderBoxModelObject* renderer = renderBoxModelObject()) 591 if (RenderBoxModelObject* renderer = renderBoxModelObject()) 800 if (renderBoxModelObject()) 801 renderBoxModelObject()->absoluteQuads(quads) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorOverlay.cpp | 49 #include "core/rendering/RenderBoxModelObject.h" 554 RenderBoxModelObject* modelObject = renderer->isBoxModelObject() ? toRenderBoxModelObject(renderer) : 0;
|