Home
last modified time | relevance | path

Searched refs:layerId (Results 1 – 10 of 10) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DLayerDrawableTest.java64 int layerId = 345; in testSetDrawableByLayerId1() local
65 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId1()
67 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId1()
77 int layerId = 345; in testSetDrawableByLayerId2() local
78 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId2()
80 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId2()
97 int layerId = 345; in setDrawableByLayerId_shouldReturnTrueIfIdWasFound() local
98 layerDrawable.setId(index, layerId); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound()
100 boolean ret = layerDrawable.setDrawableByLayerId(layerId, drawable4000); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DLayerTreeModel.js160 var layerId = payload[i].layerId;
161 var layer = oldLayersById[layerId];
166 this._layersById[layerId] = layer;
170 var lastPaintRect = this._lastPaintRectByLayerId[layerId];
176 console.assert(parent, "missing parent " + parentId + " for layer " + layerId);
204 _layerPainted: function(layerId, clipRect) argument
206 var layer = this._layersById[layerId];
208 this._lastPaintRectByLayerId[layerId] = clipRect;
239 return this._layerPayload.layerId;
484 layerPainted: function(layerId, clipRect) argument
[all …]
DLayers3DView.js207 for (var layerId in this._elementsByLayerId) {
208 if (this._model.layerById(layerId))
210 this._elementsByLayerId[layerId].remove();
211 delete this._elementsByLayerId[layerId];
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorLayerTreeAgent.cpp58 : layerId(0) in LayerSnapshot()
61 LayerSnapshot(int layerId, PassRefPtr<GraphicsContextSnapshot> graphicsSnapshot) in LayerSnapshot()
62 : layerId(layerId) in LayerSnapshot()
66 int layerId; member
113 int layerId = root->platformLayer()->id(); in gatherGraphicsLayers() local
114 layers->addItem(buildObjectForLayer(root, layerIdToNodeIdMap.get(layerId))); in gatherGraphicsLayers()
230 static GraphicsLayer* findLayerById(GraphicsLayer* root, int layerId) in findLayerById() argument
232 if (root->platformLayer()->id() == layerId) in findLayerById()
235 if (GraphicsLayer* layer = findLayerById(root->replicaLayer(), layerId)) in findLayerById()
239 if (GraphicsLayer* layer = findLayerById(root->children()[i], layerId)) in findLayerById()
[all …]
DInspectorLayerTreeAgent.h73 …virtual void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<Str…
74 virtual void makeSnapshot(ErrorString*, const String& layerId, String* snapshotId);
85 GraphicsLayer* layerById(ErrorString*, const String& layerId);
DInspectorTimelineAgent.cpp922 unsigned long long layerId = event.asUInt(InstrumentationEventArguments::LayerId); in onRasterTaskBegin() local
923 ASSERT(layerId); in onRasterTaskBegin()
924 if (!m_layerToNodeMap.contains(layerId)) in onRasterTaskBegin()
929 RefPtr<JSONObject> data = TimelineRecordFactory::createLayerData(m_layerToNodeMap.get(layerId)); in onRasterTaskBegin()
/external/chromium-trace/trace-viewer/src/cc/
Dselection.js83 return this.layer_.layerId;
105 var layer = lthi.activeTree.findLayerWithId(this.layer_.layerId) ||
106 lthi.pendingTree.findLayerWithId(this.layer_.layerId);
124 return this.tile_.layerId;
172 return this.tile.layerId;
Dlayer_impl.js73 return activeTree.findLayerWithId(this.layerId);
80 return pendingTree.findLayerWithId(this.layerId);
Dlayer_picker.js145 var id = layer.layerId;
158 if (layer.layerId == selectedLayerId)
Dlayer_tree_impl.js51 if (layer.layerId == id)