Home | History | Annotate | Download | only in js

Lines Matching refs:profile

33  * by V8 and produce an internal profile representation which is used
34 * for building profile views in "Profiles" tab.
39 * Creates a Profile View builder object compatible with WebKit Profiler UI.
61 * Constructs a Profile View node object for displaying in WebKit Profiler UI.
66 * profile they can be either callees or callers.)
69 * @param {devtools.profiler.ProfileView.Node} head Profile view head.
122 * Ancestor of a profile object that leaves out only JS-related functions.
127 devtools.profiler.Profile.call(this);
129 devtools.profiler.JsProfile.prototype.__proto__ = devtools.profiler.Profile.prototype;
153 * Profiler processor. Consumes profiler log and builds profile views.
157 * that receives a new processed profile.
206 if (devtools.profiler.Profile.VERSION === 2) {
216 * Callback that is called when a new profile is encountered in the log.
228 * Callback that is called when a profile has been processed and is ready
235 * The current profile.
241 * Builder of profile views. Created during "profiler,begin" event processing.
247 * Next profile id.
298 * Sets profile processing callbacks.
330 * Sets new profile callback.
535 * Creates a profile for further displaying in ProfileView.
539 var profile = this.viewBuilder_.buildView(this.currentProfile_.getTopDownProfile());
540 profile.uid = this.profileId_++;
541 profile.title = UserInitiatedProfileName + "." + profile.uid;
542 return profile;