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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/plugins/
IFrameShimSupport.h 30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
IFrameShimSupport.cpp 122 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions)
154 && iframeRenderer->absoluteBoundingBoxRectIgnoringTransforms().intersects(frameRect)
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
tab_contents_controller.h 23 frameRect:(NSRect)frameRect;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Widget.h 55 int x() const { return frameRect().x(); }
56 int y() const { return frameRect().y(); }
57 int width() const { return frameRect().width(); }
58 int height() const { return frameRect().height(); }
59 IntSize size() const { return frameRect().size(); }
60 IntPoint location() const { return frameRect().location(); }
63 const IntRect& frameRect() const { return m_frame; }
ScrollbarThemeClient.h 53 virtual IntRect frameRect() const = 0;
ScrollView.cpp 473 IntRect oldRect(m_horizontalScrollbar->frameRect());
479 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect())
492 IntRect oldRect(m_verticalScrollbar->frameRect());
498 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect())
726 if (m_horizontalScrollbar && m_horizontalScrollbar->shouldParticipateInHitTesting() && m_horizontalScrollbar->frameRect().contains(viewPoint))
728 if (m_verticalScrollbar && m_verticalScrollbar->shouldParticipateInHitTesting() && m_verticalScrollbar->frameRect().contains(viewPoint))
735 IntRect oldRect = frameRect();
769 IntRect scrollbarRect = scrollbar->frameRect();
    [all...]
Scrollbar.h 66 virtual IntRect frameRect() const { return Widget::frameRect(); }
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMacOverlayAPI.mm 94 CGRect frameRect = scrollbar->frameRect();
97 [scrollbarPainter setBoundsSize: NSSizeFromCGSize(frameRect.size)];
99 NSRect trackRect = NSMakeRect(0, 0, frameRect.size.width, frameRect.size.height);
111 CGRect frameRect = scrollbar->frameRect();
121 [scrollbarPainter setBoundsSize: NSSizeFromCGSize(scrollbar->frameRect().size())];
183 return scrollbar->frameRect();
ScrollbarThemeMacNonOverlayAPI.mm 96 trackInfo.bounds = scrollbar->frameRect();
122 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size());
124 IntRect bufferRect(scrollbar->frameRect());
126 bufferRect.move(-scrollbar->frameRect().x(), -scrollbar->frameRect().y());
166 WebKit::WebRect(scrollbar->frameRect()),
171 context->drawImageBuffer(imageBuffer.get(), scrollbar->frameRect().location());
297 return scrollbar->frameRect();
  /external/chromium_org/third_party/WebKit/Source/core/platform/mock/
ScrollbarThemeMock.cpp 37 return scrollbar->frameRect();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFullScreen.h 42 void createPlaceholder(PassRefPtr<RenderStyle>, const LayoutRect& frameRect);
RenderMeter.cpp 58 IntSize frameSize = theme()->meterSizeForBounds(this, pixelSnappedIntRect(frameRect()));
66 LayoutRect frame = frameRect();
RenderFullScreen.cpp 173 void RenderFullScreen::createPlaceholder(PassRefPtr<RenderStyle> style, const LayoutRect& frameRect)
176 style->setWidth(Length(frameRect.width(), Fixed));
178 style->setHeight(Length(frameRect.height(), Fixed));
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzWindow.h 36 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
SDL_QuartzWindow.m 105 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag
116 [ super setFrame:frameRect display:flag ];
122 [ super setFrame:frameRect display:flag ];
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ViewFilter.java 84 protected RectF getTargetRect(Rect frameRect, Rect bufferRect) {
87 float frameAR = (float)frameRect.width() / frameRect.height();
131 protected void setupShader(ImageShader shader, Rect frameRect, Rect outputRect) {
132 shader.setTargetRect(getTargetRect(frameRect, outputRect));
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoder.cpp 305 IntRect frameRect = frameContext->frameRect();
307 // Make sure the frameRect doesn't extend outside the buffer.
308 if (frameRect.maxX() > size().width())
309 frameRect.setWidth(size().width() - frameRect.x());
310 if (frameRect.maxY() > size().height())
311 frameRect.setHeight(size().height() - frameRect.y());
313 buffer.setOriginalFrameRect(frameRect);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityScrollbar.cpp 52 return m_scrollbar->frameRect();
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
WEBPImageDecoder.cpp 276 IntRect frameRect(frame.x_offset, frame.y_offset, frame.width, frame.height);
278 // Make sure the frameRect doesn't extend outside the buffer.
279 if (frameRect.maxX() > size().width())
280 frameRect.setWidth(size().width() - frame.x_offset);
281 if (frameRect.maxY() > size().height())
282 frameRect.setHeight(size().height() - frame.y_offset);
283 buffer.setOriginalFrameRect(frameRect);
290 m_frameBackgroundHasAlpha = !frameRect.contains(IntRect(IntPoint(), size()));
401 const IntRect& frameRect = buffer.originalFrameRect();
402 ASSERT_WITH_SECURITY_IMPLICATION(width == frameRect.width())
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 64 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
browser_action_button.h 60 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumOverlay.cpp 93 IntRect rect = scrollbar->frameRect();
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebScrollbarThemeClientImpl.h 55 virtual IntRect frameRect() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.cpp 39 ScrollbarGroup::ScrollbarGroup(FrameView* frameView, const IntRect& frameRect)
41 , m_frameRect(frameRect)
134 void ScrollbarGroup::setFrameRect(const IntRect& frameRect)
136 m_frameRect = frameRect;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.h 57 virtual void updateGeometry(const WebKit::WebRect& frameRect, const WebKit::WebRect& clipRect, const WebKit::WebVector<WebKit::WebRect>& cutOutsRects, bool isVisible) OVERRIDE { }

Completed in 1148 milliseconds

1 2 3