OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebFloatKeyframe
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebFloatAnimationCurve.h
31
#include "
WebFloatKeyframe
.h"
41
virtual void add(const
WebFloatKeyframe
&) = 0;
42
virtual void add(const
WebFloatKeyframe
&, TimingFunctionType) = 0;
45
virtual void add(const
WebFloatKeyframe
&, double x1, double y1, double x2, double y2) = 0;
WebFloatKeyframe.h
30
struct
WebFloatKeyframe
{
31
WebFloatKeyframe
(double time, float value)
/external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_impl.h
17
namespace blink { struct
WebFloatKeyframe
; }
30
virtual void add(const blink::
WebFloatKeyframe
& keyframe);
31
virtual void add(const blink::
WebFloatKeyframe
& keyframe,
33
virtual void add(const blink::
WebFloatKeyframe
& keyframe,
web_float_animation_curve_unittest.cc
12
using blink::
WebFloatKeyframe
;
20
curve->add(
WebFloatKeyframe
(0, 2),
32
curve->add(
WebFloatKeyframe
(0, 2),
34
curve->add(
WebFloatKeyframe
(1, 4),
46
curve->add(
WebFloatKeyframe
(0, 2),
48
curve->add(
WebFloatKeyframe
(1, 4),
50
curve->add(
WebFloatKeyframe
(2, 8),
64
curve->add(
WebFloatKeyframe
(0, 4),
66
curve->add(
WebFloatKeyframe
(1, 4),
68
curve->add(
WebFloatKeyframe
(1, 6)
[
all
...]
web_float_animation_curve_impl.cc
12
using blink::
WebFloatKeyframe
;
26
void WebFloatAnimationCurveImpl::add(const
WebFloatKeyframe
& keyframe) {
30
void WebFloatAnimationCurveImpl::add(const
WebFloatKeyframe
& keyframe,
36
void WebFloatAnimationCurveImpl::add(const
WebFloatKeyframe
& keyframe,
/external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTestHelper.h
32
#include "public/platform/
WebFloatKeyframe
.h"
54
// blink::
WebFloatKeyframe
is a plain struct, so we just create an == operator
56
inline bool operator==(const
WebFloatKeyframe
& a, const
WebFloatKeyframe
& b)
61
inline void PrintTo(const
WebFloatKeyframe
& frame, ::std::ostream* os)
63
*os << "
WebFloatKeyframe
@" << &frame << "(" << frame.time << ", " << frame.value << ")";
110
typedef WebAnimationCurveMock<blink::WebFloatAnimationCurve, blink::WebAnimationCurve::AnimationCurveTypeFloat, blink::
WebFloatKeyframe
> WebFloatAnimationCurveMock;
CompositorAnimationsTest.cpp
[
all
...]
CompositorAnimations.cpp
50
#include "public/platform/
WebFloatKeyframe
.h"
455
blink::
WebFloatKeyframe
floatKeyframe(keyframes[i]->offset(), toAnimatableDouble(value.get())->toDouble());
/external/chromium_org/third_party/WebKit/Source/web/
LinkHighlight.cpp
265
curve->add(
WebFloatKeyframe
(0, startOpacity));
269
curve->add(
WebFloatKeyframe
(extraDurationRequired, startOpacity));
271
curve->add(
WebFloatKeyframe
(fadeDuration + extraDurationRequired, blink::layoutTestMode() ? startOpacity : 0));
/external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp
96
curve->add(
WebFloatKeyframe
(0.0, 0.0));
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp
339
return createWebAnimation<FloatAnimationValue,
WebFloatKeyframe
, WebFloatAnimationCurve>(values, animation, animationId, timeOffset, curve.get(), blink::WebAnimation::TargetPropertyOpacity, FloatSize());
Completed in 79 milliseconds