OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timestamps_
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/v8/src/
profile-generator.h
187
TimeTicks sample_timestamp(int index) const { return
timestamps_
.at(index); }
202
List<TimeTicks>
timestamps_
;
member in class:v8::internal::CpuProfile
profile-generator.cc
342
timestamps_
.Add(timestamp);
/external/chromium-trace/
script.js
28
base.exportTo("tracing.trace_model",function(){function d(a,c){this.guid_=base.GUID.allocate();this.timestamp_=a;this.value_=c}function b(a,c){this.guid_=base.GUID.allocate();this.name_=a;this.color_=c;this.
timestamps_
=[];this.samples_=[]}d.prototype={__proto__:Object.prototype,get value(){return this.value_},set timestamp(a){this.timestamp_=a},toJSON:function(){for(var a={},c=Object.keys(this),e=0;e<c.length;e++){var f=c[e];"function"!=typeof this[f]&&(a[f]="parent"==f?this[f].guid:this[f])}return a}};
29
b.prototype={__proto__:Object.prototype,toJSON:function(){for(var a={},c=Object.keys(this),e=0;e<c.length;e++){var f=c[e];"function"!=typeof this[f]&&(a[f]="parent"==f?this[f].guid:this[f])}return a},get length(){return this.
timestamps_
.length},get name(){return this.name_},get color(){return this.color_},get samples(){return this.samples_},get timestamps(){return this.
timestamps_
},getSample:function(a){return this.samples_[a]},getTimestamp:function(a){return this.
timestamps_
[a]},addSample:function(a,
30
c){this.
timestamps_
.push(a);this.samples_.push(new d(a,c))},getStatistics:function(a){for(var c=0,e=Number.MAX_VALUE,f=-Number.MAX_VALUE,b=0;b<a.length;++b)var h=this.getSample(a[b]).value,c=c+h,e=Math.min(h,e),f=Math.max(h,f);return{min:e,max:f,avg:c/a.length,start:this.getSample(a[0]).value,end:this.getSample(a.length-1).value}},shiftTimestampsForward:function(a){for(var c=0;c<this.
timestamps_
.length;++c)this.
timestamps_
[c]+=a,this.samples_[c].timestamp=this.
timestamps_
[c]}};return{CounterSeries:b}});
[
all
...]
Completed in 1106 milliseconds