Searched refs:DEBUG_LIFECYCLE (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | TestedScreen.java | 40 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "CREATE tested " in onCreate() 47 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "Finishing tested " in onCreate() 53 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "Finishing tested " in onCreate() 69 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "RESUME tested " in onResume() 86 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "STOP tested " in onStop() 102 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "Finishing tested " 119 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "Finishing tested " in queueIdle()
|
D | LaunchpadActivity.java | 172 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "CREATE lauchpad " in onCreate() 203 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "START lauchpad " in onStart() 218 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "RESUME lauchpad " in onResume() 325 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "PAUSE lauchpad " in onPause() 333 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "STOP lauchpad " in onStop() 366 if (ActivityTests.DEBUG_LIFECYCLE) Log.v("test", "DESTROY lauchpad " in onDestroy()
|
D | ActivityTests.java | 22 public static final boolean DEBUG_LIFECYCLE = false; field in ActivityTests
|
/frameworks/base/core/java/android/app/ |
D | Activity.java | 692 private static final boolean DEBUG_LIFECYCLE = false; field in Activity 944 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onCreate " + this + ": " + savedInstanceState); in onCreate() 1185 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onStart " + this); in onStart() 1250 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onResume " + this); in onResume() 1418 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onSaveInstanceState " + this + ": " + outState); in performSaveInstanceState() 1434 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onSaveInstanceState " + this + ": " + outState + in performSaveInstanceState() 1586 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onPause " + this); in onPause() 1772 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onStop " + this); in onStop() 1810 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onDestroy " + this); in onDestroy() 1951 if (DEBUG_LIFECYCLE) Slog.v(TAG, "onConfigurationChanged " + this + ": " + newConfig); in onConfigurationChanged() [all …]
|