HomeSort by relevance Sort by last modified time
    Searched refs:_model (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Database.js 39 this._model = model;
96 this._model._agent.getDatabaseTableNames(this._id, sortingCallback);
131 this._model._agent.executeSQL(this._id, query, callback);
194 this._model = model;
203 this._model._addDatabase(new WebInspector.Database(
204 this._model,
DOMStorage.js 39 this._model = model;
86 this._model._agent.getDOMStorageItems(this.id, callback);
95 this._model._agent.setDOMStorageItem(this.id, key, value);
103 this._model._agent.removeDOMStorageItem(this.id, key);
270 this._model = model;
280 this._model._domStorageItemsCleared(storageId);
289 this._model._domStorageItemRemoved(storageId, key);
299 this._model._domStorageItemAdded(storageId, key, value);
310 this._model._domStorageItemUpdated(storageId, key, oldValue, value);
ScriptSnippetModel.js 617 this._model = model;
646 this._model._setScriptSnippetContent(path, newContent);
665 this._model.renameScriptSnippet(path, newName, callback);
676 var filePath = this._model.createScriptSnippet(content);
685 this._model.deleteScriptSnippet(path);
ResourceTreeModel.js 486 this._model = model;
519 return this._model.target();
632 delete this._model._frames[this.id];
633 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.FrameDetached, this);
646 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, resource);
662 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, resource);
  /external/chromium_org/tools/telemetry/telemetry/timeline/
importer.py 9 self._model = model
trace_event_importer.py 60 self._model.metadata.append({
96 return self._model.GetOrCreateProcess(pid)
130 self._model.import_errors.append('Expected counter ' + event['name'] +
155 self._model.import_errors.append(
169 self._model.import_errors.append(
173 self._model.import_errors.append(
182 self._model.import_errors.append(
209 self._model.import_errors.append(
265 self._model.import_errors.append('Unrecognized event phase: ' +
268 return self._model
    [all...]
  /external/chromium_org/tools/perf/measurements/
timeline_controller.py 19 self._model = None
29 self._model = None
49 self._model = TimelineModel(timeline_data)
50 self._renderer_process = self._model.GetRendererProcessFromTabId(tab.id)
83 return self._model
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineOverviewPane.js 45 this._model = model;
95 this._overviewCalculator._setWindow(this._model.minimumRecordTime(), this._model.maximumRecordTime());
187 this._overviewGrid.setResizeEnabled(!!this._model.records().length);
357 this._model = model;
398 var absoluteMin = this._model.minimumRecordTime();
399 var timeSpan = this._model.maximumRecordTime() - absoluteMin;
413 var absoluteMin = this._model.minimumRecordTime();
414 var timeSpan = this._model.maximumRecordTime() - absoluteMin;
TimelinePanel.js 83 this._model = this._tracingTimelineModel;
86 this._model = new WebInspector.TimelineModelImpl(WebInspector.timelineManager);
90 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this);
91 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStopped, this._onRecordingStopped, this);
92 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
93 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingProgress, this._onRecordingProgress, this);
94 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordFilterChanged, this._refreshViews, this);
95 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
97 this._model.target().profilingLock.addEventListener(WebInspector.Lock.Events.StateChanged, this._onProfilingStateChanged, this);
103 this._model.addFilter(new WebInspector.TimelineHiddenFilter())
    [all...]
TimelineMemoryOverview.js 57 var records = this._model.records();
66 var minTime = this._model.minimumRecordTime();
67 var maxTime = this._model.maximumRecordTime();
80 this._model.forAllRecords(calculateMinMaxSizes);
103 this._model.forAllRecords(buildHistogram);
TimelineFlameChart.js 41 this._model = model;
92 var details = WebInspector.TimelineUIUtilsImpl.buildDetailsNode(record, this._linkifier, this._model.loadedFromFile());
135 this._minimumBoundary = this._model.minimumRecordTime();
138 this._cpuThreadRecord = new WebInspector.TimelineModel.RecordImpl(this._model, /** @type {!TimelineAgent.TimelineEvent} */ (cpuThreadRecordPayload), null);
139 this._pushRecord(this._cpuThreadRecord, 0, this.minimumBoundary(), Math.max(this._model.maximumRecordTime(), this.totalTime() + this.minimumBoundary()));
143 var records = this._model.records();
156 this._gpuThreadRecord = new WebInspector.TimelineModel.RecordImpl(this._model, /** @type {!TimelineAgent.TimelineEvent} */ (gpuThreadRecordPayload), null);
157 this._pushRecord(this._gpuThreadRecord, 0, this.minimumBoundary(), Math.max(this._model.maximumRecordTime(), this.totalTime() + this.minimumBoundary()));
206 return Math.max(1000, this._model.maximumRecordTime() - this._model.minimumRecordTime())
    [all...]
TimelineEventOverview.js 75 var timeOffset = this._model.minimumRecordTime();
76 var timeSpan = this._model.maximumRecordTime() - timeOffset;
112 this._model.forAllRecords(appendRecord.bind(this));
MemoryCountersGraph.js 94 var records = this._model.records();
TimelineModelImpl.js 300 this._model = model;
301 var bindings = this._model._bindings;
399 return this._model.target();
562 this._model = model;
598 this._model.reset();
607 this._model.reset();
612 this._model._addRecord(items[i]);
617 this._model._loadedFromFile = true;
629 this._model = model;
647 this._model.reset()
    [all...]
TimelineModel.js 181 filter._model = this;
442 this._model;
457 this._model._filterChanged();
TimelineView.js 46 this._model = model;
130 var eventDividerRecords = this._model.eventDividerRecords();
297 var records = this._model.records();
462 var windowStartTime = this._windowStartTime || this._model.minimumRecordTime();
463 var windowEndTime = this._windowEndTime || this._model.maximumRecordTime();
537 var windowStartTime = startIndex ? recordsInWindow[startIndex].startTime() : this._model.minimumRecordTime();
585 listRowElement.row.update(record, visibleTop, this._model.loadedFromFile(), this._uiUtils);
618 this._refreshUtilizationBars(WebInspector.UIString("CPU"), this._model.mainThreadTasks(), this._cpuBarsElement);
620 this._refreshUtilizationBars(WebInspector.UIString("GPU"), this._model.gpuThreadTasks(), this._gpuBarsElement);
    [all...]
CountersGraph.js 45 this._model = model;
46 this._calculator = new WebInspector.TimelineCalculator(this._model);
186 if (!this._model.isVisible(record))
197 this._model.forAllRecords(null, findRecordToReveal.bind(this));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayersPanel.js 49 this._model = new WebInspector.LayerTreeModel(this._target);
50 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._onLayerTreeUpdated, this);
51 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerPainted, this._onLayerPainted, this);
90 this._model.enable();
95 this._model.disable();
111 this._model.setLayerTree(layerTree);
117 var layerTree = this._model.layerTree();
132 this._layers3DView.setLayerTree(this._model.layerTree());
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
controllers.js 151 this._model = model;
157 var expectedFailures = results.expectedFailuresByTest(this._model.resultsByBuilder);
175 results.expectedFailuresByTest(this._model.resultsByBuilder),
191 this._model = model;
233 this._resultsFilter(this._model.resultsByBuilder),
249 this._resultsFilter(this._model.resultsByBuilder),
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ApplicationCacheItemsView.js 34 this._model = model;
64 var status = this._model.frameManifestStatus(frameId);
67 this.updateNetworkState(this._model.onLine);
151 this._model.requestApplicationCache(this._frameId, this._updateCallback.bind(this));
IndexedDBViews.js 114 this._model = model;
335 this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
337 this._model.loadObjectStoreData(this._databaseId, this._objectStore.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
355 this._model.clearObjectStore(this._databaseId, this._objectStore.name, cleared.bind(this));
  /external/chromium_org/tools/json_schema_compiler/
cpp_bundle_generator.py 46 self._model = model
118 for namespace in self._model.namespaces.values():
184 for namespace in self._bundle._model.namespaces.values():
272 namespace = self._bundle._model.namespaces[api.get('namespace')]
292 namespace = self._bundle._model.namespaces[api.get('namespace')]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScreencastView.js 554 this._model = null;
575 this._model = this._scaleModel(model);
610 var model = this._model;
749 this._nodeWidthElement.textContent = this._model.width;
750 this._nodeHeightElement.textContent = this._model.height;
752 var marginQuad = this._model.margin;
756 var anchorTop = this._model.margin[1];
757 var anchorBottom = this._model.margin[7];
763 var boxX = Math.max(2, this._model.margin[0]);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
queries.py 116 model = self._model(options, port_name, tests)
148 def _model(self, options, port_name, tests): member in class:PrintExpectations

Completed in 525 milliseconds

1 2