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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutRect.h 47 : 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.x();
172 LayoutPoint m_location; member in class:WebCore::LayoutRect
    [all...]
FloatRect.h 59 : 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.move(delta.x(), delta.y());
175 FloatPoint m_location; member in class:WebCore::FloatRect
    [all...]
IntRect.h 56 : 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.move(offset.x(), offset.y());
166 IntPoint m_location; member in class:WebCore::IntRect
    [all...]
IntRect.cpp 41 : m_location(clampToInteger(r.x()), clampToInteger(r.y()))
47 : m_location(r.x(), r.y())
81 m_location.setX(l);
82 m_location.setY(t);
102 m_location.setX(l);
103 m_location.setY(t);
123 m_location.setX(left);
124 m_location.setY(top);
131 m_location.setX((int)(x() * s));
132 m_location.setY((int)(y() * s))
    [all...]
LayoutRect.cpp 44 : m_location(LayoutPoint(r.location()))
74 m_location = newLocation;
91 m_location = newLocation;
108 m_location = newLocation;
114 m_location.scale(s, s);
FloatRect.cpp 44 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
48 FloatRect::FloatRect(const LayoutRect& r) : m_location(r.location()), m_size(r.size())
52 FloatRect::FloatRect(const SkRect& r) : m_location(r.fLeft, r.fTop), m_size(r.width(), r.height())
155 m_location.setX(x() * sx);
156 m_location.setY(y() * sy);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.cpp 40 , m_location(location)
61 return m_location;
WebGLUniformLocation.h 52 GC3Dint m_location; member in class:WebCore::WebGLUniformLocation
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FloatRectMac.mm 34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cg/
FloatRectCG.cpp 34 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.h 56 int x() const { return m_location.x(); }
57 int y() const { return m_location.y(); }
58 IntPoint location() const { return m_location; }
79 : m_location(location)
89 IntPoint m_location; member in class:WebCore::ShadowData
ShadowData.cpp 32 : m_location(o.m_location)
47 return m_location == o.m_location
  /external/chromium_org/third_party/WebKit/Source/core/dom/
KeyboardEvent.cpp 100 : m_location(DOM_KEY_LOCATION_STANDARD)
111 , m_location(keyLocationCode(key))
120 , m_location(initializer.location)
131 , m_location(location)
151 m_location = location;
KeyboardEvent.h 89 unsigned location() const { return m_location; }
114 unsigned m_location; member in class:WebCore::KeyboardEvent
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FilterOperation.h 322 int x() const { return m_location.x(); }
323 int y() const { return m_location.y(); }
324 IntPoint location() const { return m_location; }
340 return m_location == other->m_location && m_stdDeviation == other->m_stdDeviation && m_color == other->m_color;
345 , m_location(location)
351 IntPoint m_location; // FIXME: should location be in Lengths? member in class:WebCore::DropShadowFilterOperation
FilterOperation.cpp 135 WebCore::blend(m_location, IntPoint(), progress),
146 WebCore::blend(fromLocation, m_location, progress),
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.h 105 WorkerLocation* optionalLocation() const { return m_location.get(); }
161 mutable RefPtr<WorkerLocation> m_location; member in class:WebCore::WorkerGlobalScope
WorkerGlobalScope.cpp 155 if (!m_location)
156 m_location = WorkerLocation::create(m_url);
157 return m_location.get();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
execution_monitor.hpp 130 location const& where() const { return m_location; }
136 location m_location; member in class:boost::execution_exception
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
FlyoutControlComposite.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindow.cpp 386 ASSERT(!m_location);
491 m_location = 0;
632 if (!m_location)
633 m_location = Location::create(m_frame);
634 return m_location.get();
    [all...]
DOMWindow.h 407 mutable RefPtr<Location> m_location; member in class:WebCore::DOMWindow
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp 768 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::__anon12723::HitTestCulledInlinesGeneratorContext
    [all...]

Completed in 2013 milliseconds