/third_party/skia/experimental/docs/ |
D | animationCommon.js | 11 this.timeline = []; property 18 function addActions(frame, timeline) { argument 23 loopOver(action, timeline); 36 … for (var index = animationState.timelineIndex; index < animationState.timeline.length; ++index) { 37 var animation = animationState.timeline[index]; 238 addActions("_default", animationState.timeline); 239 addActions(frame, animationState.timeline); 240 for (var index = 0; index < animationState.timeline.length; ++index) { 241 animationState.timeline[index].position = index; 243 animationState.timeline.sort(function(a, b) { [all …]
|
/third_party/flutter/skia/experimental/docs/ |
D | animationCommon.js | 11 this.timeline = []; property 18 function addActions(frame, timeline) { argument 23 loopOver(action, timeline); 36 … for (var index = animationState.timelineIndex; index < animationState.timeline.length; ++index) { 37 var animation = animationState.timeline[index]; 238 addActions("_default", animationState.timeline); 239 addActions(frame, animationState.timeline); 240 for (var index = 0; index < animationState.timeline.length; ++index) { 241 animationState.timeline[index].position = index; 243 animationState.timeline.sort(function(a, b) { [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
D | tracing.dart | 68 final Map<String, dynamic> timeline = await vmService.vm.getVMTimeline(); 70 return timeline; 90 final Map<String, dynamic> timeline = await tracing.stopTracingAndDownloadTimeline( 96 List<Map<String, dynamic>>.from(timeline['traceEvents']); 109 printTrace('Engine start event is missing in the timeline: $timeline'); 110 throw 'Engine start event is missing in the timeline. Cannot compute startup time.'; 127 printTrace('First frame events are missing in the timeline: $timeline'); 128 throw 'First frame events are missing in the timeline. Cannot compute startup time.';
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_queue.c | 128 struct anv_timeline *timeline, in anv_timeline_init() argument 131 timeline->highest_past = in anv_timeline_init() 132 timeline->highest_pending = initial_value; in anv_timeline_init() 133 list_inithead(&timeline->points); in anv_timeline_init() 134 list_inithead(&timeline->free_points); in anv_timeline_init() 141 struct anv_timeline *timeline) in anv_timeline_finish() argument 144 &timeline->free_points, link) { in anv_timeline_finish() 150 &timeline->points, link) { in anv_timeline_finish() 159 struct anv_timeline *timeline, in anv_timeline_add_point_locked() argument 165 if (list_is_empty(&timeline->free_points)) { in anv_timeline_add_point_locked() [all …]
|
/third_party/flutter/flutter/packages/flutter_driver/test/src/ |
D | timeline_test.dart | 5 import 'package:flutter_driver/src/driver/timeline.dart'; 12 final Timeline timeline = Timeline.fromJson(<String, dynamic>{ 33 expect(timeline.events, hasLength(2)); 35 final TimelineEvent e1 = timeline.events[0]; 47 final TimelineEvent e2 = timeline.events[1];
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_drm.c | 81 struct tu_timeline timeline; member 548 struct tu_timeline *timeline) in tu_timeline_finish() argument 551 &timeline->free_points, link) { in tu_timeline_finish() 559 &timeline->points, link) { in tu_timeline_finish() 600 sync->timeline.highest_signaled = sync->timeline.highest_submitted = in sync_create() 602 list_inithead(&sync->timeline.points); in sync_create() 603 list_inithead(&sync->timeline.free_points); in sync_create() 634 tu_timeline_finish(device, &sync->timeline); in sync_destroy() 788 struct tu_syncobj *timeline, in tu_queue_submit_add_timeline_wait_locked() argument 815 submit->wait_timelines[submit->wait_timeline_count] = timeline; in tu_queue_submit_add_timeline_wait_locked() [all …]
|
/third_party/flutter/flutter/examples/flutter_gallery/test_driver/ |
D | transitions_perf_test.dart | 16 // Demos for which timeline data will be collected using 19 // Warning: The number of tests executed with timeline collection enabled 64 /// Extracts event data from [events] recorded by timeline, validates it, turns 86 throw 'no "Start Transition" timeline events found'; 206 // Collect timeline data for just a limited set of demos to avoid OOMs. 207 final Timeline timeline = await driver.traceAction( 217 // Save the duration (in microseconds) of the first timeline Frame event 220 final TimelineSummary summary = TimelineSummary.summarize(timeline); 222 …final String histogramPath = path.join(testOutputsDirectory, 'transition_durations.timeline.json'); 224 List<Map<String, dynamic>>.from(timeline.json['traceEvents']),
|
D | scroll_perf_test.dart | 27 final Timeline timeline = await driver.traceAction(() async { 47 TimelineSummary.summarize(timeline)
|
/third_party/flutter/flutter/packages/flutter_driver/lib/src/driver/ |
D | timeline.dart | 7 /// Creates a timeline given JSON-encoded timeline data. 19 /// The original timeline JSON. 22 /// List of all timeline events. 26 /// A single timeline event. 28 /// Creates a timeline event given JSON-encoded event data.
|
D | timeline_summary.dart | 13 import 'timeline.dart'; 23 /// Creates a timeline summary given a full timeline object. 83 /// The total number of frames recorded in the timeline. 109 /// Writes all of the recorded timeline data to a file. 117 final File file = fs.file(path.join(destinationDirectory, '$traceName.timeline.json'));
|
/third_party/flutter/flutter/dev/benchmarks/macrobenchmarks/ |
D | README.md | 15 More detailed logs should be in `build/cull_opacity_perf.timeline.json`. 27 More detailed logs should be in `build/cubic_bezier_perf.timeline.json`. 39 More detailed logs should be in `build/backdrop_filter_perf.timeline.json`.
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_device.c | 1162 set_last_fence(struct lvp_device *device, struct pipe_fence_handle *handle, uint64_t timeline) in set_last_fence() argument 1165 device->queue.last_fence_timeline = timeline; in set_last_fence() 1171 thread_flush(struct lvp_device *device, struct lvp_fence *fence, uint64_t timeline, in thread_flush() argument 1178 set_last_fence(device, handle, timeline); in thread_flush() 1201 if (sema->timeline) in get_semaphore_link() 1204 sema->timeline = tl; in get_semaphore_link() 1213 prune_semaphore_links(struct lvp_semaphore *sema, uint64_t timeline) in prune_semaphore_links() argument 1215 if (!timeline) in prune_semaphore_links() 1218 struct lvp_semaphore_timeline *tl = sema->timeline; in prune_semaphore_links() 1220 while (tl && ((tl->timeline <= timeline) || (tl->signal <= sema->current))) { in prune_semaphore_links() [all …]
|
D | lvp_wsi.c | 85 fence->timeline = p_atomic_inc_return(&device->queue.timeline); in lvp_AcquireNextImage2KHR()
|
/third_party/libwebsockets/contrib/abi/ |
D | README.md | 5 timeline for libwebsockets. This gives users an idea of where the library has 10 some example output is here: http://abi-laboratory.pro/tracker/timeline/libuv/ 54 The best place to start looking at the data is the `timeline/libwebsockets` 58 lynx timeline/libwebsockets/
|
/third_party/boost/libs/log/example/doc/ |
D | tutorial_attributes.cpp | 48 BOOST_LOG_ATTRIBUTE_KEYWORD(timeline, "Timeline", attrs::timer::value_type) 132 << expr::if_(expr::has_attr(timeline)) in init() 134 expr::stream << "[" << timeline << "] " in init()
|
/third_party/mindspore/mindspore/profiler/parser/ |
D | optime_parser.py | 167 for timeline in timeline_data: 168 timeline = [str(item) for item in timeline] 169 f_obj.write(','.join(timeline) + '\n')
|
D | integrator.py | 635 def _update_num_of_streams(timeline, stream_count_dict): argument 637 stream_id = timeline[1] 814 def _parse_timeline_data(self, timeline, min_cycle_counter): argument 818 op_meta = TimelineContainer(timeline) 834 if len(timeline) > 4: 838 for ix, value in enumerate(timeline[4:]): 970 for timeline in timeline_list: 971 self._parse_timeline_data(timeline, 0) 973 if len(timeline) == 4: 974 self._update_num_of_streams(timeline, stream_count_dict) [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | misspelledJsDocTypedefTags.types | 7 >Animation : { new (effect?: AnimationEffect, timeline?: AnimationTimeline): Animation; prototype: … 17 >Animation : { new (effect?: AnimationEffect, timeline?: AnimationTimeline): Animation; prototype: …
|
/third_party/flutter/flutter/packages/flutter_driver/test/ |
D | flutter_driver_test.dart | 10 import 'package:flutter_driver/src/driver/timeline.dart'; 370 test('clears timeline', () async { 418 test('without clearing timeline', () async { 419 final Timeline timeline = await driver.traceAction(() async { 429 expect(timeline.events.single.name, 'test event'); 432 test('with clearing timeline', () async { 433 final Timeline timeline = await driver.traceAction(() async { 444 expect(timeline.events.single.name, 'test event'); 448 group('traceAction with timeline streams', () { 449 test('specify non-default timeline streams', () async { [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_device.c | 83 radv_timeline_find_point_at_least_locked(struct radv_device *device, struct radv_timeline *timeline, 87 struct radv_timeline *timeline, 90 static void radv_timeline_trigger_waiters_locked(struct radv_timeline *timeline, 4161 mtx_lock(&sems[i]->timeline.mutex); in radv_alloc_sem_counts() 4164 point = radv_timeline_add_point_locked(device, &sems[i]->timeline, timeline_values[i]); in radv_alloc_sem_counts() 4166 point = radv_timeline_find_point_at_least_locked(device, &sems[i]->timeline, in radv_alloc_sem_counts() 4170 mtx_unlock(&sems[i]->timeline.mutex); in radv_alloc_sem_counts() 4250 mtx_lock(&wait_sems[i]->timeline.mutex); in radv_finalize_timelines() 4252 device, &wait_sems[i]->timeline, wait_values[i]); in radv_finalize_timelines() 4254 mtx_unlock(&wait_sems[i]->timeline.mutex); in radv_finalize_timelines() [all …]
|
/third_party/flutter/flutter/examples/stocks/test_driver/ |
D | scroll_perf_test.dart | 24 final Timeline timeline = await driver.traceAction(() async { 42 final TimelineSummary summary = TimelineSummary.summarize(timeline);
|
/third_party/openGLES/extensions/NV/ |
D | NV_timeline_semaphore.txt | 41 The Vulkan API introduces the concept of timeline semaphores. 43 a semaphore type to the semaphore object. In OpenGL, timeline semaphore 159 When using timeline semaphores, wait-before-signal behavior is 165 of a timeline semaphore and any pending wait operations 178 of a timeline semaphore and any pending signal operations.
|
/third_party/flutter/flutter/dev/benchmarks/macrobenchmarks/test_driver/ |
D | util.dart | 34 final Timeline timeline = await driver.traceAction(() async { 38 final TimelineSummary summary = TimelineSummary.summarize(timeline);
|
/third_party/flutter/flutter/dev/benchmarks/complex_layout/test_driver/ |
D | semantics_perf_test.dart | 32 final Timeline timeline = await driver.traceAction(() async { 36 …final Iterable<TimelineEvent> semanticsEvents = timeline.events.where((TimelineEvent event) => eve…
|
/third_party/weston/doc/sphinx/toc/libweston/ |
D | log.rst | 68 - **timeline** - see more at :ref:`timeline points` 163 A special log scope is the 'timeline' scope which, together with 165 Timeline points write to this 'timeline' scope in different parts of the 178 ./weston-debug timeline > log.json 181 Inserting timeline points 186 timeline point. What follows next is a variable number of arguments, which
|