telemetry.core.timeline.event
index
telemetry/core/timeline/event.py

# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Classes
       
__builtin__.object
TimelineEvent

 
class TimelineEvent(__builtin__.object)
    Represents a timeline event.
 
  Methods defined here:
GetAllChildrenRecursive(self, include_self=False)
ShiftTimestampsForward(self, delta_time)
Shifts start time of event by delta_time and also
recursively shifts child events.
UpdateBounds(self)
Updates the start time to be the minimum start time of all
child events and the end time to be the maximum end time of all
child events.
__init__(self, name, start, duration, args=None, parent=None)
__repr__(self)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
end
self_time
Time spent in this function less any time spent in child events.