OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setToValue
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h
118
void
setToValue
(float);
119
void
setToValue
(const WebCore::TransformationMatrix&);
120
void
setToValue
(const FloatPoint3D&);
121
void
setToValue
(const WebCore::Color&);
GraphicsLayerCA.cpp
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm
408
void PlatformCAAnimation::
setToValue
(float value)
412
[static_cast<CABasicAnimation*>(m_animation.get())
setToValue
:[NSNumber numberWithDouble:value]];
415
void PlatformCAAnimation::
setToValue
(const WebCore::TransformationMatrix& value)
420
[static_cast<CABasicAnimation*>(m_animation.get())
setToValue
:[NSValue valueWithCATransform3D:value]];
423
void PlatformCAAnimation::
setToValue
(const FloatPoint3D& value)
433
[static_cast<CABasicAnimation*>(m_animation.get())
setToValue
:array];
436
void PlatformCAAnimation::
setToValue
(const WebCore::Color& value)
447
[static_cast<CABasicAnimation*>(m_animation.get())
setToValue
:array];
456
[static_cast<CABasicAnimation*>(m_animation.get())
setToValue
:[otherAnimation toValue]];
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp
376
void PlatformCAAnimation::
setToValue
(float value)
385
void PlatformCAAnimation::
setToValue
(const WebCore::TransformationMatrix& value)
394
void PlatformCAAnimation::
setToValue
(const FloatPoint3D& value)
404
void PlatformCAAnimation::
setToValue
(const WebCore::Color& value)
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.mm
209
[zoomAnimation
setToValue
:[NSValue valueWithCATransform3D:CATransform3DIdentity]];
261
[zoomAnimation
setToValue
:[NSValue valueWithCATransform3D:finalTransform]];
/external/webkit/Source/WebKit/mac/WebView/
WebFullScreenController.mm
478
[zoomAnimation
setToValue
:[NSValue valueWithCATransform3D:CATransform3DIdentity]];
612
[zoomAnimation
setToValue
:[NSValue valueWithCATransform3D:finalTransform]];
[
all
...]
Completed in 1188 milliseconds