Searched refs:m_position (Results 26 - 50 of 70) sorted by relevance

123

/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DEventSendingController.cpp96 , m_position()
120 WKBundlePageSimulateMouseDown(page, button, m_position, m_clickCount, modifiers, m_time);
130 WKBundlePageSimulateMouseUp(page, button, m_position, m_clickCount, modifiers, m_time);
135 m_position.x = x;
136 m_position.y = y;
137 WKBundlePageSimulateMouseMotion(InjectedBundle::shared().page()->page(), m_position, m_time);
147 if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
155 m_clickPosition = m_position;
H A DEventSendingController.h64 WKPoint m_position; member in class:WTR::EventSendingController
/external/webkit/Source/WebCore/platform/
H A DPlatformMouseEvent.h98 : m_position(position)
117 const IntPoint& pos() const { return m_position; }
118 int x() const { return m_position.x(); }
119 int y() const { return m_position.y(); }
181 IntPoint m_position; member in class:WebCore::PlatformMouseEvent
/external/skia/legacy/src/utils/
H A DSkLayer.cpp24 m_position.set(0, 0);
41 m_position = src.m_position;
142 matrix->setTranslate(m_position.fX, m_position.fY);
185 m_position.fX, m_position.fY, str1.c_str(), str2.c_str());
/external/skia/src/utils/
H A DSkLayer.cpp26 m_position.set(0, 0);
43 m_position = src.m_position;
144 matrix->setTranslate(m_position.fX, m_position.fY);
187 m_position.fX, m_position.fY, str1.c_str(), str2.c_str());
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayer.cpp23 m_position.set(0, 0);
43 m_position = src.m_position;
126 matrix->setTranslate(m_position.fX - m_scrollOffset.x(),
127 m_position.fY - m_scrollOffset.y());
177 m_position.fX, m_position.fY, str1.c_str(), str2.c_str());
H A DLayer.h51 const SkPoint& getPosition() const { return m_position; }
63 void setPosition(SkScalar x, SkScalar y) { m_position.set(x, y); }
171 SkPoint m_position; member in class:Layer
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformMouseEventEfl.cpp51 : m_position(IntPoint(event->canvas.x - position.x(), event->canvas.y - position.y()))
65 : m_position(IntPoint(event->canvas.x - position.x(), event->canvas.y - position.y()))
79 : m_position(IntPoint(event->cur.canvas.x - position.x(), event->cur.canvas.y - position.y()))
H A DPlatformWheelEventEfl.cpp46 : m_position(IntPoint(ev->canvas.x, ev->canvas.y))
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformMouseEventQt.cpp55 m_position = IntPoint(event->pos().toPoint());
99 m_position = IntPoint(ce->pos());
110 m_position = IntPoint(me->pos());
H A DWheelEventQt.cpp62 : m_position(e->pos().toPoint())
81 : m_position(e->pos())
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformWheelEventGtk.cpp62 m_position = IntPoint(static_cast<int>(event->x), static_cast<int>(event->y));
H A DPlatformMouseEventGtk.cpp42 m_position = IntPoint((int)event->x, (int)event->y);
81 m_position = IntPoint((int)motion->x, (int)motion->y);
/external/webkit/Source/WebCore/platform/haiku/
H A DPlatformMouseEventHaiku.cpp39 : m_position(message->FindPoint("be:view_where"))
/external/webkit/Source/WebCore/platform/win/
H A DWheelEventWin.cpp87 m_position = point;
91 : m_position(positionForEvent(hWnd, lParam))
/external/webkit/Source/WebKit2/Shared/
H A DWebEvent.h129 const WebCore::IntPoint& position() const { return m_position; }
146 WebCore::IntPoint m_position; member in class:WebKit::WebMouseEvent
183 const WebCore::IntPoint position() const { return m_position; }
200 WebCore::IntPoint m_position; member in class:WebKit::WebWheelEvent
254 const WebCore::IntPoint position() const { return m_position; }
263 WebCore::IntPoint m_position; member in class:WebKit::WebGestureEvent
291 const WebCore::IntPoint& position() const { return m_position; }
302 WebCore::IntPoint m_position; member in class:WebKit::WebPlatformTouchPoint
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.cpp71 double aVal = a.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER);
72 double bVal = b.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER);
125 if (stop.m_position->primitiveType() == CSSPrimitiveValue::CSS_PERCENTAGE)
126 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
128 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_NUMBER);
157 if (stop.m_position) {
158 int type = stop.m_position->primitiveType();
160 stops[i].offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
162 float length = stop.m_position->computeLengthFloat(style, rootStyle, style->effectiveZoom());
414 if (!stop.m_position)
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioPannerNode.cpp61 m_position = FloatPoint3D(0, 0, 0);
169 FloatPoint3D sourceListener = m_position - listenerPosition;
245 FloatPoint3D sourceToListener = m_position - listenerPosition;
277 double listenerDistance = m_position.distanceTo(listenerPosition);
283 double coneGain = m_coneEffect.gain(m_position, m_orientation, listenerPosition);
/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.cpp133 : m_position(0)
306 *byteAt(m_position++) = b;
312 memcpy(byteAt(m_position), data, length);
313 m_position += length;
319 m_buffer.grow((m_position + extra + 1) / 2); // "+ 1" to round up.
327 if (m_position % 2)
328 *byteAt(m_position) = static_cast<uint8_t>(PaddingTag);
334 unsigned m_position; member in class:WebCore::__anon15732::Writer
741 , m_position(0)
746 bool isEof() const { return m_position >
1039 unsigned m_position; member in class:WebCore::__anon15732::Reader
[all...]
H A DV8LazyEventListener.h74 TextPosition0 m_position; member in class:WebCore::V8LazyEventListener
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCLayerImpl.h89 void setPosition(const FloatPoint& position) { m_position = position; }
90 const FloatPoint& position() const { return m_position; }
161 FloatPoint m_position; member in class:WebCore::CCLayerImpl
/external/webkit/Source/JavaScriptCore/wtf/
H A DListHashSet.h306 , m_position(position)
317 return &m_position->m_value;
324 ASSERT(m_position != 0);
325 m_position = m_position->m_next;
333 ASSERT(m_position != m_set->m_head);
334 if (!m_position)
335 m_position = m_set->m_tail;
337 m_position = m_position
357 Node* m_position; member in class:WTF::ListHashSetConstIterator
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DPlatformMouseEventMac.mm146 : m_position(pointForEvent(event, windowView))
164 : m_position(IntPoint(x, y))
/external/webkit/Source/WebCore/platform/wx/
H A DMouseEventWx.cpp37 : m_position(event.GetPosition())
/external/webkit/Source/WebKit/win/
H A DWebGeolocationPosition.cpp87 m_position = GeolocationPosition::create(timestamp, latitude, longitude, accuracy);

Completed in 1797 milliseconds

123