OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebTransformOperations
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebTransformKeyframe.h
30
#include "
WebTransformOperations
.h"
40
BLINK_PLATFORM_EXPORT WebTransformKeyframe(double time, WTF::PassOwnPtr<
WebTransformOperations
> value);
47
BLINK_PLATFORM_EXPORT const
WebTransformOperations
& value() const;
51
WebPrivateOwnPtr<
WebTransformOperations
> m_value;
WebTransformOperations.h
34
class
WebTransformOperations
{
36
virtual ~
WebTransformOperations
() { }
41
virtual bool canBlendWith(const
WebTransformOperations
& other) const = 0;
WebCompositorSupport.h
55
class
WebTransformOperations
;
94
virtual
WebTransformOperations
* createTransformOperations() { return 0; }
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebTransformKeyframe.cpp
32
WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<
WebTransformOperations
> value)
48
const
WebTransformOperations
& WebTransformKeyframe::value() const
/external/chromium_org/webkit/renderer/compositor_bindings/
web_transform_operations_impl.h
10
#include "third_party/WebKit/public/platform/
WebTransformOperations
.h"
15
class WebTransformOperationsImpl : public blink::
WebTransformOperations
{
22
// Implementation of blink::
WebTransformOperations
methods
23
virtual bool canBlendWith(const blink::
WebTransformOperations
& other) const;
web_compositor_support_impl.cc
45
using blink::
WebTransformOperations
;
114
WebTransformOperations
* WebCompositorSupportImpl::createTransformOperations() {
web_compositor_support_impl.h
12
#include "third_party/WebKit/public/platform/
WebTransformOperations
.h"
47
virtual blink::
WebTransformOperations
* createTransformOperations();
web_transform_operations_impl.cc
21
const blink::
WebTransformOperations
& other) const {
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.h
36
#include "public/platform/
WebTransformOperations
.h"
58
void toWebTransformOperations(const TransformOperations& inOperations, const FloatSize& boxSize, blink::
WebTransformOperations
* outOperations);
AnimationTranslationUtil.cpp
60
void toWebTransformOperations(const TransformOperations& transformOperations, const FloatSize& boxSize,
WebTransformOperations
*
webTransformOperations
)
71
webTransformOperations
->appendScale(transform->x(), transform->y(), transform->z());
80
webTransformOperations
->appendTranslate(floatValueForLength(transform->x(), boxSize.width()), floatValueForLength(transform->y(), boxSize.height()), floatValueForLength(transform->z(), 1));
88
webTransformOperations
->appendRotate(transform->x(), transform->y(), transform->z(), transform->angle());
95
webTransformOperations
->appendSkew(transform->angleX(), transform->angleY());
101
webTransformOperations
->appendMatrix(TransformationMatrix::toSkMatrix44(m));
107
webTransformOperations
->appendMatrix(TransformationMatrix::toSkMatrix44(m));
112
webTransformOperations
->appendPerspective(floatValueForLength(transform->perspective(), 0));
118
webTransformOperations
->appendMatrix(TransformationMatrix::toSkMatrix44(m))
[
all
...]
AnimationTranslationUtilTest.cpp
49
class WebTransformOperationsMock : public blink::
WebTransformOperations
{
51
MOCK_CONST_METHOD1(canBlendWith, bool(const
WebTransformOperations
&));
/external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimations.cpp
461
OwnPtr<blink::
WebTransformOperations
> ops = adoptPtr(blink::Platform::current()->compositorSupport()->createTransformOperations());
Completed in 155 milliseconds