HomeSort by relevance Sort by last modified time
    Searched refs:IntSize (Results 51 - 75 of 315) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/public/platform/
WebSize.h 37 #include "core/platform/graphics/IntSize.h"
65 WebSize(const WebCore::IntSize& s)
71 WebSize& operator=(const WebCore::IntSize& s)
78 operator WebCore::IntSize() const
80 return WebCore::IntSize(width, height);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformGestureEvent.h 32 #include "core/platform/graphics/IntSize.h"
54 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, const IntSize& area, const FloatPoint& delta, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
67 const IntSize& area() const { return m_area; }
75 IntSize m_area;
DragImage.cpp 41 #include "core/platform/graphics/IntSize.h"
83 IntSize sizeRespectingOrientation = bitmapImage->sizeRespectingOrientation();
144 IntSize labelSize(labelFont.width(labelRun), labelFont.fontMetrics().ascent() + labelFont.fontMetrics().descent());
151 IntSize urlStringSize;
152 IntSize imageSize(labelSize.width() + kDragLabelBorderX * 2, labelSize.height() + kDragLabelBorderY * 2);
167 IntSize scaledImageSize = imageSize;
174 const IntSize radii(DragLabelRadius, DragLabelRadius);
209 void DragImage::fitToMaxSize(const IntSize& srcSize, const IntSize& maxSize)
214 IntSize originalSize = size()
    [all...]
ScrollbarThemeClient.h 32 #include "core/platform/graphics/IntSize.h"
46 virtual IntSize size() const = 0;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
DeferredImageDecoder.h 31 #include "core/platform/graphics/IntSize.h"
62 IntSize size() const;
63 IntSize frameSizeAtIndex(size_t index) const;
86 IntSize m_size;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageCache.cpp 54 void SVGImageCache::setContainerSizeForRenderer(const ImageResourceClient* client, const IntSize& containerSize, float containerZoom)
66 IntSize SVGImageCache::imageSizeForRenderer(const RenderObject* renderer) const
68 IntSize imageSize = m_svgImage->size();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
BitmapImage.h 36 #include "core/platform/graphics/IntSize.h"
64 virtual IntSize size() const OVERRIDE;
65 IntSize sizeRespectingOrientation() const;
66 IntSize currentFrameSize() const;
168 mutable IntSize m_size; // The size to use for the overall image (will just be the size of the first image).
169 mutable IntSize m_sizeRespectingOrientation;
ImageSource.cpp 82 IntSize ImageSource::size(RespectImageOrientationEnum shouldRespectOrientation) const
87 IntSize ImageSource::frameSizeAtIndex(size_t index, RespectImageOrientationEnum shouldRespectOrientation) const
90 return IntSize();
92 IntSize size = m_decoder->frameSizeAtIndex(index);
94 return IntSize(size.height(), size.width());
CrossfadeGeneratedImage.cpp 37 CrossfadeGeneratedImage::CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize& size)
50 IntSize fromImageSize = m_fromImage->size();
51 IntSize toImageSize = m_toImage->size();
FloatSize.cpp 33 #include "core/platform/graphics/IntSize.h"
40 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
IntRect.h 55 IntRect(const IntPoint& location, const IntSize& size)
58 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
64 IntSize size() const { return m_size; }
67 void setSize(const IntSize& size) { m_size = size; }
87 void move(const IntSize& size) { m_location += size; }
91 void expand(const IntSize& size) { m_size += size; }
93 void contract(const IntSize& size) { m_size -= size; }
150 IntSize differenceToPoint(const IntPoint&) const;
167 IntSize m_size;
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ThemeMac.mm 119 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
121 IntSize controlSize = sizes[nsControlSize];
123 controlSize = IntSize(controlSize.width() * zoomFactor, controlSize.height() * zoomFactor);
132 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
137 static ControlSize controlSizeFromPixelSize(const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
148 static void setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
207 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
227 static const IntSize* checkboxSizes(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.h 129 void resize(const IntSize&);
165 void reset(const IntSize& viewportSize, const IntSize& frameViewFullSize, int scrollX, int scrollY);
182 IntSize m_size;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromium.h 54 virtual IntSize buttonSize(ScrollbarThemeClient*) = 0;
ScrollbarThemeChromiumWin.h 49 virtual IntSize buttonSize(ScrollbarThemeClient*) OVERRIDE;
ScrollbarThemeChromiumDefault.cpp 59 IntSize scrollbarSize = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarVerticalTrack);
130 IntSize ScrollbarThemeChromiumDefault::buttonSize(ScrollbarThemeClient* scrollbar)
133 IntSize size = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarUpArrow);
134 return IntSize(size.width(), scrollbar->height() < 2 * size.height() ? scrollbar->height() / 2 : size.height());
138 IntSize size = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarLeftArrow);
139 return IntSize(scrollbar->width() < 2 * size.width() ? scrollbar->width() / 2 : size.width(), size.height());
145 IntSize size = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarVerticalThumb);
149 IntSize size = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarHorizontalThumb);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.h 52 virtual void setContainerSizeForRenderer(const IntSize&);
RenderMeter.cpp 58 IntSize frameSize = theme()->meterSizeForBounds(this, pixelSnappedIntRect(frameRect()));
71 IntSize frameSize = theme()->meterSizeForBounds(this, pixelSnappedIntRect(frame));
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserPopupUIController.h 53 virtual WebCore::IntSize contentSize() OVERRIDE;
PopupMenuChromium.h 51 virtual void show(const FloatQuad& controlPosition, const IntSize& controlSize, int index) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCanvasValue.h 43 PassRefPtr<Image> image(RenderObject*, const IntSize&);
45 IntSize fixedSize(const RenderObject*);
CSSCrossfadeValue.h 55 PassRefPtr<Image> image(RenderObject*, const IntSize&);
57 IntSize fixedSize(const RenderObject*);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEGaussianBlur.h 74 inline void platformApply(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* tmpPixelArray, unsigned kernelSizeX, unsigned kernelSizeY, IntSize& paintSize);
76 inline void platformApplyGeneric(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* tmpPixelArray, unsigned kernelSizeX, unsigned kernelSizeY, IntSize& paintSize);
FETurbulence.h 74 PaintingData(long paintingSeed, const IntSize& paintingSize)
83 IntSize filterSize;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterRenderer.h 36 #include "core/platform/graphics/IntSize.h"
62 void draw(Platform3DObject, const IntSize&);
87 IntSize m_contextSize;

Completed in 900 milliseconds

1 23 4 5 6 7 8 91011>>