HomeSort by relevance Sort by last modified time
    Searched refs:PAUSE (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/Source/WebKit/android/
RenderSkinMediaButton.h 49 enum { PAUSE, PLAY, MUTE, REWIND, FORWARD, FULLSCREEN, SPINNER_OUTER, SPINNER_INNER , VIDEO, BACKGROUND_SLIDER, SLIDER_TRACK, SLIDER_THUMB };
RenderSkinMediaButton.cpp 54 { "ic_media_pause.png", 0, 0}, // PAUSE
124 case PAUSE:
  /development/samples/Snake/src/com/example/android/snake/
Snake.java 62 mSnakeView.setMode(SnakeView.PAUSE);
70 // Pause the game along with the activity
71 mSnakeView.setMode(SnakeView.PAUSE);
SnakeView.java 48 public static final int PAUSE = 0;
239 setMode(PAUSE);
273 if (mMode == PAUSE) {
341 if (newMode == PAUSE) {
  /frameworks/base/drm/java/android/drm/
DrmStore.java 108 public static final int PAUSE = 0x02;
120 case PAUSE:
  /frameworks/base/media/libmedia/
IAudioTrack.cpp 37 PAUSE,
84 virtual void pause() function in class:android::BpAudioTrack
88 remote()->transact(PAUSE, data, &reply);
151 case PAUSE: {
153 pause();
IMediaPlayer.cpp 42 PAUSE,
158 status_t pause() function in class:android::BpMediaPlayer
162 remote()->transact(PAUSE, data, &reply);
367 case PAUSE: {
369 reply->writeInt32(pause());
  /frameworks/base/include/drm/
drm_framework_common.h 141 static const int PAUSE = 0x02;
  /frameworks/base/telephony/java/com/android/internal/telephony/
Connection.java 245 PAUSE /* The post dial string playback is pausing for a
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 65 String.format("1 (700).555-41%c1234", PhoneNumberUtils.PAUSE)));
72 assertEquals(String.format("%c1234", PhoneNumberUtils.PAUSE),
74 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.PAUSE)));
78 assertEquals(String.format("%c1234%c%cN", PhoneNumberUtils.WAIT, PhoneNumberUtils.PAUSE,
82 PhoneNumberUtils.PAUSE,
437 c = PhoneNumberUtils.PAUSE;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 596 // will be released after any pause-dial is completed
622 } else if (c == PhoneNumberUtils.PAUSE) {
623 setPostDialState(PostDialState.PAUSE);
626 // pause again for 2 seconds before sending any
652 int pIndex = subStr.indexOf(PhoneNumberUtils.PAUSE);
702 // We were holding a wake lock until pause-dial was complete, so give it up now
786 s == PostDialState.PAUSE) {
823 return c == PhoneNumberUtils.PAUSE;
830 // This function is to find the next PAUSE character index if
831 // multiple pauses in a row. Otherwise it finds the next non PAUSE o
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 60 PAUSE,
275 return mAction == SmilPlayerAction.PAUSE;
319 public synchronized void pause() { method in class:SmilPlayer
321 mAction = SmilPlayerAction.PAUSE;
481 Log.v(TAG, "[PAUSE] " + " at " + mCurrentTime
683 mAction = SmilPlayerAction.PAUSE;
693 mAction = SmilPlayerAction.PAUSE;
707 mAction = SmilPlayerAction.PAUSE;
  /device/moto/stingray/whisper/
SHA_CommMarshalling.h 47 #define PAUSE 0x01
147 // Pause command
  /external/libvpx/vp8/common/
threading.h 63 #define pause(voidpara) __asm PAUSE macro
  /packages/apps/Mms/src/com/android/mms/model/
AudioModel.java 138 // if the Music player app is playing audio, we should pause that so it won't
144 action = MediaAction.PAUSE;
MediaModel.java 66 PAUSE,
345 i.putExtra("command", "pause");
VideoModel.java 168 // if the Music player app is playing audio, we should pause that so it won't
179 action = MediaAction.PAUSE;
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 169 } else if (action == MediaAction.PAUSE) {
241 } else if (action == MediaAction.PAUSE) {
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 55 * 'p' --- GSM pause character, same as comma
59 public static final char PAUSE = ',';
111 /** True if c is ISO-LATIN characters 0-9, *, # , +, WILD, WAIT, PAUSE */
115 || c == WILD || c == WAIT || c == PAUSE;
119 * post-dial string (eg this is PAUSE or WAIT)
123 return c == PAUSE || c == WAIT;
200 * separators (pause or wait), but without non-dialable characters.
294 * Converts pause and tonewait pause characters
296 * RFC 3601 says pause is 'p' and tonewait is 'w'
    [all...]
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 57 private static final int PAUSE = 102;
133 // When a WebView is paused, we also want to pause the video in it.
185 // we need to pause the old one and re-create a new media player
231 public static void pause(HTML5VideoViewProxy proxy) { method in class:HTML5VideoViewProxy.VideoPlayer
233 mHTML5VideoView.pause();
332 case PAUSE: {
333 VideoPlayer.pause(this);
628 * Pause the playback.
630 public void pause() { method in class:HTML5VideoViewProxy
631 Message message = obtainMessage(PAUSE);
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
PreviewPlayerBase.cpp 934 status_t PreviewPlayerBase::pause() { function in class:android::PreviewPlayerBase
954 mAudioPlayer->pause(true /* playPendingSamples */);
956 mAudioPlayer->pause();
966 Playback::PAUSE, 0);
    [all...]
  /external/qemu/android/skin/
keyset.c 85 _KEYSYM1_(PAUSE) \
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 310 RenderSkinMediaButton::Draw(getCanvasFromInfo(paintInfo), rect, RenderSkinMediaButton::PAUSE, translucent);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmConnection.java 538 } else if (c == PhoneNumberUtils.PAUSE) {
547 // We don't need to pause here, but wait for just a bit anyway
553 // pause again for 3 seconds (\u00B1 20 %) before sending any
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 1086 status_t AwesomePlayer::pause() function in class:android::AwesomePlayer
    [all...]

Completed in 1258 milliseconds

1 2