/external/chromium_org/third_party/WebKit/Source/core/plugins/ |
PluginOcclusionSupport.h | 30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
|
PluginOcclusionSupport.cpp | 129 static void addTreeToOcclusions(const RenderObject* renderer, const IntRect& frameRect, Vector<IntRect>& occlusions) 133 if (renderer->isBox() && intersectsRect(renderer, frameRect)) 136 addTreeToOcclusions(child, frameRect, occlusions); 151 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions) 182 if (element->hasTagName(HTMLNames::iframeTag) && intersectsRect(iframeRenderer, frameRect)) { 199 addTreeToOcclusions(elements[i]->renderer(), frameRect, occlusions);
|
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
tab_contents_controller.h | 23 frameRect:(NSRect)frameRect;
|
/external/chromium_org/third_party/WebKit/Source/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; }
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFullScreen.h | 42 void createPlaceholder(PassRefPtr<RenderStyle>, const LayoutRect& frameRect);
|
RenderMeter.cpp | 58 IntSize frameSize = RenderTheme::theme().meterSizeForBounds(this, pixelSnappedIntRect(frameRect())); 66 LayoutRect frame = frameRect();
|
FloatingObjects.cpp | 64 FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool shouldPaint, bool isDescendant) 67 , m_frameRect(frameRect) 90 return adoptPtr(new FloatingObject(renderer(), type(), LayoutRect(frameRect().location() - offset, frameRect().size()), shouldPaint, isDescendant)); 289 return FloatingObjectInterval(floatingObject->frameRect().pixelSnappedY(), floatingObject->frameRect().pixelSnappedMaxY(), floatingObject); 290 return FloatingObjectInterval(floatingObject->frameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedMaxX(), floatingObject); 500 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->frameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedY(), floatingObject->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pix (…) [all...] |
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/chromium_org/third_party/WebKit/Source/platform/scroll/ |
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); 120 [scrollbarPainter setBoundsSize: NSSizeFromCGSize(scrollbar->frameRect().size())]; 182 return scrollbar->frameRect();
|
ScrollbarThemeMock.cpp | 38 return scrollbar->frameRect();
|
ScrollView.cpp | 189 return scrollbarInclusion == ExcludeScrollbars ? excludeScrollbars(frameRect().size()) : frameRect().size(); 446 IntRect oldRect(m_horizontalScrollbar->frameRect()); 452 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect()) 465 IntRect oldRect(m_verticalScrollbar->frameRect()); 471 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect()) 699 if (m_horizontalScrollbar && m_horizontalScrollbar->shouldParticipateInHitTesting() && m_horizontalScrollbar->frameRect().contains(viewPoint)) 701 if (m_verticalScrollbar && m_verticalScrollbar->shouldParticipateInHitTesting() && m_verticalScrollbar->frameRect().contains(viewPoint)) 708 IntRect oldRect = frameRect(); 739 IntRect scrollbarRect = scrollbar->frameRect(); [all...] |
ScrollbarThemeClient.h | 54 virtual IntRect frameRect() const = 0;
|
ScrollbarThemeMacNonOverlayAPI.mm | 97 trackInfo.bounds = scrollbar->frameRect(); 123 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size()); 125 IntRect bufferRect(scrollbar->frameRect()); 127 bufferRect.move(-scrollbar->frameRect().x(), -scrollbar->frameRect().y()); 167 blink::WebRect(scrollbar->frameRect()), 172 context->drawImageBuffer(imageBuffer.get(), scrollbar->frameRect().location()); 298 return scrollbar->frameRect();
|
/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/platform/image-decoders/gif/ |
GIFImageDecoder.cpp | 307 IntRect frameRect = frameContext->frameRect(); 309 // Make sure the frameRect doesn't extend outside the buffer. 310 if (frameRect.maxX() > size().width()) 311 frameRect.setWidth(size().width() - frameRect.x()); 312 if (frameRect.maxY() > size().height()) 313 frameRect.setHeight(size().height() - frameRect.y()); 315 buffer.setOriginalFrameRect(frameRect); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXScrollbar.cpp | 58 return m_scrollbar->frameRect();
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoder.cpp | 258 IntRect frameRect(animatedFrame.x_offset, animatedFrame.y_offset, animatedFrame.width, animatedFrame.height); 259 // Make sure the frameRect doesn't extend outside the buffer. 260 if (frameRect.maxX() > size().width()) 261 frameRect.setWidth(size().width() - animatedFrame.x_offset); 262 if (frameRect.maxY() > size().height()) 263 frameRect.setHeight(size().height() - animatedFrame.y_offset); 264 m_frameBufferCache[i].setOriginalFrameRect(frameRect); 395 const IntRect& frameRect = buffer.originalFrameRect(); 396 ASSERT_WITH_SECURITY_IMPLICATION(width == frameRect.width()); 397 ASSERT_WITH_SECURITY_IMPLICATION(decodedHeight <= frameRect.height()) [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 | 64 - (void)setFrame:(NSRect)frameRect animate:(BOOL)animate;
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebScrollbarThemeClientImpl.h | 56 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;
|
WebPluginScrollbarImpl.cpp | 127 return m_scrollbar->frameRect().location(); 132 return m_scrollbar->frameRect().size(); 204 IntRect oldRect = m_scrollbar->frameRect(); 287 if (!m_scrollbar->frameRect().contains(mousedown.x, mousedown.y)) 309 if (m_scrollbar->frameRect().contains(mousemove.x, mousemove.y)
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FakeWebPlugin.h | 57 virtual void updateGeometry(const blink::WebRect& frameRect, const blink::WebRect& clipRect, const blink::WebVector<blink::WebRect>& cutOutsRects, bool isVisible) OVERRIDE { }
|