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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.h 215 IntSize tileSize() const { return m_tileSize; }
216 void setTileSize(const IntSize& tileSize)
223 IntSize spaceSize() const { return m_repeatSpacing; }
224 void setSpaceSize(const IntSize& repeatSpacing)
246 IntSize m_tileSize;
247 IntSize m_repeatSpacing;
304 IntSize calculateImageIntrinsicDimensions(StyleImage*, const IntSize& scaledPositioningAreaSize, ScaleByEffectiveZoomOrNot) const;
312 IntSize calculateFillTileSize(const FillLayer*, const IntSize& scaledPositioningAreaSize) const
    [all...]
RenderLayerScrollableArea.cpp 95 element->setSavedLayerScrollOffset(IntSize());
335 IntSize scrollDimensions = maximumScrollPosition() - minimumScrollPosition();
453 IntSize(max(0, layer()->size().width() - verticalScrollbarWidth), max(0, layer()->size().height() - horizontalScrollbarHeight)));
466 IntSize RenderLayerScrollableArea::contentsSize() const
468 return IntSize(scrollWidth(), scrollHeight());
471 IntSize RenderLayerScrollableArea::overhangAmount() const
473 return IntSize();
563 void RenderLayerScrollableArea::scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping clamp)
565 IntSize newScrollOffset = clamp == ScrollOffsetClamped ? clampScrollOffset(scrollOffset) : scrollOffset;
577 IntSize originalScrollOffset = adjustedScrollOffset()
    [all...]
HitTestLocation.cpp 158 actualPoint -= IntSize(leftPadding, topPadding);
160 IntSize actualPadding(leftPadding + rightPadding, topPadding + bottomPadding);
163 actualPadding += IntSize(1, 1);
RenderVideo.cpp 54 IntSize RenderVideo::defaultSize()
60 return IntSize(cDefaultWidth, cDefaultHeight);
102 IntSize size = webMediaPlayer->naturalSize();
PaintInfo.h 101 rect.setSize(IntSize(0, 0));
RenderImageResource.cpp 93 void RenderImageResource::setContainerSizeForRenderer(const IntSize& imageContainerSize)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp 90 PassRefPtr<DrawingBuffer> DrawingBuffer::create(PassOwnPtr<blink::WebGraphicsContext3D> context, const IntSize& size, PreserveDrawingBuffer preserve, blink::WebGraphicsContext3D::Attributes requestedAttributes, PassRefPtr<ContextEvictionManager> contextEvictionManager)
364 bool DrawingBuffer::initialize(const IntSize& size)
618 setSize(IntSize());
659 bool DrawingBuffer::resizeFramebuffer(const IntSize& size)
683 bool DrawingBuffer::resizeMultisampleFramebuffer(const IntSize& size)
703 void DrawingBuffer::resizeDepthStencil(const IntSize& size)
763 void DrawingBuffer::setSize(const IntSize& size)
772 int DrawingBuffer::pixelDelta(const IntSize& newSize, const IntSize& curSize)
777 IntSize DrawingBuffer::adjustSize(const IntSize& desiredSize, const IntSize& curSize, int maxTextureSize
    [all...]
WebGLImageConversion.h 16 class IntSize;
145 static bool extractImageData(const uint8_t*, const IntSize&, GLenum format, GLenum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp 54 MockPopupContent(const IntSize& widgetSize)
76 static IntRect calculatePositionWithTransformAndRTL(const IntRect& initialRect, const IntSize& transformOffset, int verticalOffset, PopupContent* content)
93 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
182 IntSize transformOffset(-4, -8);
192 IntSize transformOffset(4, -8);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.h 133 const Vector<IntSize>& iconSizes() const;
165 static void parseSizesAttribute(const AtomicString& value, Vector<IntSize>& iconSizes);
207 Vector<IntSize> m_iconSizes;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.h 52 void applyCSSProperties(const IntSize& videoSize);
102 virtual void updateDisplay(const IntSize& videoSize, HTMLDivElement& container) OVERRIDE;
151 PassRefPtrWillBeRawPtr<VTTCueBox> getDisplayTree(const IntSize& videoSize);
  /external/chromium_org/third_party/WebKit/Source/platform/
CrossThreadCopier.h 47 class IntSize;
82 template<> struct CrossThreadCopierBase<false, false, false, IntSize> : public CrossThreadCopierPassThrough<IntSize> {
Widget.h 60 IntSize size() const { return frameRect().size(); }
68 void resize(const IntSize& s) { setFrameRect(IntRect(location(), s)); }
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
Region.h 50 void translate(const IntSize&);
101 void translate(const IntSize&);
160 static inline Region translate(const Region& region, const IntSize& offset)
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.h 158 virtual IntSize contentsSize() const = 0;
159 virtual IntSize overhangAmount() const { return IntSize(); }
ScrollAnimator.cpp 92 IntSize maxForwardScrollDelta = m_scrollableArea->maximumScrollPosition() - m_scrollableArea->scrollPosition();
93 IntSize maxBackwardScrollDelta = m_scrollableArea->scrollPosition() - m_scrollableArea->minimumScrollPosition();
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ImageResource.h 68 void setContainerSizeForRenderer(const ImageResourceClient*, const IntSize&, float);
126 typedef pair<IntSize, float> SizeAndZoom;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 130 void SVGImage::setContainerSize(const IntSize& size)
148 IntSize SVGImage::containerSize() const
152 return IntSize();
156 return IntSize();
159 IntSize containerSize = renderer->containerSize();
181 return IntSize(300, 150);
193 IntSize roundedContainerSize = roundedIntSize(containerSize);
223 const FloatSize& scale, const FloatPoint& phase, CompositeOperator compositeOp, const FloatRect& dstRect, blink::WebBlendMode blendMode, const IntSize& repeatSpacing)
  /external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
PNGImageEncoder.cpp 37 #include "platform/geometry/IntSize.h"
71 static bool encodePixels(IntSize imageSize, unsigned char* inputPixels, bool premultiplied, Vector<unsigned char>* output)
124 return encodePixels(IntSize(bitmap.width(), bitmap.height()), static_cast<unsigned char*>(bitmap.getPixels()), true, output);
WEBPImageEncoder.cpp 35 #include "platform/geometry/IntSize.h"
86 static bool encodePixels(IntSize imageSize, const unsigned char* pixels, bool premultiplied, int quality, Vector<unsigned char>* output)
125 return encodePixels(IntSize(bitmap.width(), bitmap.height()), static_cast<unsigned char *>(bitmap.getPixels()), true, quality, output);
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserPopupUIController.cpp 78 IntSize ColorChooserPopupUIController::contentSize()
80 return IntSize(0, 0);
ViewportAnchor.cpp 62 IntSize pointOffset = viewRect.size();
107 IntPoint ViewportAnchor::computeOrigin(const IntSize& currentViewSize) const
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmap.h 40 IntSize size() const { return m_cropRect.size(); }
Settings.cpp 106 // FIXME: Move to Settings.in once make_settings can understand IntSize.
107 void Settings::setTextAutosizingWindowSizeOverride(const IntSize& textAutosizingWindowSizeOverride)
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.h 82 virtual void updateDisplay(const IntSize& videoSize, HTMLDivElement& container) = 0;

Completed in 889 milliseconds

1 2 3 4 56 7 8 91011>>