Lines Matching full:eventdata
188 createImporter_: function(eventData) {
191 if (TraceModel.importerConstructors_[i].canImport(eventData)) {
198 'Could not find an importer for the provided eventData.');
201 this, eventData);
206 * Imports the provided traces into the model. The eventData type
211 * The primary trace is provided via the eventData variable. If multiple
215 * @param {Array} traces An array of eventData to be imported. Each
216 * eventData should correspond to a single trace file and will be handled by
316 TraceModelEmptyImporter.canImport = function(eventData) {
317 if (eventData instanceof Array && eventData.length == 0)
319 if (typeof(eventData) === 'string' || eventData instanceof String) {
320 return eventData.length == 0;