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

  /external/webkit/WebCore/html/canvas/
WebGLUniformLocation.h 46 long location() const { return m_location; }
53 long m_location; member in class:WebCore::WebGLUniformLocation
  /external/webkit/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/WebCore/platform/graphics/
FloatRect.h 74 : m_location(location), m_size(size) { }
76 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
81 FloatPoint location() const { return m_location; }
84 void setLocation(const FloatPoint& location) { m_location = location; }
87 float x() const { return m_location.x(); }
88 float y() const { return m_location.y(); }
92 void setX(float x) { m_location.setX(x); }
93 void setY(float y) { m_location.setY(y); }
102 void move(const FloatSize& delta) { m_location += delta; }
103 void move(float dx, float dy) { m_location.move(dx, dy); }
166 FloatPoint m_location; member in class:WebCore::FloatRect
    [all...]
IntRect.h 74 : m_location(location), m_size(size) { }
76 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
80 IntPoint location() const { return m_location; }
83 void setLocation(const IntPoint& location) { m_location = location; }
86 int x() const { return m_location.x(); }
87 int y() const { return m_location.y(); }
91 void setX(int x) { m_location.setX(x); }
92 void setY(int y) { m_location.setY(y); }
98 IntPoint topLeft() const { return m_location; }
108 void move(const IntSize& s) { m_location += s; }
171 IntPoint m_location; member in class:WebCore::IntRect
    [all...]
  /external/webkit/WebCore/workers/
WorkerContext.h 121 WorkerLocation* optionalLocation() const { return m_location.get(); }
146 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerContext
  /external/webkit/WebCore/page/
DOMWindow.h 352 Location* optionalLocation() const { return m_location.get(); }
389 mutable RefPtr<Location> m_location; member in class:WebCore::DOMWindow
  /external/webkit/WebKit/android/nav/
FindCanvas.h 49 const SkRegion& getLocation() const { return m_location; }
60 SkRegion m_location; member in class:android::MatchInfo

Completed in 750 milliseconds