Searched defs:onPause (Results 76 - 97 of 97) sorted by relevance

1234

/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselViewHelper.java290 public void onPause() { method in class:CarouselViewHelper
/frameworks/ex/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java218 public void onPause() { method in class:PhotoViewFragment
219 super.onPause();
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java57 protected void onPause() { method in class:GL2CameraEye
58 super.onPause();
59 mGLView.onPause();
92 public void onPause() { method in class:CamGLSurfaceView
93 super.onPause();
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java179 protected void onPause() { method in class:PhotoViewActivity
182 super.onPause();
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java225 public void onPause() { method in class:PhotoViewFragment
226 super.onPause();
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp368 void AudioSfDecoder::onPause() { function in class:android::AudioSfDecoder
369 SL_LOGV("AudioSfDecoder::onPause()");
370 GenericPlayer::onPause();
H A Dandroid_GenericPlayer.cpp332 onPause();
463 void GenericPlayer::onPause() { function in class:android::GenericPlayer
464 SL_LOGD("GenericPlayer::onPause()");
/frameworks/base/core/java/android/app/
H A DNativeActivity.java214 protected void onPause() { method in class:NativeActivity
215 super.onPause();
H A DFragment.java222 * <li> {@link #onPause} fragment is no longer interacting with the user either
880 * for the duration of {@link #onResume()} and {@link #onPause()} as well.
1329 * tied to {@link Activity#onPause() Activity.onPause} of the containing
1332 public void onPause() { method in class:Fragment
1854 onPause();
1857 + " did not call through to super.onPause()");
H A DActivity.java105 * <li> {@link #onPause} is where you deal with the user leaving your
215 * {@link android.app.Activity#onPause}. During this time the activity is
228 * {@link android.app.Activity#onPause} to commit changes to data and
243 * protected void onPause();
298 * <p>Always followed by <code>onPause()</code>.</td>
300 * <td align="center"><code>onPause()</code></td>
303 * <tr><th align="left" border="0">{@link android.app.Activity#onPause onPause()}</th>
349 * {@link #onPause} method to write any persistent data (such as user edits)
358 * persistent data in {@link #onPause} instea
1279 protected void onPause() { method in class:Activity
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java130 public static final String ON_PAUSE = "onPause";
323 protected void onPause() { method in class:LaunchpadActivity
324 super.onPause();
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java121 public void onPause() { method in class:VideoDumpView
123 super.onPause();
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java180 protected void onPause() { method in class:ScoAudioTest
181 super.onPause();
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DLockScreen.java589 public void onPause() { method in class:LockScreen
591 mStatusViewManager.onPause();
H A DKeyguardStatusViewManager.java287 public void onPause() { method in class:KeyguardStatusViewManager
288 if (DEBUG) Log.v(TAG, "onPause()");
/frameworks/ex/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java217 protected void onPause() { method in class:PhotoViewActivity
220 super.onPause();
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java391 * Dispatch onPause() to fragments.
394 protected void onPause() { method in class:FragmentActivity
395 super.onPause();
H A DFragment.java689 * for the duration of {@link #onResume()} and {@link #onPause()} as well.
1094 * tied to {@link Activity#onPause() Activity.onPause} of the containing
1097 public void onPause() { method in class:Fragment
1621 onPause();
1624 + " did not call through to super.onPause()");
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java178 public void onPause(); method in interface:WebViewProvider
H A DWebView.java1239 public void onPause() { method in class:WebView
1241 mProvider.onPause();
1245 * Resumes a WebView after a previous call to onPause().
1253 * Gets whether this WebView is paused, meaning onPause() was called.
H A DWebViewClassic.java858 // true if onPause has been called (and not onResume)
3476 * See {@link WebView#onPause()}
3479 public void onPause() { method in class:WebViewClassic
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java122 * are required to call {@link #onPause()} when the activity pauses and
337 * <li>{@link #onPause()}
549 public void onPause() { method in class:GLSurfaceView
550 mGLThread.onPause();
1626 public void onPause() { method in class:GLSurfaceView.GLThread
1629 Log.i("GLThread", "onPause tid=" + getId());
1635 Log.i("Main thread", "onPause waiting for mPaused.");

Completed in 1789 milliseconds

1234