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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelectionTest.cpp 132 IntRect frameRect = frameView.frameRect();
133 frameRect.setWidth(frameRect.width() + 1);
134 frameRect.setHeight(frameRect.height() + 1);
135 dummyPageHolder().frameView().setFrameRect(frameRect);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeClientImpl.cpp 95 IntRect WebScrollbarThemeClientImpl::frameRect() const
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 309 IntRect frameRect = frameContext->frameRect();
311 // Make sure the frameRect doesn't extend outside the buffer.
312 if (frameRect.maxX() > size().width())
313 frameRect.setWidth(size().width() - frameRect.x());
314 if (frameRect.maxY() > size().height())
315 frameRect.setHeight(size().height() - frameRect.y());
317 buffer.setOriginalFrameRect(frameRect);
    [all...]
GIFImageReader.h 222 blink::IntRect frameRect() const { return blink::IntRect(m_xOffset, m_yOffset, m_width, m_height); }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElementTest.cpp 91 IntRect frameRect = frameView.frameRect();
92 frameRect.setWidth(frameRect.width() + 1);
93 frameRect.setHeight(frameRect.height() + 1);
94 page().frameView().setFrameRect(frameRect);
  /external/chromium_org/third_party/WebKit/Source/platform/
Widget.h 56 int x() const { return frameRect().x(); }
57 int y() const { return frameRect().y(); }
58 int width() const { return frameRect().width(); }
59 int height() const { return frameRect().height(); }
60 IntSize size() const { return frameRect().size(); }
61 IntPoint location() const { return frameRect().location(); }
64 const IntRect& frameRect() const { return m_frame; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.h 76 const LayoutRect& frameRect() const { ASSERT(isPlaced()); return m_frameRect; }
77 void setFrameRect(const LayoutRect& frameRect) { ASSERT(!isInPlacedTree()); m_frameRect = frameRect; }
InlineFlowBox.cpp     [all...]
RenderBox.h 177 LayoutRect frameRect() const { return m_frameRect; }
    [all...]

Completed in 1783 milliseconds