Lines Matching refs:this
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 this.samplingRate = samplingRate;
50 var samplingRate = this.samplingRate;
51 var createViewNode = this.createViewNode;
70 var view = this.createView(head);
113 this.head = head;
125 this.traverse(function (node) {
138 nodesToTraverse.concat([this.head]);
162 this.internalFuncName = internalFuncName;
163 this.totalTime = totalTime;
164 this.selfTime = selfTime;
165 this.head = head;
166 this.parent = null;
167 this.children = [];
176 function() { return this.totalTime /
177 (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
185 function() { return this.selfTime /
186 (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
194 function() { return this.totalTime /
195 (this.parent ? this.parent.totalTime : this.totalTime) * 100.0; });
204 node.parent = this;
205 this.children.push(node);
218 this.children.sort(sortFunc);