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

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.h40 : m_location(location)
53 int x() const { return m_location.x(); }
54 int y() const { return m_location.y(); }
55 IntPoint location() const { return m_location; }
62 IntPoint m_location; member in class:WebCore::ShadowData
H A DShadowData.cpp31 return m_location == o.m_location
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutRect.h47 : m_location(location), m_size(size) { }
49 : m_location(LayoutPoint(x, y)), m_size(LayoutSize(width, height)) { }
51 : m_location(location), m_size(size) { }
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { }
56 LayoutPoint location() const { return m_location; }
59 IntPoint pixelSnappedLocation() const { return roundedIntPoint(m_location); }
60 IntSize pixelSnappedSize() const { return IntSize(snapSizeToPixel(m_size.width(), m_location.x()), snapSizeToPixel(m_size.height(), m_location.y())); }
62 void setLocation(const LayoutPoint& location) { m_location = location; }
65 LayoutUnit x() const { return m_location
173 LayoutPoint m_location; member in class:WebCore::LayoutRect
[all...]
H A DFloatRect.h59 : m_location(location), m_size(size) { }
61 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
68 FloatPoint location() const { return m_location; }
71 void setLocation(const FloatPoint& location) { m_location = location; }
74 float x() const { return m_location.x(); }
75 float y() const { return m_location.y(); }
81 void setX(float x) { m_location.setX(x); }
82 void setY(float y) { m_location.setY(y); }
92 void move(const FloatSize& delta) { m_location += delta; }
93 void moveBy(const FloatPoint& delta) { m_location
179 FloatPoint m_location; member in class:WebCore::FloatRect
[all...]
H A DIntRect.h56 : m_location(location), m_size(size) { }
58 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
63 IntPoint location() const { return m_location; }
66 void setLocation(const IntPoint& location) { m_location = location; }
69 int x() const { return m_location.x(); }
70 int y() const { return m_location.y(); }
76 void setX(int x) { m_location.setX(x); }
77 void setY(int y) { m_location.setY(y); }
87 void move(const IntSize& size) { m_location += size; }
88 void moveBy(const IntPoint& offset) { m_location
166 IntPoint m_location; member in class:WebCore::IntRect
[all...]
H A DIntRect.cpp38 : m_location(clampToInteger(r.x()), clampToInteger(r.y()))
44 : m_location(r.x(), r.y())
78 m_location.setX(left);
79 m_location.setY(top);
99 m_location.setX(left);
100 m_location.setY(top);
120 m_location.setX(left);
121 m_location.setY(top);
128 m_location.setX((int)(x() * s));
129 m_location
[all...]
H A DLayoutRect.cpp41 : m_location(LayoutPoint(r.location()))
71 m_location = newLocation;
88 m_location = newLocation;
105 m_location = newLocation;
111 m_location.scale(s, s);
117 m_location.scale(xAxisScale, yAxisScale);
H A DFloatRect.cpp41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
45 FloatRect::FloatRect(const LayoutRect& r) : m_location(r.location()), m_size(r.size())
49 FloatRect::FloatRect(const SkRect& r) : m_location(r.fLeft, r.fTop), m_size(r.width(), r.height())
152 m_location.setX(x() * sx);
153 m_location.setY(y() * sy);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLUniformLocation.cpp40 , m_location(location)
61 return m_location;
H A DWebGLUniformLocation.h50 GC3Dint m_location; member in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
H A DFloatRectMac.mm34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatRectCG.cpp34 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DKeyboardEvent.cpp100 : m_location(DOM_KEY_LOCATION_STANDARD)
112 , m_location(keyLocationCode(key))
122 , m_location(initializer.location)
134 , m_location(location)
155 m_location = location;
H A DKeyboardEvent.h87 unsigned location() const { return m_location; }
113 unsigned m_location; member in class:WebCore::KeyboardEvent
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperation.h281 int x() const { return m_location.x(); }
282 int y() const { return m_location.y(); }
283 IntPoint location() const { return m_location; }
298 return m_location == other->m_location && m_stdDeviation == other->m_stdDeviation && m_color == other->m_color;
303 , m_location(location)
309 IntPoint m_location; // FIXME: should location be in Lengths? member in class:WebCore::DropShadowFilterOperation
H A DFilterOperation.cpp133 WebCore::blend(IntPoint(), m_location, progress),
140 WebCore::blend(fromOp->location(), m_location, progress),
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScope.h114 WorkerLocation* optionalLocation() const { return m_location.get(); }
167 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerGlobalScope
H A DWorkerGlobalScope.cpp157 if (!m_location)
158 m_location = WorkerLocation::create(m_url);
159 return m_location.get();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DFlyoutControlComposite.java992 private final int m_location; field in class:FlyoutControlComposite.DockAction
1001 m_location = location;
1011 return getDockLocation() == m_location;
1016 setDockLocation(m_location);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMWindow.h360 mutable RefPtr<Location> m_location; member in class:WebCore::DOMWindow
H A DDOMWindow.cpp499 ASSERT(!m_location);
600 m_location = 0;
747 if (!m_location)
748 m_location = Location::create(m_frame);
749 return m_location.get();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp768 HitTestCulledInlinesGeneratorContext(Region& region, const HitTestLocation& location) : m_intersected(false), m_region(region), m_location(location) { }
771 m_intersected = m_intersected || m_location.intersects(rect);
778 const HitTestLocation& m_location; member in class:WebCore::__anon11026::HitTestCulledInlinesGeneratorContext

Completed in 232 milliseconds