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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 47 #include "core/rendering/RenderView.h"
140 RenderView* renderView = m_page->mainFrame()->contentRenderer();
141 RenderLayerCompositor* compositor = renderView ? renderView->compositor() : 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp 32 #include "core/rendering/RenderView.h"
145 RenderView* renderView = document()->renderView();
150 path.moveTo(FloatPoint(minimumValueForLength(m_coords[0], width, renderView), minimumValueForLength(m_coords[1], height, renderView)));
152 path.addLineTo(FloatPoint(minimumValueForLength(m_coords[i * 2], width, renderView), minimumValueForLength(m_coords[i * 2 + 1], height, renderView)));
159 int r = min(minimumValueForLength(radius, width, renderView), minimumValueForLength(radius, height, renderView));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTreeAsText.cpp 51 #include "core/rendering/RenderView.h"
522 RenderView* root = view->frame()->contentRenderer();
618 static void writeRenderNamedFlowThreads(TextStream& ts, RenderView* renderView, const RenderLayer* rootLayer,
621 if (!renderView->hasRenderNamedFlowThreads())
624 const RenderNamedFlowThreadList* list = renderView->flowThreadController()->renderNamedFlowThreadList();
714 RenderView* renderView = toRenderView(l->renderer());
715 writeRenderNamedFlowThreads(ts, renderView, rootLayer, paintDirtyRect, indent, behavior);
RenderView.h 43 class RenderView FINAL : public RenderBlock {
45 explicit RenderView(Document*);
46 virtual ~RenderView();
51 virtual const char* renderName() const OVERRIDE { return "RenderView"; }
291 inline RenderView* toRenderView(RenderObject* object)
294 return static_cast<RenderView*>(object);
297 inline const RenderView* toRenderView(const RenderObject* object)
300 return static_cast<const RenderView*>(object);
304 void toRenderView(const RenderView*);
306 ALWAYS_INLINE RenderView* Document::renderView() cons
    [all...]
RenderTable.cpp 42 #include "core/rendering/RenderView.h"
250 RenderView* renderView = view();
261 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth, renderView);
262 LayoutUnit marginEnd = minimumValueForLength(style()->marginEnd(), availableLogicalWidth, renderView);
309 setMarginStart(minimumValueForLength(style()->marginStart(), availableLogicalWidth, renderView));
310 setMarginEnd(minimumValueForLength(style()->marginEnd(), availableLogicalWidth, renderView));
    [all...]
RenderView.cpp 22 #include "core/rendering/RenderView.h"
48 RenderView::RenderView(Document* document)
75 RenderView::~RenderView()
79 bool RenderView::hitTest(const HitTestRequest& request, HitTestResult& result)
84 bool RenderView::hitTest(const HitTestRequest& request, const HitTestLocation& location, HitTestResult& result)
95 void RenderView::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit, LogicalExtentComputedValues& computedValues) const
100 void RenderView::updateLogicalWidth()
106 LayoutUnit RenderView::availableLogicalHeight(AvailableLogicalHeightType heightType) cons
    [all...]
RenderFlexibleBox.cpp 37 #include "core/rendering/RenderView.h"
833 LayoutUnit RenderFlexibleBox::computeChildMarginValue(Length margin, RenderView* view)
843 RenderView* renderView = view();
855 child->setMarginLeft(computeChildMarginValue(child->style()->marginLeft(), renderView));
856 child->setMarginRight(computeChildMarginValue(child->style()->marginRight(), renderView));
858 child->setMarginTop(computeChildMarginValue(child->style()->marginTop(), renderView))
    [all...]
RenderBoxModelObject.cpp 46 #include "core/rendering/RenderView.h"
432 RenderView* renderView = 0;
436 renderView = view();
437 return minimumValueForLength(padding, w, renderView);
443 RenderView* renderView = view();
444 RoundedRect border = style()->getRoundedBorderFor(borderRect, renderView, includeLogicalLeftEdge, includeLogicalRightEdge);
446 RoundedRect segmentBorder = style()->getRoundedBorderFor(LayoutRect(0, 0, inlineBoxWidth, inlineBoxHeight), renderView, includeLogicalLeftEdge, includeLogicalRightEdge);
    [all...]
RenderBox.cpp 58 #include "core/rendering/RenderView.h"
283 // Propagate the new writing mode and direction up to the RenderView.
284 RenderView* viewRenderer = view();
350 // The root and the RenderView always paint their backgrounds/borders.
650 RenderView* renderView = view();
652 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().width(), renderView);
653 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().height(), renderView);
    [all...]
RenderLayer.cpp 102 #include "core/rendering/RenderView.h"
363 RenderView* view = renderer()->view();
709 RenderView* view = renderer()->view();
774 RenderView* view = renderer()->view();
    [all...]
RenderBlock.cpp 61 #include "core/rendering/RenderView.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.h 61 friend class RenderView;
79 RenderView* renderView() const { return m_frame ? m_frame->contentRenderer() : 0; }
FrameView.cpp 71 #include "core/rendering/RenderView.h"
443 if (RenderView* renderView = this->renderView()) {
444 if (renderView->usesCompositing())
445 renderView->compositor()->frameViewDidChangeSize();
542 RenderView* renderView = this->renderView();
543 if (!renderView)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 64 #include "core/rendering/RenderView.h"
606 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, CSSPropertyID propertyID, const RenderObject* renderer, RenderView* renderView)
636 return zoomAdjustedPixelValue(valueForLength(l, 0, renderView), style);
672 static PassRefPtr<CSSValueList> getBorderRadiusCornerValues(LengthSize radius, const RenderStyle* style, RenderView* renderView)
678 list->append(zoomAdjustedPixelValue(valueForLength(radius.width(), 0, renderView), style));
682 list->append(zoomAdjustedPixelValue(valueForLength(radius.height(), 0, renderView), style));
686 static PassRefPtr<CSSValue> getBorderRadiusCornerValue(LengthSize radius, const RenderStyle* style, RenderView* renderView)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 116 #include "core/rendering/RenderView.h"
    [all...]

Completed in 212 milliseconds