Ion
|
Copyright 2016 Google Inc. More...
#include "timelineevent.h"
Public Types | |
enum | Type : char { Type::kNode, Type::kEvent, Type::kThread, Type::kFrame, Type::kScope, Type::kRange } |
typedef std::vector < std::unique_ptr < TimelineNode > > | Children |
Public Member Functions | |
TimelineEvent (const std::string &name, const uint32 begin, const uint32 duration, const Json::Value &args) | |
Copyright 2016 Google Inc. More... | |
void | SetArgs (const Json::Value &args) |
Set the argument name and value. More... | |
Type | GetType () const override |
const Json::Value & | GetArgs () const |
Json::Value & | GetArgs () |
void | AddChild (std::unique_ptr< TimelineNode > child) |
Add a node to the children. It becomes the last child. More... | |
void | UpdateDuration (const uint32 end) |
Update the duration of the event given a new end timestamp. More... | |
const std::string & | GetName () const |
uint32 | GetBegin () const |
uint32 | GetEnd () const |
uint32 | GetDuration () const |
double | GetBeginMs () const |
double | GetEndMs () const |
double | GetDurationMs () const |
const TimelineNode * | GetParent () const |
TimelineNode * | GetParent () |
const Children & | GetChildren () const |
const TimelineNode * | GetChild (const size_t i) const |
Copyright 2016 Google Inc.
All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.TimelineEvent is a node in a Timeline that corresponds to a trace event (or a start/end pair of events)
Definition at line 29 of file timelineevent.h.
|
inherited |
Definition at line 30 of file timelinenode.h.
|
stronginherited |
Enumerator | |
---|---|
kNode | |
kEvent | |
kThread | |
kFrame | |
kScope | |
kRange |
Definition at line 31 of file timelinenode.h.
TimelineEvent::TimelineEvent | ( | const std::string & | name, |
const uint32 | begin, | ||
const uint32 | duration, | ||
const Json::Value & | args | ||
) |
Copyright 2016 Google Inc.
All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Definition at line 25 of file timelineevent.cc.
|
inlineinherited |
Add a node to the children. It becomes the last child.
Definition at line 71 of file timelinenode.h.
Referenced by ion::profile::TraceRecorder::AddTraceToTimelineNode(), and ion::profile::CallTraceManager::BuildTimeline().
|
inline |
Definition at line 38 of file timelineevent.h.
|
inline |
Definition at line 39 of file timelineevent.h.
|
inlineinherited |
Definition at line 45 of file timelinenode.h.
|
inlineinherited |
Definition at line 48 of file timelinenode.h.
|
inlineinherited |
Definition at line 54 of file timelinenode.h.
|
inlineinherited |
Definition at line 53 of file timelinenode.h.
Referenced by Timeline::const_iterator::operator++().
|
inlineinherited |
Definition at line 47 of file timelinenode.h.
|
inlineinherited |
Definition at line 50 of file timelinenode.h.
|
inlineinherited |
Definition at line 46 of file timelinenode.h.
Referenced by ion::profile::TraceRecorder::AddTraceToTimelineNode().
|
inlineinherited |
Definition at line 49 of file timelinenode.h.
|
inlineinherited |
Definition at line 43 of file timelinenode.h.
|
inlineinherited |
Definition at line 51 of file timelinenode.h.
Referenced by ion::profile::TraceRecorder::AddTraceToTimelineNode(), and Timeline::const_iterator::operator++().
|
inlineinherited |
Definition at line 52 of file timelinenode.h.
|
inlineoverridevirtual |
Reimplemented from TimelineNode.
Reimplemented in TimelineFrame, TimelineScope, and TimelineRange.
Definition at line 37 of file timelineevent.h.
References TimelineNode::kEvent.
|
inline |
Set the argument name and value.
Definition at line 35 of file timelineevent.h.
|
inlineinherited |
Update the duration of the event given a new end timestamp.
Definition at line 41 of file timelinenode.h.