Home | History | Annotate | Download | only in tools

Lines Matching refs:dispatch

188  * Returns whether a particular dispatch must be skipped.
190 * @param {!Object} dispatch Dispatch record.
191 * @return {boolean} True if dispatch must be skipped.
193 devtools.profiler.LogReader.prototype.skipDispatch = function(dispatch) {
199 * Does a dispatch of a log record.
205 // Obtain the dispatch.
210 var dispatch = this.dispatchTable_[command];
212 if (dispatch === null || this.skipDispatch(dispatch)) {
218 for (var i = 0; i < dispatch.parsers.length; ++i) {
219 var parser = dispatch.parsers[i];
232 dispatch.processor.apply(this, parsedFields);
270 var dispatch = this.dispatchTable_[event];
271 if (dispatch && dispatch.backrefs) {