Home
last modified time | relevance | path

Searched refs:layerName (Results 1 – 6 of 6) sorted by relevance

/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/
DTransitionChange.kt47 val layerName = in format() constant
65 if (layerName != null) { in format()
66 append("layerName=$layerName, ") in format()
/platform_testing/libraries/flicker/utils/test/src/android/tools/traces/surfaceflinger/
DLayersTraceTest.kt92 val layerName = "com.android.server.wm.flicker.testapp.SimpleActivity#0" in canTestLayerOccludedByAppLayerIsOccludedBySplashScreen() constant
93 val component = ComponentNameMatcher("", layerName) in canTestLayerOccludedByAppLayerIsOccludedBySplashScreen()
100 Truth.assertWithMessage("Layer $layerName should be occluded").that(occludedBy).isNotEmpty() in canTestLayerOccludedByAppLayerIsOccludedBySplashScreen()
101 Truth.assertWithMessage("Layer $layerName should not be partially occluded") in canTestLayerOccludedByAppLayerIsOccludedBySplashScreen()
104 Truth.assertWithMessage("Layer $layerName should be occluded") in canTestLayerOccludedByAppLayerIsOccludedBySplashScreen()
DLayersTraceEntryTest.kt143 val layerName = "BackColorSurface#0" in testCanParseNonCroppedLayerWithHWC() constant
147 Truth.assertWithMessage("$layerName should not be visible") in testCanParseNonCroppedLayerWithHWC()
149 .doesNotContain(layerName) in testCanParseNonCroppedLayerWithHWC()
150 val layer = entry.flattenedLayers.first { it.name == layerName } in testCanParseNonCroppedLayerWithHWC()
151 Truth.assertWithMessage("$layerName should be invisible because of HWC region") in testCanParseNonCroppedLayerWithHWC()
/platform_testing/libraries/collectors-helper/jank/src/com/android/helpers/
DSfStatsCollectionHelper.java118 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/utils/src/android/tools/traces/component/
DComponentName.kt110 fun fromLayerName(layerName: String): IComponentName { in toString()
111 var name = layerName in toString()
/platform_testing/libraries/flicker/
DREADME.md137 Result isHiddenByParent(String layerName) {
147 public LayersTraceSubject isHiddenByParent(String layerName) {
148 mChecker.add(entry -> entry.isHiddenByParent(layerName),
149 "isHiddenByParent(" + layerName + ")");