Home
last modified time | relevance | path

Searched refs:ACTIVITY (Results 1 – 4 of 4) sorted by relevance

/cts/tests/app/app/src/android/app/stubs/
DActivityCallbacksTestActivity.java56 ACTIVITY, enumConstant
273 collectEvent(Source.ACTIVITY, Event.ON_PRE_CREATE); in onCreate()
275 collectEvent(Source.ACTIVITY, Event.ON_POST_CREATE); in onCreate()
280 collectEvent(Source.ACTIVITY, Event.ON_PRE_START); in onStart()
282 collectEvent(Source.ACTIVITY, Event.ON_POST_START); in onStart()
287 collectEvent(Source.ACTIVITY, Event.ON_PRE_RESUME); in onResume()
289 collectEvent(Source.ACTIVITY, Event.ON_POST_RESUME); in onResume()
294 collectEvent(Source.ACTIVITY, Event.ON_PRE_PAUSE); in onPause()
296 collectEvent(Source.ACTIVITY, Event.ON_POST_PAUSE); in onPause()
301 collectEvent(Source.ACTIVITY, Event.ON_PRE_STOP); in onStop()
[all …]
/cts/libs/vogar-expect/src/vogar/
DModeId.java20 DEVICE, JVM, ACTIVITY, SIM, HOST; enumConstant
23 return this != ACTIVITY; in acceptsVmArgs()
31 return this == DEVICE || this == ACTIVITY || this == SIM || this == HOST; in requiresAndroidSdk()
/cts/hostsidetests/gputools/src/android/gputools/cts/
DCtsRootlessGpuDebugHostTest.java91 …private static final String ACTIVITY = "android.rootlessgpudebug.app.RootlessGpuDebugDeviceActivit… field in CtsRootlessGpuDebugHostTest
332 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadVulkan()
368 getDevice().executeAdbCommand("shell", "am", "start", "-n", RELEASE_APP + "/" + ACTIVITY); in testReleaseLayerLoadVulkan()
398 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugNotEnabledVulkan()
428 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugWrongAppVulkan()
458 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugNoLayersEnabledVulkan()
482 getDevice().executeAdbCommand("shell", "am", "start", "-n", RELEASE_APP + "/" + ACTIVITY); in testSystemPropertyEnableVulkan()
522 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testSystemPropertyIgnoreVulkan()
550 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadExternalVulkan()
585 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadGLES()
[all …]
/cts/tests/app/src/android/app/cts/
DActivityCallbacksTest.java237 expectedEvents.add(new Pair<>(Source.ACTIVITY, preEvent)); in addNestedEvents()
251 expectedEvents.add(new Pair<>(Source.ACTIVITY, postEvent)); in addNestedEvents()