HomeSort by relevance Sort by last modified time
    Searched defs:m_operations (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/rendering/style/
StyleTransformData.h 46 TransformOperations m_operations; member in class:WebCore::StyleTransformData
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformOperations.h 47 for (unsigned i = 0; i < m_operations.size(); ++i)
48 m_operations[i]->apply(t, sz);
55 for (unsigned i = 0; i < m_operations.size(); ++i)
56 if (m_operations[i]->is3DOperation())
63 m_operations.clear();
66 Vector<RefPtr<TransformOperation> >& operations() { return m_operations; }
67 const Vector<RefPtr<TransformOperation> >& operations() const { return m_operations; }
69 size_t size() const { return m_operations.size(); }
70 const TransformOperation* at(size_t index) const { return index < m_operations.size() ? m_operations.at(index).get() : 0;
73 Vector<RefPtr<TransformOperation> > m_operations; member in class:WebCore::TransformOperations
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.h 76 KeyframeValueList* m_operations; member in class:WebCore::AndroidAnimation
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.cpp 143 for (size_t i = 0; i < m_operations.size(); i++)
144 m_operations[i]->~RecordingData();
145 m_operations.clear();
159 for (size_t i = 0; i < m_operations.size(); i++) {
160 RecordingData *data = m_operations[i];
190 m_operations.append(data);
205 Vector<RecordingData*> m_operations; member in class:WebCore::CanvasState
    [all...]

Completed in 91 milliseconds