Searched refs:timeline (Results 1 - 25 of 142) sorted by last modified time

123456

/external/skia/src/animator/
H A DSkAnimator.cpp636 void SkAnimator::setTimeline(const Timeline& timeline) { argument
637 fMaker->fTimeline = &timeline;
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimator.cpp636 void SkAnimator::setTimeline(const Timeline& timeline) { argument
637 fMaker->fTimeline = &timeline;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DtimelinePanel.css30 #timeline-overview-panel {
36 #timeline-overview-panel .timeline-graph-bar {
40 .timeline-records-title, .timeline-records-list {
44 .timeline-records-title {
50 .timeline-records-list {
54 #timeline-overview-grid {
58 .timeline-overview-frames-mode #timeline
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_expectations.py599 def get_tests_with_timeline(self, timeline):
600 return self._timeline_to_tests[timeline]
992 def get_tests_with_timeline(self, timeline):
993 return self._model.get_tests_with_timeline(timeline)
H A Dtest_run_results.py98 for timeline in test_expectations.TestExpectations.TIMELINES.values():
99 self.tests_by_timeline[timeline] = expectations.get_tests_with_timeline(timeline)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results.py75 def _print_run_results_entry(self, run_results, timeline, heading):
76 total = len(run_results.tests_by_timeline[timeline])
79 run_results.tests_by_timeline[timeline]))
85 results = (run_results.tests_by_expectation[result] & run_results.tests_by_timeline[timeline])
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationPlayer.cpp54 PassRefPtrWillBeRawPtr<AnimationPlayer> AnimationPlayer::create(ExecutionContext* executionContext, AnimationTimeline& timeline, AnimationNode* content) argument
56 RefPtrWillBeRawPtr<AnimationPlayer> player = adoptRefWillBeNoop(new AnimationPlayer(executionContext, timeline, content));
58 timeline.document()->compositorPendingAnimations().add(player.get());
63 AnimationPlayer::AnimationPlayer(ExecutionContext* executionContext, AnimationTimeline& timeline, AnimationNode* content) argument
70 , m_timeline(&timeline)
589 double startTime = timeline()->zeroTime() + startTimeInternal();
612 timeline()->document()->compositorPendingAnimations().add(this);
651 m_pendingFinishedEvent = AnimationPlayerEvent::create(eventType, eventCurrentTime, timeline()->currentTime());
H A DAnimationPlayer.h105 const AnimationTimeline* timeline() const { return m_timeline; } function in class:blink::FINAL
106 AnimationTimeline* timeline() { return m_timeline; } function in class:blink::FINAL
H A DAnimationPlayerTest.cpp59 timeline = AnimationTimeline::create(document.get());
60 player = timeline->createAnimationPlayer(0);
82 // The timeline does not know about our player, so we have to explicitly call update().
87 RefPtrWillBePersistent<AnimationTimeline> timeline; member in class:__anon10984::AnimationAnimationPlayerTest
95 player = timeline->createAnimationPlayer(0);
105 EXPECT_EQ(0, timeline->currentTimeInternal());
636 player = timeline->createAnimationPlayer(0);
674 player = timeline->createAnimationPlayer(0);
685 AnimationPlayer* player2 = timeline->createAnimationPlayer(animationNode);
698 player = timeline
[all...]
H A DAnimationStackTest.cpp24 timeline = AnimationTimeline::create(document.get());
30 AnimationPlayer* player = timeline->createAnimationPlayer(animation);
39 timeline->serviceAnimations(TimingUpdateForAnimationFrame);
80 RefPtrWillBePersistent<AnimationTimeline> timeline; member in class:blink::AnimationAnimationStackTest
H A DAnimationTest.cpp30 document.animationClock().resetTimeForTesting(document.timeline().zeroTime());
31 EXPECT_EQ(0, document.timeline().currentTime());
353 RefPtrWillBeRawPtr<AnimationPlayer> player = document.timeline().play(animation.get());
386 RefPtrWillBeRawPtr<AnimationPlayer> player = document.timeline().play(animation.get());
419 RefPtrWillBeRawPtr<AnimationPlayer> player = document.timeline().play(animation.get());
450 document.timeline().play(animation.get());
H A DAnimationTimeline.h69 // Creates a player attached to this timeline, but without a start time.
120 AnimationTimelineTiming(AnimationTimeline* timeline) argument
121 : m_timeline(timeline)
H A DAnimationTimelineTest.cpp95 timeline = AnimationTimeline::create(document.get(), adoptPtrWillBeNoop(platformTiming));
96 ASSERT_EQ(0, timeline->currentTimeInternal());
103 timeline.release();
113 timeline->serviceAnimations(TimingUpdateForAnimationFrame);
118 RefPtrWillBePersistent<AnimationTimeline> timeline; member in class:blink::AnimationAnimationTimelineTest
124 timeline->wake();
135 timeline = AnimationTimeline::create(document.get());
143 timeline->play(anim.get());
147 EXPECT_FLOAT_EQ(0, timeline->currentTimeInternal());
152 EXPECT_FLOAT_EQ(100, timeline
[all...]
H A DCompositorPendingAnimations.cpp48 Document* document = player->timeline()->document();
91 waitingForStartTime[i]->notifyCompositorStartTime(waitingForStartTime[i]->timeline()->currentTimeInternal());
99 player.postCommit(player.timeline()->currentTimeInternal());
129 player->notifyCompositorStartTime(monotonicAnimationStartTime - player->timeline()->zeroTime());
H A DDocumentAnimation.h14 static AnimationTimeline* timeline(Document& document) { return &document.timeline(); } function in class:blink::DocumentAnimation
H A DDocumentAnimations.cpp51 document.timeline().serviceAnimations(reason);
84 return document.timeline().hasOutdatedAnimationPlayer();
H A DElementAnimation.h113 return element.document().timeline().play(animation.get());
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.cpp228 calculateAnimationActiveInterpolations(update.get(), animatingElement, element.document().timeline().currentTimeInternal());
230 calculateTransitionActiveInterpolations(update.get(), animatingElement, element.document().timeline().currentTimeInternal());
333 RefPtrWillBeRawPtr<AnimationPlayer> player = element->document().timeline().createAnimationPlayer(animation.get());
375 double inheritedTime = isNull(oldStartTime) ? 0 : element->document().timeline().currentTimeInternal() - oldStartTime;
395 RefPtrWillBeRawPtr<AnimationPlayer> player = element->document().timeline().createAnimationPlayer(transition.get());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DmediaControls.css186 audio::-webkit-media-controls-timeline-container, video::-webkit-media-controls-timeline-container {
226 audio::-webkit-media-controls-timeline, video::-webkit-media-controls-timeline {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.h990 AnimationTimeline& timeline() const { return *m_timeline; } function in class:blink::Document
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DConsoleBase.cpp180 TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "TimeStamp", "data", InspectorTimeStampEvent::data(context(), title));
190 void ConsoleBase::timeline(ScriptState* scriptState, const String& title) function in class:blink::ConsoleBase
H A DConsoleBase.h70 void timeline(ScriptState*, const String&);
H A DConsoleBase.idl54 [DeprecateAs=ConsoleTimeline,CallWith=ScriptState] void timeline(optional DOMString title = null);
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElements.cpp71 // Sliders (the volume control and timeline) need to capture some additional events used when dragging the thumb.
391 RefPtrWillBeRawPtr<MediaControlTimelineElement> timeline = adoptRefWillBeNoop(new MediaControlTimelineElement(mediaControls)); local
392 timeline->ensureUserAgentShadowRoot();
393 timeline->setType("range");
394 timeline->setAttribute(stepAttr, "any");
395 return timeline.release();
419 // FIXME: This will need to take the timeline offset into consideration
449 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-timeline", AtomicString::ConstructFromLiteral));
H A DMediaControls.cpp120 RefPtrWillBeRawPtr<MediaControlTimelineElement> timeline = MediaControlTimelineElement::create(*this);
121 m_timeline = timeline.get();
122 panel->appendChild(timeline.release(), exceptionState);

Completed in 5977 milliseconds

123456