Home | History | Annotate | Download | only in tools

Lines Matching defs:Driver

146   function Driver() {
151 Inherits(Driver, ProfileTestDriver);
153 Driver.prototype.enter = function(func) {
160 Driver.superClass_.enter.call(this, func);
167 Driver.prototype.stay = function() {
170 Driver.superClass_.stay.call(this);
178 Driver.prototype.leave = function() {
179 Driver.superClass_.leave.call(this);
184 var testDriver = new Driver();
226 function Driver() {
232 Inherits(Driver, ProfileTestDriver);
234 Driver.prototype.increment = function(func, self, total) {
242 Driver.prototype.incrementTotals = function() {
254 Driver.prototype.enter = function(func) {
255 Driver.superClass_.enter.call(this, func);
261 Driver.prototype.stay = function() {
262 Driver.superClass_.stay.call(this);
267 Driver.prototype.leave = function() {
268 Driver.superClass_.leave.call(this);
272 Driver.prototype.extractRoot = function() {
278 var testDriver = new Driver();