HomeSort by relevance Sort by last modified time
    Searched defs:layerId (Results 1 - 3 of 3) sorted by null

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LayerDrawableTest.java 64 int layerId = 345;
65 layerDrawable.setId(index, layerId);
67 layerDrawable.setDrawableByLayerId(layerId, drawable4000);
77 int layerId = 345;
78 layerDrawable.setId(index, layerId);
80 layerDrawable.setDrawableByLayerId(layerId, drawable4000);
97 int layerId = 345;
98 layerDrawable.setId(index, layerId);
100 boolean ret = layerDrawable.setDrawableByLayerId(layerId, drawable4000);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 58 : layerId(0)
61 LayerSnapshot(int layerId, PassRefPtr<GraphicsContextSnapshot> graphicsSnapshot)
62 : layerId(layerId)
66 int layerId;
113 int layerId = root->platformLayer()->id();
114 layers->addItem(buildObjectForLayer(root, layerIdToNodeIdMap.get(layerId)));
230 static GraphicsLayer* findLayerById(GraphicsLayer* root, int layerId)
232 if (root->platformLayer()->id() == layerId)
235 if (GraphicsLayer* layer = findLayerById(root->replicaLayer(), layerId))
    [all...]
InspectorTimelineAgent.cpp     [all...]

Completed in 71 milliseconds