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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
SDL_bsdaudio.c 256 "[play/record info]\n"
270 info.play.buffer_size,
271 info.play.sample_rate,
272 info.play.channels,
273 info.play.precision,
274 info.play.encoding,
275 info.play.seek,
276 info.play.samples,
277 info.play.eof,
278 info.play.pause ? "yes" : "no"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_mcsn.h 37 unsigned short play; /* Replay capability */ member in struct:__anon13077
  /packages/apps/Camera2/src/com/android/camera/
SoundClips.java 42 public void play(int action); method in interface:SoundClips.Player
85 public synchronized void play(int action) { method in class:SoundClips.MediaActionSoundPlayer
88 mSound.play(MediaActionSound.FOCUS_COMPLETE);
91 mSound.play(MediaActionSound.START_VIDEO_RECORDING);
94 mSound.play(MediaActionSound.STOP_VIDEO_RECORDING);
97 mSound.play(MediaActionSound.SHUTTER_CLICK);
161 public synchronized void play(int action) { method in class:SoundClips.SoundPoolPlayer
163 Log.e(TAG, "Resource ID not found for action:" + action + " in play().");
169 // Not loaded yet, load first and then play when the loading is complete.
176 mSoundPool.play(mSoundIDs[index], 1f, 1f, 0, 0, 1f)
    [all...]
SoundPlayer.java 51 * Play the sound with the given resource. The resource has to be loaded
54 public void play(int resourceId, float volume) { method in class:SoundPlayer
59 mSoundPool.play(soundId, volume, volume, 0 /* priority */, 0 /* loop */, 1 /* rate */);
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
play.js 8 // Performs the "Play" action on media satisfying selector.
12 play(mediaElements[i]);
16 function play(element) { function
20 throw new Error('Can not play non HTML5 media elements.');
31 element.play();
play_unittest.py 7 from telemetry.page.actions import play namespace
23 """Tests that with no selector Play action plays first video element."""
24 action = play.PlayAction(playing_event_timeout_in_seconds=60)
36 """Tests that Play action plays video element matching selector."""
37 action = play.PlayAction(selector='#video_1',
50 """Tests that Play action plays all video elements with selector='all'."""
51 action = play.PlayAction(selector='all',
64 """Tests that wait_for_playing timeouts if video does not play."""
65 action = play.PlayAction(selector='#video_1',
75 action = play.PlayAction(selector='#video_1'
    [all...]
  /frameworks/base/media/java/android/media/
IRingtonePlayer.aidl 28 void play(IBinder token, in Uri uri, in AudioAttributes aa);
MediaActionSound.java 28 * camera2 API does not play any sounds on its own for any capture or video recording actions.</p>
30 * <p>With the older {@link android.hardware.Camera} API, use this class to play an appropriate
37 * <p>There is no need to play sounds when using
40 * as the Android framework will play the appropriate sounds when needed for
63 * @see #play
71 * @see #play
79 * @see #play
87 * @see #play
111 * played later by {@link #play}.
115 * @see #play
162 public synchronized void play(int soundName) { method in class:MediaActionSound
    [all...]
  /packages/apps/Camera/src/com/android/camera/
SoundClips.java 39 public void play(int action); method in interface:SoundClips.Player
75 public synchronized void play(int action) { method in class:SoundClips.MediaActionSoundPlayer
78 mSound.play(MediaActionSound.FOCUS_COMPLETE);
81 mSound.play(MediaActionSound.START_VIDEO_RECORDING);
84 mSound.play(MediaActionSound.STOP_VIDEO_RECORDING);
148 public synchronized void play(int action) { method in class:SoundClips.SoundPoolPlayer
150 Log.e(TAG, "Resource ID not found for action:" + action + " in play().");
156 // Not loaded yet, load first and then play when the loading is complete.
163 mSoundPool.play(mSoundIDs[index], 1f, 1f, 0, 0, 1f);
189 mSoundPool.play(soundID, 1f, 1f, 0, 0, 1f)
    [all...]
  /external/chromium_org/third_party/speex/include/speex/
speex_echo.h 98 * @param play Signal played to the speaker (received from far end)
101 void speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out);
104 void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out, spx_int32_t *Yout);
116 * @param play Signal played to the speaker (received from far end)
118 void speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play);
  /external/speex/include/speex/
speex_echo.h 98 * @param play Signal played to the speaker (received from far end)
101 void speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out);
104 void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out, spx_int32_t *Yout);
116 * @param play Signal played to the speaker (received from far end)
118 void speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStackTest.cpp 28 AnimationPlayer* play(Animation* animation, double startTime) function in class:blink::AnimationAnimationStackTest
86 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 10);
87 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 15);
88 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(3))).get(), 5);
96 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 15);
97 play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 10);
112 RefPtrWillBeRawPtr<AnimationPlayer> player = play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 0);
114 play(makeAnimation(makeAnimationEffect(CSSPropertyZIndex, AnimatableDouble::create(2))).get(), 0);
122 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 2);
123 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 6)
    [all...]
AnimationPlayer.idl 44 [RuntimeEnabled=WebAnimationsPlaybackControl, MeasureAs=AnimationPlayerPlay] void play();
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.c 127 left = (written - info.play.samples);
143 left = (written - info.play.samples);
297 info.play.sample_rate = spec->freq;
298 info.play.channels = spec->channels;
299 info.play.precision = (enc == AUDIO_ENCODING_ULAW)
301 info.play.encoding = enc;
310 if(info.play.encoding == enc
311 && info.play.precision == (spec->format & 0xff)
312 && info.play.channels == spec->channels) {
314 spec->freq = info.play.sample_rate
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
SyncApiTest.java 60 server.play();
79 server.play();
100 server.play();
113 server.play();
124 server.play();
146 server.play();
162 server.play();
187 server.play();
211 server.play();
227 server.play();
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AsyncPlayerTest.java 31 asyncPlayer.play(getContext(), PLAY_URI, true, AudioManager.STREAM_RING);
SoundPoolTest.java 148 int streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
162 streamID = mSoundPool.play(sampleID, leftVolume, rightVolume, priority, loop, rate);
188 // play sounds one at a time
189 int streamID1 = mSoundPool.play(sampleID1, LOUD, QUIET, PRIORITY, -1, 1);
193 int streamID2 = mSoundPool.play(sampleID2, QUIET, LOUD, PRIORITY, -1, 1);
198 // play both at once repeating the first, but not the second
199 streamID1 = mSoundPool.play(sampleID1, LOUD, QUIET, PRIORITY, 1, 1);
200 streamID2 = mSoundPool.play(sampleID2, QUIET, LOUD, PRIORITY, 0, 1);
220 streamIds[i] = mSoundPool.play(soundIds[i], LOUD, LOUD, PRIORITY, -1, 1);
253 stream = mSoundPool.play(sampleId, SILENT, SILENT, 1, 0, 1)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
PlaySingleSoundComponent.java 43 mSoundHandle = sound.play(mSound, false, SoundSystem.PRIORITY_NORMAL);
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.idl 43 void play();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java 136 server.play();
198 server.play();
211 server.play();
241 server.play();
253 server.play();
265 server.play();
277 server.play();
288 server.play();
314 server.play();
317 server2.play();
    [all...]
HttpOverSpdyTest.java 104 server.play();
119 server.play();
131 server.play();
147 server.play();
164 server.play();
183 server.play();
200 server.play();
215 server.play();
229 server.play();
238 server.play();
    [all...]
HttpResponseCacheTest.java 184 server.play();
214 server.play();
246 server.play();
285 server.play();
316 server.play();
349 server.play();
388 server.play();
406 server.play();
435 server.play();
468 server2.play();
    [all...]
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 30 void play();
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 102 server.play();
118 server.play();
141 server.play();
164 server.play();
182 server.play();
211 server.play();
223 server.play();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 72 peer.play();
74 // play it back
100 peer.play();
115 peer.play();
117 // play it back
144 peer.play();
146 // play it back
173 peer.play();
175 // play it back
199 peer.play();
    [all...]

Completed in 665 milliseconds

1 2 3 4 5 6 7 8 91011>>