Searched refs:layerName (Results 1 – 6 of 6) sorted by relevance
/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/layers/ |
D | LayersTraceTest.kt | 103 val layerName = "com.android.server.wm.flicker.testapp.SimpleActivity#0" in <lambda>() constant 106 val layer = entry.getLayerWithBuffer(layerName) in <lambda>() 109 Truth.assertWithMessage("Layer $layerName should not be occluded") in <lambda>() 111 Truth.assertWithMessage("Layer $layerName should be partially occluded") in <lambda>() 113 Truth.assertWithMessage("Layer $layerName should be partially occluded") in <lambda>()
|
D | LayersTraceEntryTest.kt | 133 val layerName = "BackColorSurface#0" in testCanParseNonCroppedLayerWithHWC() constant 136 Truth.assertWithMessage("$layerName should not be visible") in testCanParseNonCroppedLayerWithHWC() 138 .doesNotContain(layerName) in testCanParseNonCroppedLayerWithHWC() 139 val layer = entry.flattenedLayers.first { it.name == layerName } in testCanParseNonCroppedLayerWithHWC() 140 Truth.assertWithMessage("$layerName should be invisible because of HWC region") in testCanParseNonCroppedLayerWithHWC()
|
/platform_testing/libraries/collectors-helper/jank/src/com/android/helpers/ |
D | SfStatsCollectionHelper.java | 118 String layerName = layerPairs.get("layerName"); in getMetrics() local 125 constructKey(SFSTATS_METRICS_PREFIX, layerName, "TOTAL_FRAMES"), in getMetrics() 128 Log.i(LOG_TAG, "totalFrames not found for layer name: " + layerName); in getMetrics() 133 constructKey(SFSTATS_METRICS_PREFIX, layerName, "DROPPED_FRAMES"), in getMetrics() 136 Log.i(LOG_TAG, "droppedFrames not found for layer name: " + layerName); in getMetrics() 141 constructKey(SFSTATS_METRICS_PREFIX, layerName, "AVERAGE_FPS"), in getMetrics() 144 Log.i(LOG_TAG, "averageFPS not found for layer name: " + layerName); in getMetrics()
|
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/traces/layers/ |
D | LayerSubject.kt | 55 private val layerName: String? = null in <lambda>() constant 78 listOf(Fact.fact("Layer name", layerName)) in <lambda>() 91 return LayerSubject(fm, parent, timestamp, layer, layerName) in <lambda>() 105 check("$layerName does not exists").that(layer).isNotNull() in <lambda>()
|
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/ |
D | WindowManagerConditionsFactory.kt | 163 layerName: String in <lambda>() 165 Condition("isLayerVisible[$layerName]") { in <lambda>() 166 it.layerState.isVisible(layerName) in <lambda>()
|
/platform_testing/libraries/flicker/ |
D | README.md | 139 Result isHiddenByParent(String layerName) { 149 public LayersTraceSubject isHiddenByParent(String layerName) { 150 mChecker.add(entry -> entry.isHiddenByParent(layerName), 151 "isHiddenByParent(" + layerName + ")");
|