Home | History | Annotate | Download | only in transforms

Lines Matching refs:to

15  * contributors may be used to endorse or promote products derived from
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress)
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
62 return from.dependsOnBoxSize() || to.dependsOnBoxSize();
65 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress)
67 , to(to)
72 const TransformOperations to;