HomeSort by relevance Sort by last modified time
    Searched refs:IntSize (Results 1 - 25 of 396) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/android/
ImageBufferData.h 31 class IntSize;
35 ImageBufferData(const IntSize&);
  /external/webkit/WebCore/platform/graphics/cg/
ImageBufferData.h 31 class IntSize;
35 ImageBufferData(const IntSize&);
IntSizeCG.cpp 27 #include "IntSize.h"
35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 IntSize::operator CGSize() const
  /external/webkit/WebCore/platform/graphics/haiku/
ImageBufferData.h 33 class IntSize;
37 ImageBufferData(const IntSize&);
IntSizeHaiku.cpp 29 #include "IntSize.h"
36 IntSize::IntSize(const BSize& size)
42 IntSize::operator BSize() const
  /external/webkit/WebCore/platform/graphics/wx/
ImageBufferData.h 34 class IntSize;
38 ImageBufferData(const IntSize&);
IntSizeWx.cpp 27 #include "IntSize.h"
34 IntSize::IntSize(const wxSize& s)
40 IntSize::operator wxSize() const
  /external/webkit/WebCore/platform/graphics/
IntSizeHash.h 23 #include "IntSize.h"
27 using WebCore::IntSize;
31 template<> struct IntHash<IntSize> {
32 static unsigned hash(const IntSize& key) { return intHash((static_cast<uint64_t>(key.width()) << 32 | key.height())); }
33 static bool equal(const IntSize& a, const IntSize& b) { return a == b; }
36 template<> struct DefaultHash<IntSize> { typedef IntHash<IntSize> Hash; };
38 template<> struct HashTraits<IntSize> : GenericHashTraits<IntSize> {
    [all...]
IntSize.h 64 class IntSize {
66 IntSize() : m_width(0), m_height(0) { }
67 IntSize(int width, int height) : m_width(width), m_height(height) { }
90 IntSize expandedTo(const IntSize& other) const
92 return IntSize(m_width > other.m_width ? m_width : other.m_width,
96 IntSize shrunkTo(const IntSize& other) const
98 return IntSize(m_width < other.m_width ? m_width : other.m_width,
104 *this = expandedTo(IntSize());
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
ImageBufferData.h 33 class IntSize;
37 ImageBufferData(const IntSize&);
  /external/webkit/WebCore/platform/graphics/qt/
IntSizeQt.cpp 32 #include "IntSize.h"
36 IntSize::IntSize(const QSize& r)
42 IntSize::operator QSize() const
ImageBufferData.h 36 class IntSize;
40 ImageBufferData(const IntSize&);
  /external/webkit/WebCore/platform/graphics/win/
IntSizeWin.cpp 27 #include "IntSize.h"
33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferData.h 25 class IntSize;
28 ImageBufferData(const IntSize& size);
  /external/webkit/WebCore/platform/win/
BitmapInfo.h 31 #include "IntSize.h"
37 static BitmapInfo create(const IntSize&);
38 static BitmapInfo createBottomUp(const IntSize&);
  /external/webkit/WebCore/css/
CSSImageGeneratorValue.h 45 void addClient(RenderObject*, const IntSize&);
47 virtual Image* image(RenderObject*, const IntSize&) = 0;
52 virtual IntSize fixedSize(const RenderObject*) { return IntSize(); }
57 Image* getImage(RenderObject*, const IntSize&);
58 void putImage(const IntSize&, PassRefPtr<Image>);
60 typedef pair<IntSize, int> SizeCountPair;
63 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use.
65 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by image size.
  /external/webkit/WebCore/platform/graphics/mac/
IntSizeMac.mm 27 #include "IntSize.h"
33 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
37 IntSize::operator NSSize() const
  /external/webkit/WebCore/platform/image-encoders/skia/
PNGImageEncoder.h 36 class IntSize;
50 static bool encode(const unsigned char* input, const IntSize& size, int bytesPerRow, WTF::Vector<unsigned char>* output);
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 27 #include "IntSize.h"
33 IntSize::IntSize(const AEESize& size)
39 IntSize::operator AEESize() const
  /external/webkit/WebCore/rendering/style/
StyleGeneratedImage.cpp 37 IntSize StyleGeneratedImage::imageSize(const RenderObject* renderer, float multiplier) const
40 IntSize fixedSize = m_generator->fixedSize(renderer);
54 return IntSize(width, height);
60 void StyleGeneratedImage::setImageContainerSize(const IntSize& size)
67 m_generator->addClient(renderer, IntSize());
75 Image* StyleGeneratedImage::image(RenderObject* renderer, const IntSize& size) const
  /external/webkit/WebCore/dom/
ElementRareData.h 41 IntSize m_minimumSizeForResizing;
46 inline IntSize defaultMinimumSizeForResizing()
48 return IntSize(INT_MAX, INT_MAX);
  /external/webkit/WebCore/platform/graphics/chromium/
ImageBufferData.h 42 ImageBufferData(const IntSize&);
  /external/webkit/WebCore/page/android/
DragControllerAndroid.cpp 55 static IntSize dummy;
56 const IntSize& DragController::maxDragImageSize() { return dummy; }
  /external/webkit/WebCore/page/gtk/
DragControllerGtk.cpp 59 const IntSize& DragController::maxDragImageSize()
61 static const IntSize maxDragImageSize(400, 400);
  /external/webkit/WebCore/page/qt/
DragControllerQt.cpp 60 const IntSize& DragController::maxDragImageSize()
62 static const IntSize maxDragImageSize(400, 400);

Completed in 456 milliseconds

1 2 3 4 5 6 7 8 91011>>