/external/webkit/Source/WebCore/platform/graphics/ |
D | IntRect.h | 80 : m_location(location), m_size(size) { } in IntRect() 82 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { } in IntRect() 86 IntPoint location() const { return m_location; } in location() 89 void setLocation(const IntPoint& location) { m_location = location; } in setLocation() 92 int x() const { return m_location.x(); } in x() 93 int y() const { return m_location.y(); } in y() 99 void setX(int x) { m_location.setX(x); } in setX() 100 void setY(int y) { m_location.setY(y); } in setY() 110 void move(const IntSize& s) { m_location += s; } in move() 111 void move(int dx, int dy) { m_location.move(dx, dy); } in move() [all …]
|
D | FloatRect.h | 78 : m_location(location), m_size(size) { } in FloatRect() 80 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { } in FloatRect() 85 FloatPoint location() const { return m_location; } in location() 88 void setLocation(const FloatPoint& location) { m_location = location; } in setLocation() 91 float x() const { return m_location.x(); } in x() 92 float y() const { return m_location.y(); } in y() 98 void setX(float x) { m_location.setX(x); } in setX() 99 void setY(float y) { m_location.setY(y); } in setY() 107 void move(const FloatSize& delta) { m_location += delta; } in move() 108 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() 114 m_location.setX(left); in uniteIfNonZero() 115 m_location.setY(top); in uniteIfNonZero() 122 m_location.setX((int)(x() * s)); in scale() 123 m_location.setY((int)(y() * s)); in scale()
|
D | FloatRect.cpp | 41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size()) in FloatRect() 120 m_location.setX(x() * sx); in scale() 121 m_location.setY(y() * sy); in scale()
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | Label.h | 44 , m_location(invalidLocation) in Label() 51 m_location = location; in setLocation() 55 …m_codeBlock->instructions()[m_unresolvedJumps[i].second].u.operand = m_location - m_unresolvedJump… in setLocation() 60 if (m_location == invalidLocation) { in bind() 64 return m_location - opcode; in bind() 75 bool isForward() const { return m_location == invalidLocation; } in isForward() 83 unsigned m_location; variable
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | GeolocationClientQt.cpp | 49 , m_location(0) in GeolocationClientQt() 55 delete m_location; in ~GeolocationClientQt() 98 if (!m_location && (m_location = QGeoPositionInfoSource::createDefaultSource(this))) in startUpdating() 99 …connect(m_location, SIGNAL(positionUpdated(QGeoPositionInfo)), this, SLOT(positionUpdated(QGeoPosi… in startUpdating() 101 if (!m_location) { in startUpdating() 108 m_location->startUpdates(); in startUpdating() 113 if (m_location) in stopUpdating() 114 m_location->stopUpdates(); in stopUpdating()
|
D | GeolocationClientQt.h | 68 QtMobility::QGeoPositionInfoSource* m_location; variable
|
/external/webkit/Source/WebCore/html/canvas/ |
D | WebGLUniformLocation.cpp | 42 , m_location(location) in WebGLUniformLocation() 62 return m_location; in location()
|
D | WebGLUniformLocation.h | 53 GC3Dint m_location; variable
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | IntRectQt.cpp | 36 : m_location(r.topLeft()) in IntRect()
|
D | FloatRectQt.cpp | 36 : m_location(r.topLeft()) in FloatRect()
|
/external/webkit/Source/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/Source/WebCore/platform/graphics/haiku/ |
D | IntRectHaiku.cpp | 37 : m_location(rect.LeftTop()) in IntRect()
|
D | FloatRectHaiku.cpp | 38 : m_location(rect.LeftTop()) in FloatRect()
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | FloatRectCairo.cpp | 34 : m_location(r.x, r.y) in FloatRect()
|
/external/webkit/Source/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/Source/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/Source/WebCore/platform/graphics/gtk/ |
D | IntRectGtk.cpp | 28 : m_location(IntPoint(r.x, r.y)) in IntRect()
|
/external/webkit/Source/WebCore/platform/graphics/efl/ |
D | IntRectEfl.cpp | 29 : m_location(IntPoint(r.x, r.y)) in IntRect()
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | IntRectWin.cpp | 35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top)) in IntRect()
|
/external/webkit/Source/WebCore/workers/ |
D | WorkerContext.h | 147 WorkerLocation* optionalLocation() const { return m_location.get(); } in optionalLocation() 191 mutable RefPtr<WorkerLocation> m_location; variable
|
D | WorkerContext.cpp | 164 if (!m_location) in location() 165 m_location = WorkerLocation::create(m_url); in location() 166 return m_location.get(); in location()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
D | FlyoutControlComposite.java | 980 private final int m_location; 989 m_location = location; 999 return getDockLocation() == m_location; 1004 setDockLocation(m_location);
|