HomeSort by relevance Sort by last modified time
    Searched refs:IntRect (Results 251 - 275 of 369) sorted by null

<<1112131415

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.h 165 IntRect blockSelectionGapsBounds() const;
419 IntRect clippedAbsoluteBoundingBox;
484 IntRect clippedAbsoluteBoundingBox() const { return ancestorDependentCompositingInputs().clippedAbsoluteBoundingBox; }
    [all...]
RenderTableCol.cpp 116 void RenderTableCol::imageChanged(WrappedImagePtr, const IntRect*)
InlineBox.cpp 290 IntRect boxRect(left(), 0, m_logicalWidth, 10);
291 IntRect ellipsisRect(ltr ? blockEdge - ellipsisWidth : blockEdge, 0, ellipsisWidth, 10);
RenderLineBoxList.cpp 208 IntRect(point.x(), point.y() - locationInContainer.topPadding(), 1, locationInContainer.topPadding() + locationInContainer.bottomPadding() + 1) :
209 IntRect(point.x() - locationInContainer.leftPadding(), point.y(), locationInContainer.rightPadding() + locationInContainer.leftPadding() + 1, 1);
RenderInline.cpp 641 AbsoluteRectsGeneratorContext(Vector<IntRect>& rects, const LayoutPoint& accumulatedOffset)
647 IntRect intRect = enclosingIntRect(rect);
648 intRect.move(m_accumulatedOffset.x(), m_accumulatedOffset.y());
649 m_rects.append(intRect);
652 Vector<IntRect>& m_rects;
658 void RenderInline::absoluteRects(Vector<IntRect>& rects, const LayoutPoint& accumulatedOffset) const
    [all...]
RenderObject.h     [all...]
RenderView.cpp 420 void RenderView::absoluteRects(Vector<IntRect>& rects, const LayoutPoint& accumulatedOffset) const
441 IntRect RenderView::selectionBounds() const
728 IntRect RenderView::unscaledDocumentRect() const
765 IntRect RenderView::documentRect() const
770 return IntRect(overflowRect);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGContainer.cpp 151 IntRect paintRectInParent = enclosingIntRect(localToParentTransform().mapRect(paintInvalidationRect));
RenderSVGImage.cpp 181 void RenderSVGImage::imageChanged(WrappedImagePtr, const IntRect*)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatQuad.h 34 #include "platform/geometry/IntRect.h"
108 IntRect enclosingBoundingBox() const
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
RecordingImageBufferSurface.cpp 145 IntRect canvasRect(IntPoint(0, 0), size());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEGaussianBlur.cpp 147 IntRect drawingRegion = drawingRegionOfInputImage(in->absolutePaintRect());
FEMorphology.cpp 106 IntRect drawingRegion = drawingRegionOfInputImage(in->absolutePaintRect());
FETile.cpp 84 tileImageContext->drawImageBuffer(tileImageBuffer, IntRect(in->absolutePaintRect().location(), tileImageBuffer->size()));
  /external/chromium_org/third_party/WebKit/Source/web/
TextFinder.cpp 283 IntRect resultBounds = resultRange->boundingBox();
284 IntRect activeSelectionRect;
576 IntRect activeMatchRect;
577 IntRect activeMatchBoundingBox = enclosingIntRect(RenderObject::absoluteBoundingBoxRectForRange(m_activeMatch.get()));
WebViewImpl.h 37 #include "platform/geometry/IntRect.h"
278 void invalidateRect(const IntRect&);
412 virtual PagePopup* openPagePopup(PagePopupClient*, const IntRect& originBoundsInRootView) OVERRIDE;
516 IntRect visibleRectInDocument() const;
709 IntRect m_rootLayerScrollDamage;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.h 529 void scrollToMakeVisibleWithSubFocus(const IntRect&) const;
558 static IntRect boundingBoxForQuads(RenderObject*, const Vector<FloatQuad>&);
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.cpp 34 #include "platform/geometry/IntRect.h"
265 IntRect AffineTransform::mapRect(const IntRect &rect) const
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebSubstringUtil.mm 135 IntRect stringRect = enclosingIntRect(wordRange->boundingRect());
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TouchActionTest.cpp 228 IntRect clientRect = enclosedIntRect(clientFloatRect);
255 IntRect visibleRect = frameView->windowClipRect();
PinchViewportTest.cpp 634 IntPoint expected(IntRect(originalAnchor).location());
638 EXPECT_POINT_EQ(expected, IntRect(anchor).location());
639 EXPECT_POINT_EQ(expected, IntRect(focus).location());
767 webViewImpl()->scrollFocusedNodeIntoRect(IntRect(0, 0, 500, 200));
779 webViewImpl()->scrollFocusedNodeIntoRect(IntRect(0, 0, 500, 200));
    [all...]
ScrollAnimatorNoneTest.cpp 34 #include "platform/geometry/IntRect.h"
53 MOCK_METHOD2(invalidateScrollbar, void(Scrollbar*, const IntRect&));
55 MOCK_CONST_METHOD0(scrollCornerRect, IntRect());
57 MOCK_METHOD2(invalidateScrollbarRect, void(Scrollbar*, const IntRect&));
58 MOCK_METHOD1(invalidateScrollCornerRect, void(const IntRect&));
63 MOCK_CONST_METHOD1(visibleContentRect, IntRect(IncludeScrollbarsInRect));
67 MOCK_CONST_METHOD0(scrollableAreaBoundingBox, IntRect());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 139 virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE
144 virtual void invalidateContentsForSlowScroll(const IntRect&) OVERRIDE
359 view->paint(&context, IntRect(0, 0, view->width(), view->height()));
490 IntRect viewRect = view->visibleContentRect();
651 IntRect boundingBox = pixelSnappedIntRect(containingView->contentsToRootView(renderer->absoluteBoundingBoxRect()));
812 IntRect boundingBox = pixelSnappedIntRect(view->contentsToRootView(renderer->absoluteBoundingBoxRect()));
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 35 #include "platform/geometry/IntRect.h"
542 IntRect thumbRect = IntRect([scrollerPainter rectForPart:NSScrollerKnob]);
545 [self scrollAnimator]->setVisibleScrollerThumbRect(IntRect());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp     [all...]

Completed in 509 milliseconds

<<1112131415