HomeSort by relevance Sort by last modified time
    Searched full:fromop (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.cpp 41 const RotateTransformOperation* fromOp = static_cast<const RotateTransformOperation*>(from);
44 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) ||
45 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) ||
46 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0))
    [all...]
ScaleTransformOperation.cpp 39 const ScaleTransformOperation* fromOp = static_cast<const ScaleTransformOperation*>(from);
40 double fromX = fromOp ? fromOp->m_x : 1.0;
41 double fromY = fromOp ? fromOp->m_y : 1.0;
42 double fromZ = fromOp ? fromOp->m_z : 1.0;
TranslateTransformOperation.cpp 36 const TranslateTransformOperation* fromOp = static_cast<const TranslateTransformOperation*>(from);
37 Length fromX = fromOp ? fromOp->m_x : zeroLength;
38 Length fromY = fromOp ? fromOp->m_y : zeroLength;
39 Length fromZ = fromOp ? fromOp->m_z : zeroLength;
SkewTransformOperation.cpp 37 const SkewTransformOperation* fromOp = static_cast<const SkewTransformOperation*>(from);
38 double fromAngleX = fromOp ? fromOp->m_angleX : 0;
39 double fromAngleY = fromOp ? fromOp->m_angleY : 0;
PerspectiveTransformOperation.cpp 47 const PerspectiveTransformOperation* fromOp = static_cast<const PerspectiveTransformOperation*>(from);
48 Length fromP = fromOp ? fromOp->m_p : Length(m_p.type());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterOperation.cpp 61 const CustomFilterOperation* fromOp = toCustomFilterOperation(from);
62 if (m_program.get() != fromOp->m_program.get()
63 || m_meshRows != fromOp->m_meshRows
64 || m_meshColumns != fromOp->m_meshColumns
65 || m_meshType != fromOp->m_meshType)
69 m_parameters.blend(fromOp->m_parameters, progress, animatedParameters);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.cpp 125 const BlurFilterOperation* fromOp = toBlurFilterOperation(from);
126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative));
138 const DropShadowFilterOperation* fromOp = toDropShadowFilterOperation(from);
140 WebCore::blend(fromOp->location(), m_location, progress),
141 WebCore::blend(fromOp->stdDeviation(), m_stdDeviation, progress),
142 WebCore::blend(fromOp->color(), m_color, progress));
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
CSSPropertyAnimation.cpp 155 const FilterOperation* fromOp = (i < fromSize) ? from.operations()[i].get() : 0;
157 RefPtr<FilterOperation> blendedOp = FilterOperation::blend(fromOp, toOp, progress);
    [all...]

Completed in 292 milliseconds