Searched defs:timeline (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/core/timeline/
H A Dsample.py5 import telemetry.core.timeline.event as timeline_event namespace
H A Dasync_slice.py5 import telemetry.core.timeline.event as event namespace
H A Dcounter.py5 import telemetry.core.timeline.event_container as event_container namespace
H A Dinspector_importer.py4 '''Imports event data obtained from the inspector's timeline.'''
6 from telemetry.core.timeline import importer
7 import telemetry.core.timeline.thread as timeline_thread namespace
15 ''' Checks if event_data is from the inspector timeline. We assume
H A Dslice.py5 import telemetry.core.timeline.event as timeline_event namespace
H A Dprocess.py5 import telemetry.core.timeline.event_container as event_container namespace
6 import telemetry.core.timeline.counter as tracing_counter namespace
7 import telemetry.core.timeline.thread as tracing_thread namespace
H A Dmodel.py4 '''A container for timeline-based events and traces and can handle importing
10 import telemetry.core.timeline.process as tracing_process namespace
13 from telemetry.core.timeline import inspector_importer
14 from telemetry.core.timeline import bounds
15 from telemetry.core.timeline import trace_event_importer
71 # to prevent the timeline from from being modified.
H A Dtrace_event_importer.py14 from telemetry.core.timeline import importer
15 import telemetry.core.timeline.async_slice as tracing_async_slice namespace
H A Dthread.py6 import telemetry.core.timeline.event_container as event_container namespace
7 import telemetry.core.timeline.sample as tracing_sample namespace
8 import telemetry.core.timeline.slice as tracing_slice namespace
H A Dtrace_event_importer_unittest.py8 from telemetry.core.timeline import trace_event_importer
9 import telemetry.core.timeline.model as timeline_model namespace
10 import telemetry.core.timeline.counter as tracing_counter namespace
383 # Need to include immediates inside a task so the timeline
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DPlayerTest.cpp49 timeline = DocumentTimeline::create(document.get());
50 player = Player::create(timeline.get(), 0);
55 timeline->serviceAnimations(time);
56 // The timeline does not know about our player, so we have to explicitly call update().
61 RefPtr<DocumentTimeline> timeline; member in class:__anon10153::PlayerTest
67 EXPECT_TRUE(isNull(timeline->currentTime()));
78 EXPECT_EQ(1234, timeline->currentTime());
79 RefPtr<Player> player = Player::create(timeline.get(), 0);
H A DDocumentTimelineTest.cpp53 timeline = DocumentTimeline::create(document.get());
58 RefPtr<DocumentTimeline> timeline; member in class:__anon10150::DocumentTimelineTest
67 EXPECT_TRUE(isNull(timeline->currentTime()));
69 timeline->play(anim.get());
70 EXPECT_TRUE(isNull(timeline->currentTime()));
72 timeline->serviceAnimations(0);
73 EXPECT_FLOAT_EQ(0, timeline->currentTime());
76 timeline->serviceAnimations(100);
77 EXPECT_FLOAT_EQ(100, timeline->currentTime());
85 RefPtr<Player> player1 = timeline
[all...]
H A DPlayer.h58 DocumentTimeline* timeline() { return m_timeline; } function in class:WebCore::FINAL
H A DPlayer.cpp40 PassRefPtr<Player> Player::create(DocumentTimeline* timeline, TimedItem* content) argument
42 ASSERT(timeline);
43 return adoptRef(new Player(timeline, content));
46 Player::Player(DocumentTimeline* timeline, TimedItem* content) argument
50 , m_startTime(effectiveTime(timeline->currentTime()))
52 , m_timeline(timeline)
/external/chromium_org/tools/perf/measurements/
H A Dloading_timeline.py4 from metrics import timeline namespace
19 self._metrics = timeline.TimelineMetrics(timeline.TIMELINE_MODE)
H A Dloading_trace.py5 from metrics import timeline namespace
19 self._metrics = timeline.TimelineMetrics(timeline.TRACING_MODE)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DToolbar.js103 "timeline": true,
119 "timeline": true,
H A DUserMetrics.js86 timeline: 5,
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElements.cpp475 RefPtr<MediaControlTimelineElement> timeline = adoptRef(new MediaControlTimelineElement(document, controls)); local
476 timeline->ensureUserAgentShadowRoot();
477 timeline->setType("range");
478 timeline->setAttribute(precisionAttr, "float");
479 return timeline.release();
532 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-timeline", AtomicString::ConstructFromLiteral));
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimator.cpp636 void SkAnimator::setTimeline(const Timeline& timeline) { argument
637 fMaker->fTimeline = &timeline;
/external/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/core/css/resolver/
H A DStyleResolver.cpp1140 void StyleResolver::applyAnimatedProperties(StyleResolverState& state, const Element* target, const DocumentTimeline* timeline, const CSSAnimationUpdate* update) argument
1153 AnimationStack* animationStack = timeline->animationStack(target);
1406 applyAnimatedProperties<HighPriorityProperties>(state, element, element->document()->timeline(), cssAnimationUpdate.get());
1436 applyAnimatedProperties<LowPriorityProperties>(state, element, element->document()->timeline(), cssAnimationUpdate.get());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.h1030 DocumentTimeline* timeline() const { return m_timeline.get(); } function in class:WebCore::Document

Completed in 355 milliseconds