/external/webkit/WebCore/platform/graphics/ |
D | IntRect.h | 74 : m_location(location), m_size(size) { } in IntRect() 76 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { } in IntRect() 80 IntPoint location() const { return m_location; } in location() 83 void setLocation(const IntPoint& location) { m_location = location; } in setLocation() 86 int x() const { return m_location.x(); } in x() 87 int y() const { return m_location.y(); } in y() 91 void setX(int x) { m_location.setX(x); } in setX() 92 void setY(int y) { m_location.setY(y); } in setY() 98 IntPoint topLeft() const { return m_location; } in topLeft() 108 void move(const IntSize& s) { m_location += s; } in move() [all …]
|
D | FloatRect.h | 66 : m_location(location), m_size(size) { } in FloatRect() 68 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { } in FloatRect() 73 FloatPoint location() const { return m_location; } in location() 76 void setLocation(const FloatPoint& location) { m_location = location; } in setLocation() 79 float x() const { return m_location.x(); } in x() 80 float y() const { return m_location.y(); } in y() 84 void setX(float x) { m_location.setX(x); } in setX() 85 void setY(float y) { m_location.setY(y); } in setY() 94 void move(const FloatSize& delta) { m_location += delta; } in move() 95 void move(float dx, float dy) { m_location.move(dx, dy); } in move() [all …]
|
D | IntRect.cpp | 38 : m_location(IntPoint(static_cast<int>(r.x()), static_cast<int>(r.y()))) in IntRect() 72 m_location.setX(l); in intersect() 73 m_location.setY(t); in intersect() 93 m_location.setX(l); in unite() 94 m_location.setY(t); in unite() 101 m_location.setX((int)(x() * s)); in scale() 102 m_location.setY((int)(y() * s)); in scale()
|
D | FloatRect.cpp | 40 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size()) in FloatRect() 78 m_location.setX(l); in intersect() 79 m_location.setY(t); in intersect() 99 m_location.setX(l); in unite() 100 m_location.setY(t); in unite() 107 m_location.setX(x() * s); in scale() 108 m_location.setY(y() * s); in scale()
|
/external/webkit/JavaScriptCore/bytecompiler/ |
D | Label.h | 44 , m_location(invalidLocation) in Label() 51 m_location = location; in setLocation() 56 m_codeBlock->instructions()[j].u.operand = m_location - j; in setLocation() 62 if (m_location == invalidLocation) { in offsetFrom() 66 return m_location - location; in offsetFrom() 77 bool isForward() const { return m_location == invalidLocation; } in isForward() 85 unsigned m_location; variable
|
/external/webkit/WebCore/dom/ |
D | WorkerContext.h | 64 WorkerLocation* location() const { return m_location.get(); } in location() 110 RefPtr<WorkerLocation> m_location; variable
|
D | WorkerContext.cpp | 52 , m_location(WorkerLocation::create(url)) in WorkerContext() 88 return KURL(m_location->url(), url); in completeURL()
|
/external/webkit/WebKit/android/nav/ |
D | FindCanvas.h | 48 const SkRegion& getLocation() const { return m_location; } in getLocation() 57 SkRegion m_location; variable
|
D | FindCanvas.cpp | 43 m_location = src.m_location; in MatchInfo() 50 m_location = region; in set()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | FloatRectQt.cpp | 36 : m_location(r.topLeft()) in FloatRect()
|
D | IntRectQt.cpp | 36 : m_location(r.topLeft()) in IntRect()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | FloatRectCG.cpp | 36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size) in FloatRect()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | IntRectWx.cpp | 35 : m_location(IntPoint(r.x, r.y)) in IntRect()
|
D | FloatRectWx.cpp | 36 : m_location(FloatPoint(r.m_x, r.m_y)) in FloatRect()
|
/external/webkit/WebCore/platform/graphics/skia/ |
D | FloatRectSkia.cpp | 39 : m_location(r.fLeft, r.fTop) in FloatRect()
|
D | IntRectSkia.cpp | 52 : m_location(r.fLeft, r.fTop) in IntRect()
|
/external/webkit/WebCore/platform/graphics/gtk/ |
D | IntRectGtk.cpp | 28 : m_location(IntPoint(r.x, r.y)) in IntRect()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | IntRectWin.cpp | 33 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top)) in IntRect()
|
/external/webkit/WebCore/platform/symbian/ |
D | FloatRectSymbian.cpp | 45 : m_location(IntPoint(r.iTl.iX, r.iTl.iY)) in FloatRect()
|
D | IntRectSymbian.cpp | 43 : m_location(IntPoint(r.iTl.iX, r.iTl.iY)) in IntRect()
|
/external/webkit/WebCore/page/ |
D | DOMWindow.cpp | 208 if (m_location) in clear() 209 m_location->disconnectFrame(); in clear() 210 m_location = 0; in clear() 310 if (!m_location) in location() 311 m_location = Location::create(m_frame); in location() 312 return m_location.get(); in location()
|
D | DOMWindow.h | 278 Location* optionalLocation() const { return m_location.get(); } in optionalLocation() 308 mutable RefPtr<Location> m_location; variable
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | FloatRectMac.mm | 34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
|