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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/
PopupMenuChromium.cpp 70 void PopupMenuChromium::show(const FloatQuad& controlPosition, const IntSize& controlSize, int index)
ScrollbarGroup.h 69 virtual WebCore::IntSize contentsSize() const OVERRIDE;
70 virtual WebCore::IntSize overhangAmount() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumMac.mm 549 IntSize size = popupButtonSizes()[[popupButton() controlSize]];
558 IntRect RenderThemeChromiumMac::inflateRect(const IntRect& r, const IntSize& size, const int* margins, float zoomLevel) const
679 void RenderThemeChromiumMac::setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minSize, float zoomLevel)
694 IntSize RenderThemeChromiumMac::sizeForFont(RenderStyle* style, const IntSize* sizes) const
697 IntSize result = sizes[controlSizeForFont(style)];
698 return IntSize(result.width() * style->effectiveZoom(), result.height() * style->effectiveZoom());
703 IntSize RenderThemeChromiumMac::sizeForSystemFont(RenderStyle* style, const IntSize* sizes) cons
    [all...]
RenderLayer.h 373 const IntSize& size() const { return m_layerSize; }
374 void setSize(const IntSize& size) { m_layerSize = size; }
397 void scrollByRecursively(const IntSize&, ScrollOffsetClamping = ScrollOffsetUnclamped);
398 void scrollToOffset(const IntSize&, ScrollOffsetClamping = ScrollOffsetUnclamped);
399 void scrollToXOffset(int x, ScrollOffsetClamping clamp = ScrollOffsetUnclamped) { scrollToOffset(IntSize(x, scrollYOffset()), clamp); }
400 void scrollToYOffset(int y, ScrollOffsetClamping clamp = ScrollOffsetUnclamped) { scrollToOffset(IntSize(scrollXOffset(), y), clamp); }
404 IntSize adjustedScrollOffset() const { return IntSize(scrollXOffset(), scrollYOffset()); }
425 IntSize offsetFromResizeCorner(const IntPoint& absolutePoint) const;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorController.h 56 class IntSize;
90 void webViewResized(const IntSize&);
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ImageResource.h 63 void setContainerSizeForRenderer(const ImageResourceClient*, const IntSize&, float);
109 typedef pair<IntSize, float> SizeAndZoom;
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 66 virtual void scroll(const IntSize&, const IntRect&, const IntRect&) OVERRIDE;
74 void contentsSizeChanged(Frame*, const IntSize&) const;
PageScaleConstraintsSet.cpp 52 void PageScaleConstraintsSet::updatePageDefinedConstraints(const ViewportArguments& arguments, IntSize viewSize, int layoutFallbackWidth)
80 void PageScaleConstraintsSet::adjustFinalConstraintsToContentsSize(IntSize viewSize, IntSize contentsSize, int nonOverlayScrollbarWidth)
92 void PageScaleConstraintsSet::didChangeContentsSize(IntSize contentsSize, float pageScaleFactor)
133 void PageScaleConstraintsSet::adjustForAndroidWebViewQuirks(const ViewportArguments& arguments, IntSize viewSize, int layoutFallbackWidth, float deviceScaleFactor, bool supportTargetDensityDPI, bool wideViewportQuirkEnabled, bool useWideViewport, bool loadWithOverviewMode)
Frame.h 37 #include "core/platform/graphics/IntSize.h"
76 void createView(const IntSize&, const StyleColor&, bool,
77 const IntSize& fixedLayoutSize = IntSize(), bool useFixedLayout = false, ScrollbarMode = ScrollbarAuto, bool horizontalLock = false,
  /external/chromium_org/third_party/WebKit/Source/core/platform/
LocalizedStrings.h 34 class IntSize;
101 String imageTitle(const String& filename, const IntSize& size);
ScrollView.cpp 189 IntSize ScrollView::unscaledVisibleContentSize(VisibleContentRectIncludesScrollbars scrollbarInclusion) const
201 return IntSize(max(0, width() - verticalScrollbarWidth),
212 IntSize ScrollView::layoutSize(VisibleContentRectIncludesScrollbars scrollbarInclusion) const
217 IntSize ScrollView::fixedLayoutSize() const
222 void ScrollView::setFixedLayoutSize(const IntSize& newSize)
246 IntSize ScrollView::contentsSize() const
251 void ScrollView::setContentsSize(const IntSize& newSize)
288 IntSize scrollSize = m_contentsSize - visibleContentRect().size();
305 void ScrollView::scrollTo(const IntSize& newOffset)
307 IntSize scrollDelta = newOffset - m_scrollOffset
    [all...]
CrossThreadCopier.h 45 class IntSize;
76 template<> struct CrossThreadCopierBase<false, false, IntSize> : public CrossThreadCopierPassThrough<IntSize> {
ScrollableArea.h 148 virtual IntSize contentsSize() const = 0;
149 virtual IntSize overhangAmount() const { return IntSize(); }
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Image.h 77 virtual void setContainerSize(const IntSize&) { }
83 virtual IntSize size() const = 0;
Region.h 49 void translate(const IntSize&);
97 void translate(const IntSize&);
155 static inline Region translate(const Region& region, const IntSize& offset)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 219 IntSize clampedSize = clampedAbsoluteSize(paintRect.size());
238 IntSize imageSize(roundedIntSize(clampedAbsoluteTargetRect.size()));
239 IntSize unclampedImageSize(roundedIntSize(absoluteTargetRect.size()));
302 IntSize SVGRenderingContext::clampedAbsoluteSize(const IntSize& absoluteSize)
304 const IntSize maxImageBufferSize(kMaxImageBufferSize, kMaxImageBufferSize);
325 IntSize expandedBoundingBox = expandedIntSize(boundingBox.size());
326 IntSize bufferSize(static_cast<int>(ceil(expandedBoundingBox.width() * transform.xScale())), static_cast<int>(ceil(expandedBoundingBox.height() * transform.yScale())));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCrossfadeValue.cpp 109 IntSize CSSCrossfadeValue::fixedSize(const RenderObject* renderer)
119 return IntSize();
121 IntSize fromImageSize = cachedFromImage->imageForRenderer(renderer)->size();
122 IntSize toImageSize = cachedToImage->imageForRenderer(renderer)->size();
129 return IntSize(fromImageSize.width() * inversePercentage + toImageSize.width() * percentage,
168 PassRefPtr<Image> CSSCrossfadeValue::image(RenderObject* renderer, const IntSize& size)
CSSGradientValue.h 66 PassRefPtr<Image> image(RenderObject*, const IntSize&);
87 IntSize fixedSize(const RenderObject*) const { return IntSize(); }
120 FloatPoint computeEndPoint(CSSPrimitiveValue*, CSSPrimitiveValue*, RenderStyle*, RenderStyle* rootStyle, const IntSize&);
152 PassRefPtr<Gradient> createGradient(RenderObject*, const IntSize&);
200 PassRefPtr<Gradient> createGradient(RenderObject*, const IntSize&);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TransparencyWinTest.cpp 105 OwnPtr<ImageBuffer> src(ImageBuffer::create(IntSize(17, 16), 1));
116 EXPECT_TRUE(IntSize(14, 12) == helper.m_layerSize);
136 EXPECT_TRUE(IntSize(12, 3) == helper.m_layerSize);
144 OwnPtr<ImageBuffer> src(ImageBuffer::create(IntSize(16, 16), 1));
156 EXPECT_TRUE(IntSize(14, 12) == helper.m_layerSize);
170 EXPECT_TRUE(IntSize(14, 12) == helper.m_layerSize);
188 EXPECT_TRUE(IntSize(12, 3) == helper.m_layerSize);
196 OwnPtr<ImageBuffer> src(ImageBuffer::create(IntSize(16, 16), 1));
208 EXPECT_TRUE(IntSize(14, 12) == helper.m_layerSize);
215 OwnPtr<ImageBuffer> src(ImageBuffer::create(IntSize(16, 16), 1))
    [all...]
PopupContainerTest.cpp 53 MockPopupContent(const IntSize& widgetSize)
75 static IntRect calculatePositionWithTransformAndRTL(const IntRect& initialRect, const IntSize& transformOffset, int verticalOffset, PopupContent* content)
92 return PopupContainer::layoutAndCalculateWidgetRectInternal(initialRect, targetControlHeight, windowRect, screenRect, !isRTL, rtlOffset, 0, IntSize(), content, needToResizeView);
181 IntSize transformOffset(-4, -8);
191 IntSize transformOffset(4, -8);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBuffer.cpp 81 PassRefPtr<DrawingBuffer> DrawingBuffer::create(GraphicsContext3D* context, const IntSize& size, PreserveDrawingBuffer preserve, PassRefPtr<ContextEvictionManager> contextEvictionManager)
101 const IntSize& size,
263 void DrawingBuffer::initialize(const IntSize& size)
387 setSize(IntSize());
409 unsigned DrawingBuffer::createColorTexture(const IntSize& size)
439 bool DrawingBuffer::resizeFramebuffer(const IntSize& size)
461 bool DrawingBuffer::resizeMultisampleFramebuffer(const IntSize& size)
486 void DrawingBuffer::resizeDepthStencil(const IntSize& size, int sampleCount)
569 void DrawingBuffer::setSize(const IntSize& size) {
577 int DrawingBuffer::pixelDelta(const IntSize& size)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h 129 IntSize savedLayerScrollOffset() const { return m_savedLayerScrollOffset; }
130 void setSavedLayerScrollOffset(IntSize size) { m_savedLayerScrollOffset = size; }
174 IntSize m_savedLayerScrollOffset;
192 inline IntSize defaultMinimumSizeForResizing()
194 return IntSize(LayoutUnit::max(), LayoutUnit::max());
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.h 58 virtual void applyCSSProperties(const IntSize& videoSize);
144 PassRefPtr<TextTrackCueBox> getDisplayTree(const IntSize& videoSize);
177 virtual void videoSizeDidChange(const IntSize&) { }
TextTrackCueGeneric.cpp 44 virtual void applyCSSProperties(const IntSize&) OVERRIDE;
55 void TextTrackCueGenericBoxElement::applyCSSProperties(const IntSize& videoSize)
131 void TextTrackCueGeneric::videoSizeDidChange(const IntSize& videoSize)
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderClient.h 69 class IntSize;
167 virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManually) = 0;
169 virtual PassRefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL& baseURL, const Vector<String>& paramNames, const Vector<String>& paramValues) = 0;

Completed in 577 milliseconds

1 2 3 45 6 7 8 91011>>