HomeSort by relevance Sort by last modified time
    Searched full:framerect (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
tab_contents_controller.mm 20 - (void)tabContentsViewFrameWillChange:(NSRect)frameRect;
90 - (void)setFrame:(NSRect)frameRect {
91 [controller_ tabContentsViewFrameWillChange:frameRect];
92 [super setFrame:frameRect];
147 frameRect:contentsNativeViewFrame];
169 - (void)tabContentsViewFrameWillChange:(NSRect)frameRect {
170 [delegate_ tabContentsViewFrameWillChange:self frameRect:frameRect];
180 frameRect:[[self view] frame]];
tab_contents_controller.h 23 frameRect:(NSRect)frameRect;
  /external/clang/test/CodeGenObjCXX/
property-objects.mm 25 - (void)setFrame:(CGRect)frameRect;
36 - (void)setFrame:(CGRect)frameRect {}
  /external/webkit/Source/WebCore/rendering/
RenderMeter.cpp 50 setWidth(theme()->meterSizeForBounds(this, frameRect()).width());
56 setHeight(theme()->meterSizeForBounds(this, frameRect()).height());
RenderScrollbarTheme.cpp 85 return scrollbar->frameRect();
117 toRenderScrollbar(scrollbar)->paintPart(context, ScrollbarBGPart, scrollbar->frameRect());
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 574 IntRect oldRect(m_horizontalScrollbar->frameRect());
580 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect())
595 IntRect oldRect(m_verticalScrollbar->frameRect());
601 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect())
805 if (m_horizontalScrollbar && m_horizontalScrollbar->frameRect().contains(viewPoint))
807 if (m_verticalScrollbar && m_verticalScrollbar->frameRect().contains(viewPoint))
838 IntRect oldRect = frameRect();
887 IntRect scrollbarRect = scrollbar->frameRect();
    [all...]
Widget.h 153 int x() const { return frameRect().x(); }
154 int y() const { return frameRect().y(); }
155 int width() const { return frameRect().width(); }
156 int height() const { return frameRect().height(); }
157 IntSize size() const { return frameRect().size(); }
158 IntPoint pos() const { return frameRect().location(); }
162 virtual IntRect frameRect() const;
  /external/chromium/chrome/browser/ui/cocoa/
background_gradient_view.mm 18 - (id)initWithFrame:(NSRect)frameRect {
19 self = [super initWithFrame:frameRect];
info_bubble_view.mm 14 - (id)initWithFrame:(NSRect)frameRect {
15 if ((self = [super initWithFrame:frameRect])) {
hover_button.mm 9 - (id)initWithFrame:(NSRect)frameRect {
10 if ((self = [super initWithFrame:frameRect])) {
hover_close_button.mm 27 - (id)initWithFrame:(NSRect)frameRect {
28 if ((self = [super initWithFrame:frameRect])) {
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 112 int horizontalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1);
118 resetValues ? 0 : frameRect().width());
151 int verticalPageStep = max(max<int>(frameRect().width() * Scrollbar::minFractionToStepWhenPaging(), frameRect().width() - Scrollbar::maxOverlapBetweenPages()), 1);
157 resetValues ? 0 : frameRect().height());
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowFrame.m 86 + (NSRect)contentRectForFrameRect:(NSRect)frameRect styleMask:(NSUInteger)style {
89 return frameRect;
191 - (NSRect)dragRectForFrameRect:(NSRect)frameRect {
197 dragRect.origin.y = NSMaxY(frameRect) - dragRect.size.height;
198 dragRect.size.width = frameRect.size.width;
199 dragRect.origin.x = frameRect.origin.x;
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_gradient_view.mm 22 - (id)initWithFrame:(NSRect)frameRect {
23 if ((self = [super initWithFrame:frameRect])) {
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_toolbar_view.mm 83 NSRect frameRect =
90 frameRect = NSInsetRect(frameRect, morph * 0.5, morph * 0.5);
92 [NSBezierPath bezierPathWithRoundedRect:frameRect
  /external/webkit/Source/WebCore/plugins/
IFrameShimSupport.h 30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageDecoder.cpp 327 IntRect frameRect(frameReader->x_offset, frameReader->y_offset, frameReader->width, frameReader->height);
329 // Make sure the frameRect doesn't extend outside the buffer.
330 if (frameRect.maxX() > size().width())
331 frameRect.setWidth(size().width() - frameReader->x_offset);
332 if (frameRect.maxY() > size().height())
333 frameRect.setHeight(size().height() - frameReader->y_offset);
336 int left = upperBoundScaledX(frameRect.x());
337 int right = lowerBoundScaledX(frameRect.maxX(), left);
338 int top = upperBoundScaledY(frameRect.y());
339 int bottom = lowerBoundScaledY(frameRect.maxY(), top)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 86 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect)
88 Widget::setFrameRect(frameRect);
101 if (!frameRect().intersects(damageRect))
306 calculateGeometry(frameRect(), windowRect, clipRect, cutOutRects);
554 void WebPluginContainerImpl::calculateGeometry(const IntRect& frameRect,
560 parent()->contentsToWindow(frameRect.location()), frameRect.size());
566 getPluginOcclusions(m_element, this->parent(), frameRect, cutOutRects);
569 cutOutRects[i].move(-frameRect.x(), -frameRect.y())
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 357 return scrollbar->frameRect();
455 context->translate(scrollbar->frameRect().x(), scrollbar->frameRect().y());
461 scrollbar->frameRect());
472 trackInfo.bounds = scrollbar->frameRect();
516 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size());
518 IntRect bufferRect(scrollbar->frameRect());
525 imageBuffer->context()->translate(scrollbar->frameRect().x() - bufferRect.x(), scrollbar->frameRect().y() - bufferRect.y());
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 137 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
175 if (!m_windowRect.intersects(frameView->frameRect())
182 // Note that we don't invalidate the frameRect() here. This is because QWebFrame::renderRelativeCoords()
272 painter->drawImage(QPoint(frameRect().x() + exposedRect.x(), frameRect().y() + exposedRect.y()), m_image, exposedRect);
367 exposedRect.intersect(frameRect());
368 exposedRect.move(-frameRect().x(), -frameRect().y());
377 painter->translate(frameRect().x(), frameRect().y())
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/extensions/
browser_actions_container_view.mm 44 - (id)initWithFrame:(NSRect)frameRect {
45 if ((self = [super initWithFrame:frameRect])) {
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 307 return scrollbar->frameRect();
389 trackInfo.bounds = scrollbar->frameRect();
414 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size());
416 IntRect bufferRect(scrollbar->frameRect());
418 bufferRect.move(-scrollbar->frameRect().x(), -scrollbar->frameRect().y());
478 scrollbar->frameRect(),
483 context->drawImageBuffer(imageBuffer.get(), ColorSpaceDeviceRGB, scrollbar->frameRect().location());
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 170 void PluginProxy::geometryDidChange(const IntRect& frameRect, const IntRect& clipRect)
174 m_frameRect = frameRect;
178 m_connection->connection()->send(Messages::PluginControllerProxy::GeometryDidChange(frameRect, clipRect, pluginBackingStoreHandle), m_pluginInstanceID, CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply);
184 m_backingStore = ShareableBitmap::create(frameRect.size(), ShareableBitmap::SupportsAlpha);
186 } else if (frameRect.size() != m_backingStore->size()) {
188 if (!m_backingStore->resize(frameRect.size()))
198 m_pluginBackingStore = ShareableBitmap::createShareable(frameRect.size(), ShareableBitmap::SupportsAlpha);
211 m_connection->connection()->send(Messages::PluginControllerProxy::GeometryDidChange(frameRect, clipRect, pluginBackingStoreHandle), m_pluginInstanceID, CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply);
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWindow.h 28 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
  /external/webkit/Source/WebCore/platform/brew/
WidgetBrew.cpp 45 IntRect Widget::frameRect() const

Completed in 1563 milliseconds

1 2 3 4 5 6