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

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
LayersPanel.js 52 this._model = new WebInspector.LayerTreeModel();
53 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._onLayerTreeUpdated, this);
57 this._layerTree = new WebInspector.LayerTree(this._model, this.sidebarTree);
64 this._layers3DView = new WebInspector.Layers3DView(this._model);
74 this._layerDetailsView = new WebInspector.LayerDetailsView(this._model);
76 this._paintProfilerView = new WebInspector.PaintProfilerView(this._model, this._layers3DView);
90 this._model.enable();
95 this._model.disable();
101 if (this._currentlySelectedLayer && !this._model.layerById(this._currentlySelectedLayer.id()))
103 if (this._currentlyHoveredLayer && !this._model.layerById(this._currentlyHoveredLayer.id())
    [all...]
TimelineOverviewPane.js 45 this._model = model;
104 this._overviewCalculator.setWindow(this._model.minimumRecordTime(), this._model.maximumRecordTime());
167 return this._windowStartTime || this._model.minimumRecordTime();
172 return this._windowEndTime < Infinity ? this._windowEndTime : this._model.maximumRecordTime();
211 this._overviewGrid.setResizeEnabled(this._model.records.length);
317 this._model = model;
332 var absoluteMin = this._model.minimumRecordTime();
333 var timeSpan = this._model.maximumRecordTime() - absoluteMin;
346 var absoluteMin = this._model.minimumRecordTime()
    [all...]
Database.js 35 this._model = model;
186 this._model = model;
195 this._model._addDatabase(new WebInspector.Database(
196 this._model,
TimelineMemoryOverview.js 50 var records = this._model.records;
57 var minTime = this._model.minimumRecordTime();
58 var maxTime = this._model.maximumRecordTime();
LayerTree.js 40 this._model = model;
45 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._update.bind(this));
101 var parent = layer === this._model.contentRoot() ? this._treeOutline : this._treeOutline.getCachedTreeElement(layer.parent());
116 if (this._model.contentRoot())
117 this._model.forEachLayer(updateLayer.bind(this), this._model.contentRoot());
TimelineFrameController.js 41 this._model = model;
44 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
45 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
136 frame.startTimeOffset = this._model.recordOffsetInSeconds(record);
145 this._model.removeEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
146 this._model.removeEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
Layers3DView.js 42 this._model = model;
43 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._update, this);
44 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerPainted, this._onLayerPainted, this);
157 var root = this._model.contentRoot();
191 if (!this._model.contentRoot()) {
208 if (this._model.layerById(layerId))
214 this._model.forEachLayer(updateLayer.bind(this), this._model.contentRoot());
255 var isContentRoot = layer === this._model.contentRoot();
DOMStorage.js 264 this._model = model;
274 this._model._domStorageItemsCleared(storageId);
283 this._model._domStorageItemRemoved(storageId, key);
293 this._model._domStorageItemAdded(storageId, key, value);
304 this._model._domStorageItemUpdated(storageId, key, oldValue, value);
LayerDetailsView.js 43 this._model = model;
44 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._onLayerTreeUpdated, this);
45 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerPainted, this._onLayerPainted, this);
TimelineEventOverview.js 67 var timeOffset = this._model.minimumRecordTime();
68 var timeSpan = this._model.maximumRecordTime() - timeOffset;
101 WebInspector.TimelinePresentationModel.forAllRecords(this._model.records, appendRecord.bind(this));
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));
TimelineModel.js 356 this._model = model;
392 this._model.reset();
401 this._model.reset();
406 this._model._addRecord(items[i]);
420 this._model = model;
438 this._model.reset();
460 this._model.reset();
ScriptSnippetModel.js 609 this._model = model;
647 this._model._setScriptSnippetContent(path, newContent);
666 this._model.renameScriptSnippet(path, newName, callback);
677 var filePath = this._model.createScriptSnippet(content);
686 this._model.deleteScriptSnippet(path);
IndexedDBViews.js 115 this._model = model;
346 this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
348 this._model.loadObjectStoreData(this._databaseId, this._objectStore.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
366 this._model.clearObjectStore(this._databaseId, this._objectStore.name, cleared.bind(this));
ScreencastView.js 446 this._model = null;
468 this._model = this._scaleModel(model);
503 var model = this._model;
642 this._nodeWidthElement.textContent = this._model.width;
643 this._nodeHeightElement.textContent = this._model.height;
645 var marginQuad = this._model.margin;
649 var anchorTop = this._model.margin[1];
650 var anchorBottom = this._model.margin[7];
656 var boxX = Math.max(2, this._model.margin[0]);
    [all...]
TimelinePanel.js 57 this._model = new WebInspector.TimelineModel();
58 this._calculator = new WebInspector.TimelineCalculator(this._model);
59 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onTimelineEventRecorded, this);
60 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
61 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this);
62 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStopped, this._onRecordingStopped, this);
72 this._overviewPane = new WebInspector.TimelineOverviewPane(this._model);
137 this._memoryStatistics = new WebInspector.DOMCountersGraph(this, this._model);
369 this._model.saveToFile();
389 this._model.loadFromFile(file, progressIndicator)
    [all...]
ResourceTreeModel.js 468 this._model = model;
606 delete this._model._frames[this.id];
607 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.FrameDetached, this);
620 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, resource);
636 this._model.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, resource);
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
importer.py 9 self._model = model
trace_event_importer.py 54 self._model.metadata.append({
84 return self._model.GetOrCreateProcess(pid)
118 self._model.import_errors.append('Expected counter ' + event['name'] +
143 self._model.import_errors.append(
157 self._model.import_errors.append(
161 self._model.import_errors.append(
170 self._model.import_errors.append(
197 self._model.import_errors.append(
247 self._model.import_errors.append('Unrecognized event phase: ' +
250 return self._model
    [all...]
  /external/chromium_org/tools/perf/metrics/
timeline.py 28 self._model = None
31 self._model = None
43 self._model = trace_result.AsTimelineModel()
46 self._model = tab.timeline_model
50 return self._model.GetRendererProcessFromTab(tab)
52 return self._model.GetAllProcesses()[0]
64 assert self._model
134 for thread in self._model.GetAllThreads():
160 time_as_percentage = (category_time / self._model.bounds.bounds) * 100
166 time_as_percentage = (category_time / self._model.bounds.bounds) * 10
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
controllers.js 140 this._model = model;
146 var expectedFailures = results.expectedFailuresByTest(this._model.resultsByBuilder);
164 results.expectedFailuresByTest(this._model.resultsByBuilder),
180 this._model = model;
222 this._resultsFilter(this._model.resultsByBuilder),
238 this._resultsFilter(this._model.resultsByBuilder),
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py     [all...]
  /external/chromium_org/tools/json_schema_compiler/
cpp_bundle_generator.py 45 self._model = model
116 for namespace in self._model.namespaces.values():
182 for namespace in self._bundle._model.namespaces.values():
269 namespace = self._bundle._model.namespaces[api.get('namespace')]
284 namespace = self._bundle._model.namespaces[api.get('namespace')]
cpp_type_generator_test.py 15 self._model = model
21 return self._model.namespaces[parts[0]]
  /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 578 milliseconds

1 2