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/hostsidetests/gputools/src/android/gputools/cts/
DCtsRootlessGpuDebugHostTest.java90 …private static final String ACTIVITY = "android.rootlessgpudebug.app.RootlessGpuDebugDeviceActivit… field in CtsRootlessGpuDebugHostTest
331 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadVulkan()
367 getDevice().executeAdbCommand("shell", "am", "start", "-n", RELEASE_APP + "/" + ACTIVITY); in testReleaseLayerLoadVulkan()
397 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugNotEnabledVulkan()
427 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugWrongAppVulkan()
457 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugNoLayersEnabledVulkan()
481 getDevice().executeAdbCommand("shell", "am", "start", "-n", RELEASE_APP + "/" + ACTIVITY); in testSystemPropertyEnableVulkan()
521 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testSystemPropertyIgnoreVulkan()
549 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadExternalVulkan()
584 getDevice().executeAdbCommand("shell", "am", "start", "-n", DEBUG_APP + "/" + ACTIVITY); in testDebugLayerLoadGLES()
[all …]
/cts/libs/vogar-expect/src/vogar/expect/
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/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()