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

  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.h 68 QtMobility::QGeoPositionInfoSource* m_location; member in class:WebCore::GeolocationClientQt
  /external/webkit/Source/WebCore/html/canvas/
WebGLUniformLocation.h 53 GC3Dint m_location; member in class:WebCore::WebGLUniformLocation
  /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/
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.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...]
  /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
  /external/webkit/Source/WebCore/page/
DOMWindow.h 356 Location* optionalLocation() const { return m_location.get(); }
469 mutable RefPtr<Location> m_location; member in class:WebCore::DOMWindow

Completed in 1738 milliseconds