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

1 2

  /external/webkit/WebCore/svg/graphics/filters/
SVGPointLightSource.h 39 const FloatPoint3D& position() const { return m_position; }
46 , m_position(position)
50 FloatPoint3D m_position; member in class:WebCore::PointLightSource
SVGSpotLightSource.h 40 const FloatPoint3D& position() const { return m_position; }
52 , m_position(position)
59 FloatPoint3D m_position; member in class:WebCore::SpotLightSource
  /external/webkit/WebKit/win/
WebGeolocationPosition.h 52 WebCore::GeolocationPosition* impl() const { return m_position.get(); }
58 RefPtr<WebCore::GeolocationPosition> m_position; member in class:WebGeolocationPosition
  /external/webkit/WebCore/editing/
MoveSelectionCommand.cpp 35 : CompositeEditCommand(position.node()->document()), m_fragment(fragment), m_position(position), m_smartMove(smartMove)
45 Position pos = m_position;
50 Node *positionNode = m_position.node();
51 int positionOffset = m_position.deprecatedEditingOffset();
MoveSelectionCommand.h 49 Position m_position; member in class:WebCore::MoveSelectionCommand
  /external/webkit/WebCore/platform/
PlatformWheelEvent.h 85 const IntPoint& pos() const { return m_position; } // PlatformWindow coordinates.
102 int x() const { return m_position.x(); } // PlatformWindow coordinates.
103 int y() const { return m_position.y(); }
147 IntPoint m_position; member in class:WebCore::PlatformWheelEvent
PlatformMouseEvent.h 87 : m_position(position)
101 const IntPoint& pos() const { return m_position; }
102 int x() const { return m_position.x(); }
103 int y() const { return m_position.y(); }
157 IntPoint m_position; member in class:WebCore::PlatformMouseEvent
  /external/webkit/WebCore/platform/haiku/
PlatformWheelEventHaiku.cpp 48 m_position = IntPoint(message->FindPoint("position"));
PlatformMouseEventHaiku.cpp 40 , m_position(IntPoint(message->FindPoint("where")))
  /external/skia/include/utils/
SkLayer.h 40 const SkPoint& getPosition() const { return m_position; }
51 void setPosition(SkScalar x, SkScalar y) { m_position.set(x, y); }
124 SkPoint m_position; member in class:SkLayer
  /external/webkit/WebCore/platform/wx/
MouseWheelEventWx.cpp 36 : m_position(event.GetPosition())
MouseEventWx.cpp 37 : m_position(event.GetPosition())
  /external/webkit/WebCore/platform/brew/
PlatformMouseEventBrew.cpp 58 m_position = IntPoint(x, y);
60 m_globalPosition = m_position;
  /external/webkit/WebCore/platform/mac/
WheelEventMac.mm 36 : m_position(pointForEvent(event, windowView))
PlatformMouseEventMac.mm 146 : m_position(pointForEvent(event, windowView))
164 : m_position(IntPoint(x, y))
  /external/webkit/WebCore/platform/qt/
WheelEventQt.cpp 60 : m_position(e->pos().toPoint())
79 : m_position(e->pos())
PlatformMouseEventQt.cpp 55 m_position = IntPoint(event->pos().toPoint());
98 m_position = IntPoint(ce->pos());
109 m_position = IntPoint(me->pos());
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 121 Writer() : m_position(0)
191 *charAt(m_position++) = b;
197 memcpy(charAt(m_position), data, length);
198 m_position += length;
204 m_buffer.grow((m_position + extra + 1) / 2); // "+ 1" to round up.
212 if (m_position % 2)
213 *charAt(m_position) = static_cast<char>(PaddingTag);
219 unsigned m_position; member in class:WebCore::__anon7986::Writer
474 , m_position(0)
479 bool isEof() const { return m_position >= m_length;
584 unsigned m_position; member in class:WebCore::__anon7986::Reader
    [all...]
  /external/skia/src/utils/
SkLayer.cpp 17 m_position.set(0, 0);
34 m_position = src.m_position;
135 matrix->setTranslate(m_position.fX, m_position.fY);
178 m_position.fX, m_position.fY, str1.c_str(), str2.c_str());
  /external/webkit/JavaScriptCore/wtf/
ListHashSet.h 289 , m_position(position)
300 return &m_position->m_value;
307 ASSERT(m_position != 0);
308 m_position = m_position->m_next;
316 ASSERT(m_position != m_set->m_head);
317 if (!m_position)
318 m_position = m_set->m_tail;
320 m_position = m_position->m_prev
340 Node* m_position; member in class:WTF::ListHashSetConstIterator
    [all...]
  /external/webkit/WebCore/platform/gtk/
WheelEventGtk.cpp 62 m_position = IntPoint(static_cast<int>(event->x), static_cast<int>(event->y));
MouseEventGtk.cpp 42 m_position = IntPoint((int)event->x, (int)event->y);
81 m_position = IntPoint((int)motion->x, (int)motion->y);
  /external/webkit/WebCore/platform/graphics/android/
AndroidAnimation.h 92 void setOriginalPosition(FloatPoint position) { m_position = position; }
105 FloatPoint m_position; member in class:WebCore::AndroidTransformAnimation
  /external/webkit/WebCore/platform/win/
WheelEventWin.cpp 87 m_position = point;
91 : m_position(positionForEvent(hWnd, lParam))
  /external/webkit/WebCore/rendering/
SVGCharacterLayoutInfo.h 50 : m_position(0)
56 return m_position;
61 m_position += position;
62 ASSERT(m_position < Vector<Type>::size());
67 ASSERT(m_position < Vector<Type>::size());
68 return Vector<Type>::at(m_position);
72 unsigned m_position;

Completed in 358 milliseconds

1 2