OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:chainedMixed
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTimingFunctionReverserTest.cpp
97
RefPtr<ChainedTimingFunction>
chainedMixed
= ChainedTimingFunction::create();
98
chainedMixed
->appendSegment(0.75, chainedLinearSingle.get());
99
chainedMixed
->appendSegment(1.0, cubicEaseInTiming.get());
104
EXPECT_REFV_EQ(chainedMixedReversed, reverse(
chainedMixed
));
CompositorAnimationsTest.cpp
633
RefPtr<ChainedTimingFunction>
chainedMixed
= ChainedTimingFunction::create();
634
chainedMixed
->appendSegment(0.25, m_linearTimingFunction.get());
635
chainedMixed
->appendSegment(0.5, m_cubicEaseTimingFunction.get());
636
chainedMixed
->appendSegment(0.75, m_cubicEaseTimingFunction.get());
637
chainedMixed
->appendSegment(1.0, m_linearTimingFunction.get());
638
m_timing.timingFunction =
chainedMixed
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunctionTestHelperTest.cpp
141
RefPtr<ChainedTimingFunction>
chainedMixed
= ChainedTimingFunction::create();
142
chainedMixed
->appendSegment(0.75, chainedLinearSingle.get());
143
chainedMixed
->appendSegment(1.0, cubicCustomTiming.get());
145
PrintToString(
chainedMixed
),
Completed in 153 milliseconds