HomeSort by relevance Sort by last modified time
    Searched full:m_position (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 71 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/JavaScriptCore/wtf/
ListHashSet.h 306 , 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->m_prev
357 Node* m_position; member in class:WTF::ListHashSetConstIterator
    [all...]
  /external/webkit/Source/WebCore/platform/
PlatformWheelEvent.h 109 const IntPoint& pos() const { return m_position; } // PlatformWindow coordinates.
126 int x() const { return m_position.x(); } // PlatformWindow coordinates.
127 int y() const { return m_position.y(); }
182 IntPoint m_position; member in class:WebCore::PlatformWheelEvent
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.h 78 FloatPoint3D position() const { return m_position; }
79 void setPosition(float x, float y, float z) { m_position = FloatPoint3D(x, y, z); }
82 FloatPoint3D orientation() const { return m_position; }
132 FloatPoint3D m_position; member in class:WebCore::AudioPannerNode
AudioPannerNode.cpp 61 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);
AudioListener.cpp 40 : m_position(0, 0, 0)
  /external/webkit/Source/WebCore/editing/
MoveSelectionCommand.cpp 35 : CompositeEditCommand(position.anchorNode()->document()), m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(smartDelete)
44 Position pos = m_position;
MoveSelectionCommand.h 49 Position m_position; member in class:WebCore::MoveSelectionCommand
  /external/webkit/Source/WebCore/platform/gtk/
PlatformMouseEventGtk.cpp 42 m_position = IntPoint((int)event->x, (int)event->y);
81 m_position = IntPoint((int)motion->x, (int)motion->y);
PlatformWheelEventGtk.cpp 62 m_position = IntPoint(static_cast<int>(event->x), static_cast<int>(event->y));
  /external/webkit/Source/WebCore/platform/mac/
PlatformMouseEventMac.mm 146 : m_position(pointForEvent(event, windowView))
164 : m_position(IntPoint(x, y))
  /external/webkit/Source/WebCore/platform/qt/
WheelEventQt.cpp 62 : m_position(e->pos().toPoint())
81 : m_position(e->pos())
PlatformMouseEventQt.cpp 55 m_position = IntPoint(event->pos().toPoint());
99 m_position = IntPoint(ce->pos());
110 m_position = IntPoint(me->pos());
  /external/webkit/Source/WebCore/platform/wx/
MouseWheelEventWx.cpp 36 : m_position(event.GetPosition())
MouseEventWx.cpp 37 : m_position(event.GetPosition())
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
EventSendingController.h 64 WKPoint m_position; member in class:WTR::EventSendingController
  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.h 43 const SkPoint& getPosition() const { return m_position; }
54 void setPosition(SkScalar x, SkScalar y) { m_position.set(x, y); }
145 SkPoint m_position; member in class:Layer
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.h 89 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/WebCore/platform/graphics/chromium/
LayerChromium.h 123 void setPosition(const FloatPoint& position) { m_position = position; setNeedsCommit(); }
124 FloatPoint position() const { return m_position; }
251 FloatPoint m_position; member in class:WebCore::LayerChromium
  /external/webkit/Source/WebKit2/Shared/
WebEventConversion.cpp 68 m_position = webEvent.position();
102 m_position = webEvent.position();
188 m_position = webEvent.position();
  /external/webkit/Source/WebCore/bindings/v8/
V8LazyEventListener.h 74 TextPosition0 m_position; member in class:WebCore::V8LazyEventListener
  /external/webkit/Source/WebCore/platform/efl/
PlatformWheelEventEfl.cpp 46 : m_position(IntPoint(ev->canvas.x, ev->canvas.y))
  /external/webkit/Source/WebCore/platform/haiku/
PlatformMouseEventHaiku.cpp 39 : m_position(message->FindPoint("be:view_where"))
PlatformWheelEventHaiku.cpp 43 : m_position(message->FindPoint("be:view_where"))
  /external/webkit/Source/WebKit/win/
WebGeolocationPosition.cpp 87 m_position = GeolocationPosition::create(timestamp, latitude, longitude, accuracy);

Completed in 807 milliseconds

12 3 4