Lines Matching defs:report
11 report = {}, //Profiling information for functions
22 * Creates a report object with the given name.
23 * @param {String} name The name to store for the report object.
29 report[name] = {
36 return report[name];
54 var functionData /*:Object*/ = report[name];
94 * Removes all report data from the profiler.
95 * @param {String} name (Optional) The name of the report to clear. If
96 * omitted, then all report data is cleared.
103 delete report[name];
106 report = {};
124 * @param {String} name The name of the report for the function.
156 //create the report
200 //create report if necessary
201 if (!report[name]){
262 return report[name].avg;
273 return report[name].calls;
287 return report[name].max;
301 return report[name].min;
313 return report[name];
324 return report[name];
342 for (var name in report){
343 if (filter(report[name])){
344 fullReport[name] = report[name];
371 * in the profile report. The original function is stored on the container object.
373 * is the name of the function that is stored in the report.
431 * @param {String} name The name of the object to profile (shows up in report).
461 * is the name of the function that is stored in the report.
477 * is the name of the function that is stored in the report.