| /external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
| ScrollView.h | 60 virtual void scrollTo(const IntSize& newOffset); 123 IntSize visibleSize() const { return visibleContentRect().size(); } 129 IntSize unscaledVisibleContentSize(IncludeScrollbarsInRect = ExcludeScrollbars) const; 133 virtual IntSize inputEventsOffsetForEmulation() const { return IntSize(); } 138 // Functions for getting/setting the size of the document contained inside the ScrollView (as an IntSize or as individual width and height 140 virtual IntSize contentsSize() const OVERRIDE; // Always at least as big as the visibleWidth()/visibleHeight(). 143 virtual void setContentsSize(const IntSize&); 147 IntSize scrollOffset() const { return toIntSize(visibleContentRect().location()); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
| StyleGeneratedImage.h | 50 virtual void setContainerSizeForRenderer(const RenderObject*, const IntSize& containerSize, float) OVERRIDE { m_containerSize = containerSize; } 53 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const OVERRIDE; 61 IntSize m_containerSize;
|
| StyleGeneratedImage.cpp | 48 IntSize fixedSize = m_imageGeneratorValue->fixedSize(renderer); 71 IntSize size = flooredIntSize(imageSize(renderer, 1)); 79 m_imageGeneratorValue->addClient(renderer, IntSize()); 87 PassRefPtr<Image> StyleGeneratedImage::image(RenderObject* renderer, const IntSize& size) const
|
| /external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
| ImageSource.h | 41 class IntSize; 106 IntSize size(RespectImageOrientationEnum = DoNotRespectImageOrientation) const; 107 IntSize frameSizeAtIndex(size_t, RespectImageOrientationEnum = DoNotRespectImageOrientation) const;
|
| ImageLayerChromiumTest.cpp | 49 static PassRefPtr<TestImage> create(const IntSize& size, bool isOpaque) 54 explicit TestImage(const IntSize& size, bool isOpaque) 73 virtual IntSize size() const OVERRIDE 97 IntSize m_size; 116 RefPtr<Image> opaqueImage = TestImage::create(IntSize(100, 100), true /* opaque */); 118 RefPtr<Image> nonOpaqueImage = TestImage::create(IntSize(100, 100), false /* opaque */);
|
| ImageBuffer.h | 33 #include "platform/geometry/IntSize.h" 80 static PassOwnPtr<ImageBuffer> create(const IntSize&, OpacityMode = NonOpaque); 87 const IntSize& size() const { return m_surface->size(); } 106 void putByteArray(Multiply multiplied, Uint8ClampedArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint); 131 void drawPattern(GraphicsContext*, const FloatRect&, const FloatSize&, const FloatPoint&, CompositeOperator, const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing = IntSize()); 146 ImageDataBuffer(const IntSize& size, PassRefPtr<Uint8ClampedArray> data) : m_size(size), m_data(data) { } 147 IntSize size() const { return m_size; } 150 IntSize m_size;
|
| UnacceleratedImageBufferSurface.h | 42 UnacceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque);
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| IconURL.h | 34 #include "platform/geometry/IntSize.h" 48 Vector<IntSize> m_sizes; 59 IconURL(const KURL& url, const Vector<IntSize>& sizes, const String& mimeType, IconType type)
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| ViewportAnchor.h | 43 class IntSize; 63 WebCore::IntPoint computeOrigin(const WebCore::IntSize& currentViewSize) const;
|
| /external/chromium_org/third_party/WebKit/Source/core/rendering/ |
| RenderThemeChromiumMac.h | 69 virtual IntSize sliderTickSize() const OVERRIDE; 81 virtual IntSize meterSizeForBounds(const RenderMeter*, const IntRect&) const OVERRIDE; 129 IntRect inflateRect(const IntRect&, const IntSize&, const int* margins, float zoomLevel = 1.0f) const; 136 void setControlSize(NSCell*, const IntSize* sizes, const IntSize& minSize, float zoomLevel = 1.0f); 137 void setSizeFromFont(RenderStyle*, const IntSize* sizes) const; 138 IntSize sizeForFont(RenderStyle*, const IntSize* sizes) const; 139 IntSize sizeForSystemFont(RenderStyle*, const IntSize* sizes) const [all...] |
| RenderLayerScrollableArea.h | 98 virtual IntSize contentsSize() const OVERRIDE; 99 virtual IntSize overhangAmount() const OVERRIDE; 111 IntSize scrollOffset() const { return m_scrollOffset; } 116 void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = ScrollOffsetUnclamped); 117 void scrollToXOffset(int x, ScrollOffsetClamping clamp = ScrollOffsetUnclamped) { scrollToOffset(IntSize(x, scrollYOffset()), clamp); } 118 void scrollToYOffset(int y, ScrollOffsetClamping clamp = ScrollOffsetUnclamped) { scrollToOffset(IntSize(scrollXOffset(), y), clamp); } 132 IntSize offsetFromResizeCorner(const IntPoint& absolutePoint) const; 148 IntSize adjustedScrollOffset() const { return IntSize(scrollXOffset(), scrollYOffset()); } 154 void positionOverflowControls(const IntSize& offsetFromRoot) [all...] |
| RenderImageResourceStyleImage.cpp | 69 return m_styleImage->image(m_renderer, IntSize(width, height)); 72 void RenderImageResourceStyleImage::setContainerSizeForRenderer(const IntSize& size)
|
| RenderThemeChromiumAndroid.cpp | 77 IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartInnerSpinButton); 88 IntSize scrollbarSize = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrollbarDownArrow);
|
| /external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
| IntPoint.h | 30 #include "platform/geometry/IntSize.h" 48 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { } 58 void move(const IntSize& s) { move(s.width(), s.height()); } 105 inline IntPoint& operator+=(IntPoint& a, const IntSize& b) 111 inline IntPoint& operator-=(IntPoint& a, const IntSize& b) 117 inline IntPoint operator+(const IntPoint& a, const IntSize& b) 127 inline IntSize operator-(const IntPoint& a, const IntPoint& b) 129 return IntSize(a.x() - b.x(), a.y() - b.y()); 132 inline IntPoint operator-(const IntPoint& a, const IntSize& b) 152 inline IntSize toIntSize(const IntPoint& a [all...] |
| RoundedRect.cpp | 51 m_topLeft = IntSize(); 54 m_topRight = IntSize(); 57 m_bottomLeft = IntSize(); 60 m_bottomRight = IntSize(); 122 m_bottomLeft = IntSize(); 124 m_topRight = IntSize(); 125 m_topLeft = IntSize(); 130 m_topRight = IntSize(); 132 m_bottomLeft = IntSize(); 133 m_bottomRight = IntSize(); [all...] |
| FloatSize.h | 44 class IntSize; 51 FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { } 177 inline IntSize roundedIntSize(const FloatSize& p) 179 return IntSize(clampToInteger(roundf(p.width())), clampToInteger(roundf(p.height()))); 182 inline IntSize flooredIntSize(const FloatSize& p) 184 return IntSize(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height()))); 187 inline IntSize expandedIntSize(const FloatSize& p) 189 return IntSize(clampToInteger(ceilf(p.width())), clampToInteger(ceilf(p.height())));
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/ |
| SVGImage.h | 54 virtual IntSize size() const OVERRIDE { return m_intrinsicSize; } 81 virtual void setContainerSize(const IntSize&) OVERRIDE; 82 IntSize containerSize() const; 99 CompositeOperator, const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing); 103 IntSize m_intrinsicSize;
|
| SVGImageForContainer.cpp | 29 IntSize SVGImageForContainer::size() const 43 const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
|
| /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
| FEConvolveMatrix.h | 44 static PassRefPtr<FEConvolveMatrix> create(Filter*, const IntSize&, 48 IntSize kernelSize() const; 49 void setKernelSize(const IntSize&); 88 FEConvolveMatrix(Filter*, const IntSize&, float, float, 122 IntSize m_kernelSize;
|
| FEGaussianBlur.h | 43 static IntSize calculateKernelSize(Filter*, const FloatPoint& std); 44 static IntSize calculateUnscaledKernelSize(const FloatPoint& std);
|
| /external/chromium_org/third_party/WebKit/Source/core/css/ |
| CSSImageGeneratorValue.cpp | 45 void CSSImageGeneratorValue::addClient(RenderObject* renderer, const IntSize& size) 75 IntSize removedImageSize; 77 IntSize size = sizeCount.size; 97 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size) 102 IntSize oldSize = sizeCount.size; 120 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image) 125 PassRefPtr<Image> CSSImageGeneratorValue::image(RenderObject* renderer, const IntSize& size) 159 IntSize CSSImageGeneratorValue::fixedSize(const RenderObject* renderer) 173 return IntSize();
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| ImageData.cpp | 38 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(const IntSize& size) 49 PassRefPtrWillBeRawPtr<ImageData> ImageData::create(const IntSize& size, PassRefPtr<Uint8ClampedArray> byteArray) 83 RefPtrWillBeRawPtr<ImageData> imageData = adoptRefWillBeNoop(new ImageData(IntSize(width, height))); 124 return adoptRefWillBeNoop(new ImageData(IntSize(width, height), data)); 127 ImageData::ImageData(const IntSize& size) 134 ImageData::ImageData(const IntSize& size, PassRefPtr<Uint8ClampedArray> byteArray)
|
| /external/chromium_org/third_party/WebKit/Source/web/tests/ |
| PinchViewportTest.cpp | 173 webViewImpl()->resize(IntSize(320, 240)); 180 IntSize webViewSize = webViewImpl()->size(); 186 webViewSize = IntSize(640, 480); 188 EXPECT_SIZE_EQ(webViewSize, IntSize(webViewImpl()->size())); 192 IntSize newViewportSize = IntSize(320, 200); 194 EXPECT_SIZE_EQ(webViewSize, IntSize(webViewImpl()->size())); 211 webViewImpl()->resize(IntSize(320, 240)); 226 webViewImpl()->resize(IntSize(320, 240)); 234 EXPECT_SIZE_EQ(IntSize(webViewImpl()->size()), pinchViewport.size()) [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/testing/ |
| DummyPageHolder.cpp | 42 PassOwnPtr<DummyPageHolder> DummyPageHolder::create(const IntSize& initialViewSize) 47 DummyPageHolder::DummyPageHolder(const IntSize& initialViewSize)
|
| /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
| JPEGImageDecoder.h | 50 virtual IntSize decodedSize() const OVERRIDE { return m_decodedSize; } 73 IntSize m_decodedSize;
|