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

  /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/html/canvas/
WebGLUniformLocation.h 46 long location() const { return m_location; }
53 long m_location; member in class:WebCore::WebGLUniformLocation
WebGLUniformLocation.cpp 42 , m_location(location)
  /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...]
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);
101 m_location.setX((int)(x() * s));
102 m_location.setY((int)(y() * s));
FloatRect.cpp 40 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
78 m_location.setX(l);
79 m_location.setY(t);
99 m_location.setX(l);
100 m_location.setY(t);
107 m_location.setX(x() * sx);
108 m_location.setY(y() * sy);
  /external/webkit/WebCore/platform/graphics/mac/
FloatRectMac.mm 34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
  /external/webkit/WebCore/platform/graphics/cg/
FloatRectCG.cpp 36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
  /external/webkit/WebCore/platform/graphics/gtk/
IntRectGtk.cpp 28 : m_location(IntPoint(r.x, r.y))
  /external/webkit/WebCore/platform/graphics/haiku/
FloatRectHaiku.cpp 38 : m_location(rect.LeftTop())
IntRectHaiku.cpp 37 : m_location(rect.LeftTop())
  /external/webkit/WebCore/platform/graphics/qt/
FloatRectQt.cpp 36 : m_location(r.topLeft())
IntRectQt.cpp 36 : m_location(r.topLeft())
  /external/webkit/WebCore/platform/graphics/skia/
FloatRectSkia.cpp 39 : m_location(r.fLeft, r.fTop)
IntRectSkia.cpp 52 : m_location(r.fLeft, r.fTop)
  /external/webkit/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/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/WebCore/workers/
WorkerContext.h 121 WorkerLocation* optionalLocation() const { return m_location.get(); }
146 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerContext
WorkerContext.cpp 113 if (!m_location)
114 m_location = WorkerLocation::create(m_url);
115 return m_location.get();
  /external/webkit/WebKit/android/nav/
FindCanvas.h 49 const SkRegion& getLocation() const { return m_location; }
60 SkRegion m_location; member in class:android::MatchInfo
FindCanvas.cpp 55 m_location = src.m_location;
63 m_location = region;
  /external/webkit/WebCore/page/
DOMWindow.cpp 440 if (m_location)
441 m_location->disconnectFrame();
442 m_location = 0;
562 if (!m_location)
563 m_location = Location::create(m_frame);
564 return m_location.get();
    [all...]
DOMWindow.h 352 Location* optionalLocation() const { return m_location.get(); }
389 mutable RefPtr<Location> m_location; member in class:WebCore::DOMWindow

Completed in 374 milliseconds