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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/
ExternalPopupMenu.h 45 class IntSize;
65 virtual void show(const WebCore::FloatQuad& controlPosition, const WebCore::IntSize&, int index) OVERRIDE;
WebNodeTest.cpp 17 using WebCore::IntSize;
31 m_pageHolder = WebCore::DummyPageHolder::create(IntSize(800, 600));
PopupContainer.h 77 void showInRect(const WebCore::FloatQuad& controlPosition, const WebCore::IntSize& controlSize, WebCore::FrameView*, int index);
112 static WebCore::IntRect layoutAndCalculateWidgetRectInternal(WebCore::IntRect widgetRectInScreen, int targetControlHeight, const WebCore::FloatRect& windowRect, const WebCore::FloatRect& screen, bool isRTL, const int rtlOffset, const int verticalOffset, const WebCore::IntSize& transformOffset, PopupContent*, bool& needToResizeView);
124 WebCore::IntRect layoutAndCalculateWidgetRect(int targetControlHeight, const WebCore::IntSize& transformOffset, const WebCore::IntPoint& popupInitialCoordinate);
150 WebCore::IntSize m_controlSize;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCanvasValue.cpp 74 IntSize CSSCanvasValue::fixedSize(const RenderObject* renderer)
77 return IntSize(elt->width(), elt->height());
78 return IntSize();
90 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& /*size*/)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShapeTest.cpp 129 const RoundedRect::Radii cornerRadii(IntSize(10, 15), IntSize(10, 20), IntSize(25, 15), IntSize(20, 30));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageBufferSurface.cpp 41 ImageBufferSurface::ImageBufferSurface(const IntSize& size, OpacityMode opacityMode)
DeferredImageDecoder.h 31 #include "platform/geometry/IntSize.h"
65 IntSize size() const;
66 IntSize frameSizeAtIndex(size_t index) const;
93 IntSize m_size;
GraphicsContext.h 264 void fillRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color&);
272 void fillBetweenRoundedRects(const IntRect&, const IntSize& outerTopLeft, const IntSize& outerTopRight, const IntSize& outerBottomLeft, const IntSize& outerBottomRight,
273 const IntRect&, const IntSize& innerTopLeft, const IntSize& innerTopRight, const IntSize& innerBottomLeft, const IntSize& innerBottomRight, const Color&)
    [all...]
BitmapImage.h 31 #include "platform/geometry/IntSize.h"
64 virtual IntSize size() const OVERRIDE;
65 IntSize sizeRespectingOrientation() const;
66 IntSize currentFrameSize() const;
163 mutable IntSize m_size; // The size to use for the overall image (will just be the size of the first image).
164 mutable IntSize m_sizeRespectingOrientation;
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();
100 void CrossfadeGeneratedImage::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
Image.h 78 virtual void setContainerSize(const IntSize&) { }
84 virtual IntSize size() const = 0;
119 const FloatRect&, blink::WebBlendMode = blink::WebBlendModeNormal, const IntSize& repeatSpacing = IntSize());
134 CompositeOperator, blink::WebBlendMode, const IntSize& repeatSpacing);
ImageSource.cpp 86 IntSize ImageSource::size(RespectImageOrientationEnum shouldRespectOrientation) const
91 IntSize ImageSource::frameSizeAtIndex(size_t index, RespectImageOrientationEnum shouldRespectOrientation) const
94 return IntSize();
96 IntSize size = m_decoder->frameSizeAtIndex(index);
98 return IntSize(size.height(), size.width());
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h 50 virtual IntSize size() const OVERRIDE;
51 virtual IntSize frameSizeAtIndex(size_t) const OVERRIDE;
74 IntSize m_size;
151 IntSize m_frameSize;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeAura.h 46 virtual IntSize buttonSize(ScrollbarThemeClient*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/public/platform/
WebSize.h 37 #include "platform/geometry/IntSize.h"
66 WebSize(const WebCore::IntSize& s)
72 WebSize& operator=(const WebCore::IntSize& s)
79 operator WebCore::IntSize() const
81 return WebCore::IntSize(width, height);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.h 36 #include "platform/geometry/IntSize.h"
56 class IntSize;
86 void setSize(const IntSize&);
87 IntSize size() const { return m_size; }
124 virtual IntSize contentsSize() const OVERRIDE;
160 IntSize m_size;
FrameView.h 65 static PassRefPtr<FrameView> create(LocalFrame*, const IntSize& initialSize);
85 virtual void setContentsSize(const IntSize&) OVERRIDE;
106 IntSize layoutSize(IncludeScrollbarsInRect = ExcludeScrollbars) const;
107 void setLayoutSize(const IntSize&);
151 virtual IntSize inputEventsOffsetForEmulation() const OVERRIDE;
152 void setInputEventsTransformForEmulation(const IntSize&, float);
223 void incrementVisuallyNonEmptyPixelCount(const IntSize&);
225 void enableAutoSizeMode(bool enable, const IntSize& minSize, const IntSize& maxSize);
298 IntSize scrollOffsetForFixedPosition() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.h 35 #include "platform/geometry/IntSize.h"
56 class IntSize;
83 const IntSize& size() const { return m_size; }
90 void setSize(const IntSize& newSize)
138 bool shouldAccelerate(const IntSize&) const;
169 PassOwnPtr<ImageBufferSurface> createImageBufferSurface(const IntSize& deviceSize, int* msaaSampleCount);
174 void setSurfaceSize(const IntSize&);
184 IntSize m_size;
  /external/chromium_org/third_party/WebKit/Source/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 FontDescription& fontDescription, 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/platform/graphics/gpu/
DrawingBufferTest.cpp 57 IntSize oldestContextSize() { return IntSize(); }
79 m_textureSizes.set(m_boundTexture, IntSize(width, height));
96 IntSize mostRecentlyProducedSize()
114 m_imageSizes.set(m_currentImageId, IntSize(width, height));
142 m_imageSizes.set(m_currentImageId, IntSize());
160 HashMap<WebGLId, IntSize> m_textureSizes;
162 IntSize m_mostRecentlyProducedSize;
165 HashMap<WGC3Duint, IntSize> m_imageSizes;
176 const IntSize& size, PreserveDrawingBuffer preserve, PassRefPtr<ContextEvictionManager> contextEvictionManager
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImageCache.cpp 53 void SVGImageCache::setContainerSizeForRenderer(const ImageResourceClient* client, const IntSize& containerSize, float containerZoom)
65 IntSize SVGImageCache::imageSizeForRenderer(const RenderObject* renderer) const
67 IntSize imageSize = m_svgImage->size();
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformGestureEvent.h 32 #include "platform/geometry/IntSize.h"
46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY)
66 const IntSize& area() const { return m_area; }
111 IntSize m_area;
DragImage.cpp 81 IntSize sizeRespectingOrientation = bitmapImage->sizeRespectingOrientation();
140 IntSize labelSize(labelFont.width(labelRun), labelFont.fontMetrics().ascent() + labelFont.fontMetrics().descent());
147 IntSize urlStringSize;
148 IntSize imageSize(labelSize.width() + kDragLabelBorderX * 2, labelSize.height() + kDragLabelBorderY * 2);
163 IntSize scaledImageSize = imageSize;
171 const IntSize radii(DragLabelRadius, DragLabelRadius);
212 void DragImage::fitToMaxSize(const IntSize& srcSize, const IntSize& maxSize)
217 IntSize originalSize = size();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextElement.cpp 50 style->applyTransform(t, IntSize(0, 0), RenderStyle::ExcludeTransformOrigin);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntRect.h 54 IntRect(const IntPoint& location, const IntSize& size)
57 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
63 IntSize size() const { return m_size; }
66 void setSize(const IntSize& size) { m_size = size; }
86 void move(const IntSize& size) { m_location += size; }
90 void expand(const IntSize& size) { m_size += size; }
92 void contract(const IntSize& size) { m_size -= size; }
149 IntSize differenceToPoint(const IntPoint&) const;
171 IntSize m_size;

Completed in 579 milliseconds

1 23 4 5 6 7 8 91011>>