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

1 2

  /external/webkit/Source/JavaScriptCore/bytecompiler/
Label.h 44 , 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/
IntRect.h 80 : 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.move(dx, dy); }
207 IntPoint m_location; member in class:WebCore::IntRect
    [all...]
FloatRect.h 78 : 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.move(dx, dy); }
182 FloatPoint m_location; member in class:WebCore::FloatRect
    [all...]
IntRect.cpp 38 : 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));
FloatRect.cpp 41 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/
GeolocationClientQt.cpp 49 , 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();
GeolocationClientQt.h 68 QtMobility::QGeoPositionInfoSource* m_location; member in class:WebCore::GeolocationClientQt
  /external/webkit/Source/WebCore/html/canvas/
WebGLUniformLocation.cpp 42 , m_location(location)
62 return m_location;
WebGLUniformLocation.h 53 GC3Dint m_location; member in class:WebCore::WebGLUniformLocation
  /external/webkit/Source/WebCore/platform/graphics/mac/
FloatRectMac.mm 34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FloatRectCairo.cpp 34 : m_location(r.x, r.y)
  /external/webkit/Source/WebCore/platform/graphics/cg/
FloatRectCG.cpp 36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
  /external/webkit/Source/WebCore/platform/graphics/efl/
IntRectEfl.cpp 29 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IntRectGtk.cpp 28 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/platform/graphics/haiku/
FloatRectHaiku.cpp 38 : m_location(rect.LeftTop())
IntRectHaiku.cpp 37 : m_location(rect.LeftTop())
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntRectQt.cpp 36 : m_location(r.topLeft())
FloatRectQt.cpp 36 : m_location(r.topLeft())
  /external/webkit/Source/WebCore/platform/graphics/skia/
FloatRectSkia.cpp 39 : m_location(r.fLeft, r.fTop)
IntRectSkia.cpp 52 : m_location(r.fLeft, r.fTop)
  /external/webkit/Source/WebCore/platform/graphics/win/
IntRectWin.cpp 35 : 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/
FloatRectWx.cpp 36 : m_location(FloatPoint(r.m_x, r.m_y))
IntRectWx.cpp 35 : m_location(IntPoint(r.x, r.y))
  /external/webkit/Source/WebCore/workers/
WorkerContext.h 147 WorkerLocation* optionalLocation() const { return m_location.get(); }
191 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerContext
WorkerContext.cpp 164 if (!m_location)
165 m_location = WorkerLocation::create(m_url);
166 return m_location.get();

Completed in 424 milliseconds

1 2