Searched refs:m_location (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DLabel.h44 , m_location(invalidLocation)
51 m_location = location;
55 m_codeBlock->instructions()[m_unresolvedJumps[i].second].u.operand = m_location - m_unresolvedJumps[i].first;
60 if (m_location == invalidLocation) {
64 return m_location - opcode;
75 bool isForward() const { return m_location == invalidLocation; }
83 unsigned m_location; member in class:JSC::Label
/external/webkit/Source/WebCore/platform/graphics/
H A DIntRect.h80 : m_location(location), m_size(size) { }
82 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
86 IntPoint location() const { return m_location; }
89 void setLocation(const IntPoint& location) { m_location = location; }
92 int x() const { return m_location.x(); }
93 int y() const { return m_location.y(); }
99 void setX(int x) { m_location.setX(x); }
100 void setY(int y) { m_location.setY(y); }
110 void move(const IntSize& s) { m_location += s; }
111 void move(int dx, int dy) { m_location
207 IntPoint m_location; member in class:WebCore::IntRect
[all...]
H A DFloatRect.h78 : m_location(location), m_size(size) { }
80 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
85 FloatPoint location() const { return m_location; }
88 void setLocation(const FloatPoint& location) { m_location = location; }
91 float x() const { return m_location.x(); }
92 float y() const { return m_location.y(); }
98 void setX(float x) { m_location.setX(x); }
99 void setY(float y) { m_location.setY(y); }
107 void move(const FloatSize& delta) { m_location += delta; }
108 void move(float dx, float dy) { m_location
182 FloatPoint m_location; member in class:WebCore::FloatRect
[all...]
H A DIntRect.cpp38 : m_location(IntPoint(static_cast<int>(r.x()), static_cast<int>(r.y())))
72 m_location.setX(l);
73 m_location.setY(t);
93 m_location.setX(l);
94 m_location.setY(t);
114 m_location.setX(left);
115 m_location.setY(top);
122 m_location.setX((int)(x() * s));
123 m_location.setY((int)(y() * s));
H A DFloatRect.cpp41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
120 m_location.setX(x() * sx);
121 m_location.setY(y() * sy);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DGeolocationClientQt.cpp49 , m_location(0)
55 delete m_location;
98 if (!m_location && (m_location = QGeoPositionInfoSource::createDefaultSource(this)))
99 connect(m_location, SIGNAL(positionUpdated(QGeoPositionInfo)), this, SLOT(positionUpdated(QGeoPositionInfo)));
101 if (!m_location) {
108 m_location->startUpdates();
113 if (m_location)
114 m_location->stopUpdates();
H A DGeolocationClientQt.h68 QtMobility::QGeoPositionInfoSource* m_location; member in class:WebCore::GeolocationClientQt
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLUniformLocation.cpp42 , m_location(location)
62 return m_location;
H A DWebGLUniformLocation.h53 GC3Dint m_location; member in class:WebCore::WebGLUniformLocation
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFloatRectMac.mm34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFloatRectCairo.cpp34 : m_location(r.x, r.y)
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DFloatRectCG.cpp36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIntRectEfl.cpp29 : m_location(IntPoint(r.x, r.y))
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DIntRectGtk.cpp28 : m_location(IntPoint(r.x, r.y))
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatRectHaiku.cpp38 : m_location(rect.LeftTop())
H A DIntRectHaiku.cpp37 : m_location(rect.LeftTop())
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntRectQt.cpp36 : m_location(r.topLeft())
H A DFloatRectQt.cpp36 : m_location(r.topLeft())
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFloatRectSkia.cpp39 : m_location(r.fLeft, r.fTop)
H A DIntRectSkia.cpp52 : m_location(r.fLeft, r.fTop)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntRectWin.cpp35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFloatRectWx.cpp36 : m_location(FloatPoint(r.m_x, r.m_y))
H A DIntRectWx.cpp35 : m_location(IntPoint(r.x, r.y))
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.h147 WorkerLocation* optionalLocation() const { return m_location.get(); }
191 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerContext
H A DWorkerContext.cpp164 if (!m_location)
165 m_location = WorkerLocation::create(m_url);
166 return m_location.get();

Completed in 277 milliseconds

12