HomeSort by relevance Sort by last modified time
    Searched defs:IntSize (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cg/
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/Source/WebCore/platform/graphics/haiku/
IntSizeHaiku.cpp 29 #include "IntSize.h"
36 IntSize::IntSize(const BSize& size)
42 IntSize::operator BSize() const
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntSizeQt.cpp 32 #include "IntSize.h"
36 IntSize::IntSize(const QSize& r)
42 IntSize::operator QSize() const
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntSizeWx.cpp 27 #include "IntSize.h"
34 IntSize::IntSize(const wxSize& s)
40 IntSize::operator wxSize() const
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 27 #include "IntSize.h"
33 IntSize::IntSize(const AEESize& size)
39 IntSize::operator AEESize() const
  /external/webkit/Source/WebCore/platform/graphics/win/
IntSizeWin.cpp 27 #include "IntSize.h"
33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
  /external/webkit/Source/WebKit/chromium/public/
WebSize.h 37 #include "IntSize.h"
63 WebSize(const WebCore::IntSize& s)
69 WebSize& operator=(const WebCore::IntSize& s)
76 operator WebCore::IntSize() const
78 return WebCore::IntSize(width, height);
  /external/webkit/Source/WebCore/platform/graphics/
IntSize.h 62 class IntSize {
64 IntSize() : m_width(0), m_height(0) { }
65 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/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 463 int IntSize = 0;
470 ++IntSize;
473 --IntSize;
492 if ((hasIntegerTypes() && IntSize == 0)
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 2515 milliseconds