HomeSort by relevance Sort by last modified time
    Searched refs:IntSize (Results 76 - 100 of 678) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/rendering/style/
StyleImage.h 29 #include "IntSize.h"
55 virtual IntSize imageSize(const RenderObject*, float multiplier) const = 0;
59 virtual void setImageContainerSize(const IntSize&) = 0;
62 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const = 0;
  /external/webkit/Source/WebKit2/Shared/
WebPageCreationParameters.h 33 #include <WebCore/IntSize.h>
47 WebCore::IntSize viewSize;
64 WebCore::IntSize fixedLayoutSize;
UpdateInfo.h 50 WebCore::IntSize viewSize;
54 WebCore::IntSize scrollOffset;
WebImage.cpp 35 PassRefPtr<WebImage> WebImage::create(const IntSize& size, ImageOptions options)
57 const IntSize& WebImage::size() const
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
LayerTreeHost.h 34 class IntSize;
58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
60 virtual void sizeDidChange(const WebCore::IntSize& newSize) = 0;
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 32 #include "IntSize.h"
53 virtual IntSize size() const = 0;
55 virtual void reset(const IntSize& size, bool opaque = false)
77 inline IntSize contentSize() const { return m_contentSize; }
85 IntSize m_contentSize;
103 virtual void paintToTarget(const BitmapTexture& texture, const IntSize&, const TransformationMatrix& matrix, float opacity, const IntRect& visibleRect)
120 void setViewportSize(const IntSize&);
  /external/webkit/Source/WebCore/css/
CSSCanvasValue.h 43 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&);
45 virtual IntSize fixedSize(const RenderObject*);
CSSCanvasValue.cpp 68 IntSize CSSCanvasValue::fixedSize(const RenderObject* renderer)
71 return IntSize(elt->width(), elt->height());
72 return IntSize();
86 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& /*size*/)
  /external/webkit/Source/WebCore/platform/graphics/haiku/
StillImageHaiku.cpp 32 #include "IntSize.h"
56 IntSize StillImage::size() const
58 return IntSize(m_bitmap.Bounds().IntegerWidth() + 1, m_bitmap.Bounds().IntegerHeight() + 1);
  /external/webkit/Source/WebCore/platform/graphics/skia/
BitmapImageSingleFrameSkia.h 56 virtual IntSize size() const
58 return IntSize(m_nativeImage.width(), m_nativeImage.height());
  /external/webkit/Source/WebCore/platform/qt/
DragImageQt.cpp 34 IntSize dragImageSize(DragImageRef image)
37 return IntSize();
  /external/webkit/Source/WebCore/svg/graphics/
SVGImage.h 51 virtual void setContainerSize(const IntSize&);
56 virtual IntSize size() const;
  /external/webkit/Source/WebKit2/UIProcess/
BackingStore.cpp 40 PassOwnPtr<BackingStore> BackingStore::create(const IntSize& size, WebPageProxy* webPageProxy)
45 BackingStore::BackingStore(const IntSize& size, WebPageProxy* webPageProxy)
  /external/webkit/Source/WebCore/platform/
ScrollView.h 68 virtual void didCompleteRubberBand(const IntSize&) const;
73 virtual void scrollTo(const IntSize& newOffset);
162 IntSize fixedLayoutSize() const;
163 void setFixedLayoutSize(const IntSize&);
167 // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height
169 IntSize contentsSize() const; // Always at least as big as the visibleWidth()/visibleHeight().
172 virtual void setContentsSize(const IntSize&);
184 IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes.
192 IntSize overhangAmount() const
    [all...]
  /external/webkit/Source/WebCore/page/mac/
DragControllerMac.mm 63 const IntSize& DragController::maxDragImageSize()
65 static const IntSize maxDragImageSize(400, 400);
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumLinux.h 46 virtual IntSize buttonSize(Scrollbar*);
  /external/webkit/Source/WebCore/platform/graphics/
FloatSize.cpp 31 #include "IntSize.h"
36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.h 26 #include "IntSize.h"
44 virtual void paintToTarget(const BitmapTexture&, const IntSize&, const TransformationMatrix&, float opacity, const IntRect& visibleRect);
82 static inline IntSize nextPowerOfTwo(const IntSize& size)
84 return IntSize(nextPowerOfTwo(size.width()), nextPowerOfTwo(size.height()));
  /external/webkit/Source/WebCore/platform/graphics/transforms/
IdentityTransformOperation.h 49 virtual bool apply(TransformationMatrix&, const IntSize&) const
  /external/webkit/Source/WebCore/platform/graphics/win/
IntRectWin.cpp 35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntRectWx.cpp 36 , m_size(IntSize(r.width, r.height))
  /external/webkit/Source/WebCore/platform/image-decoders/ico/
ICOImageDecoder.h 50 virtual IntSize size() const;
51 virtual IntSize frameSizeAtIndex(size_t) const;
68 IntSize m_size;
137 IntSize m_frameSize;
  /external/webkit/Source/WebCore/rendering/
RenderApplet.cpp 47 IntSize RenderApplet::intrinsicSize() const
53 return widget() ? IntSize(50, 50) : IntSize(150, 150);
80 setWidget(frame->loader()->subframeLoader()->createJavaAppletWidget(IntSize(contentWidth, contentHeight), element, m_args));
RenderMedia.cpp 42 RenderMedia::RenderMedia(HTMLMediaElement* video, const IntSize& intrinsicSize)
60 IntSize oldSize = contentBoxRect().size();
68 IntSize newSize = contentBoxRect().size();
75 LayoutStateMaintainer statePusher(view(), this, IntSize(x(), y()), hasTransform() || hasReflection() || style()->isFlippedBlocksWritingMode());
  /external/webkit/Source/WebKit/chromium/public/
WebSize.h 37 #include "IntSize.h"
63 WebSize(const WebCore::IntSize& s)
69 WebSize& operator=(const WebCore::IntSize& s)
76 operator WebCore::IntSize() const
78 return WebCore::IntSize(width, height);

Completed in 307 milliseconds

1 2 34 5 6 7 8 91011>>