/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 134 int id = mSoundPool.play(mSounds[index], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestSounds() 156 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestScales() 177 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestRates() 201 int normalId = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestPriority() 211 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestPriority() 223 id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestPriority() 246 int id = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestPauseResume() 268 ids[i] = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME, in TestPauseResume() 298 … int id = mSoundPool.play(mSounds[0], 0.0f, 1.0f, NORMAL_PRIORITY, DEFAULT_LOOP, mScale[0]); in TestVolume()
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
D | AbstractProxyTest.java | 66 server.play(); in testConnectToHttps() 117 server.play(); in testConnectViaProxy() 158 server.play(); in testConnectViaHttpProxyToHttps() 192 server.play(); in testParamPreferredOverSystemProperty() 208 server.play(); in testExplicitNoProxyCancelsSystemProperty() 226 server.play(); in testRetryWithProxy()
|
D | CookiesTest.java | 54 server.play(); in testCookiesAreNotLogged() 89 server.play(); in testCookiesWithNonMatchingCase()
|
D | DefaultHttpClientTest.java | 73 server.play(); in testServerClosesOutput()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaAudioTrackTest.java | 341 track.play(); in testPlaybackHeadPositionIncrease() 369 track.play(); in testPlaybackHeadPositionAfterFlush() 399 track.play(); in testPlaybackHeadPositionAfterStop() 430 track.play(); in testPlaybackHeadPositionAfterPause() 464 track.play(); in testSetStereoVolumeMax() 490 track.play(); in testSetStereoVolumeMin() 516 track.play(); in testSetStereoVolumeMid() 543 track.play(); in testSetPlaybackRate() 592 track.play(); in testSetPlaybackRateTwiceOutputSR() 618 track.play(); in testSetGetPlaybackRate() [all …]
|
/frameworks/base/docs/html/guide/topics/media/ |
D | jetplayer.jd | 38 JetCreator authoring application that ships with the SDK. To play and manage JET content from your 44 <p>This section shows you how to write, set up and play JET content. For a description of JET 64 jetPlayer.play();
|
D | index.jd | 38 applications. You can play audio or video from media files stored in your application's resources, 50 <dd>How to play audio and video in your application.</dd> 53 <dd>How to play interactive audio and video in your application using content created with
|
D | audio-capture.jd | 38 microphone, save the audio and play it back.</p> 73 <h3 id="example">Example: Record audio and play the recorded audio</h3> 74 <p>The example class below illustrates how to set up, start and stop audio capture, and to play the
|
D | mediaplayer.jd | 53 that you can easily integrate audio, video and images into your applications. You can play audio or 61 <p class="note"><strong>Note:</strong> You can play back the audio data only to the standard output 62 device. Currently, that is the mobile device speaker or a Bluetooth headset. You cannot play sound 66 <p>The following classes are used to play sound and video in the Android framework:</p> 100 class. An object of this class can fetch, decode, and play both audio and video 114 of how to play audio that's available as a local raw resource (saved in your application's 126 <p>And here is how you might play from a URI available locally in the system 200 to make it play the media. At that point, as the diagram illustrates, 258 <p>If you want your media to play in the background even when your application 347 <p>When designing applications that play media [all …]
|
/frameworks/base/core/java/android/animation/ |
D | AnimatorSet.java | 125 Builder builder = play(items[0]); in playTogether() 143 builder = play(anim); in playTogether() 161 play(items[0]); in playSequentially() 164 play(items[i]).before(items[i+1]); in playSequentially() 180 play(items.get(0)); in playSequentially() 183 play(items.get(i)).before(items.get(i+1)); in playSequentially() 265 public Builder play(Animator anim) { in play() method in AnimatorSet
|
/frameworks/base/core/tests/utillib/src/coretestutils/http/ |
D | MockWebServer.java | 120 public void play() throws IOException { in play() method in MockWebServer 121 play(0); in play() 131 public void play(int portNumber) throws IOException { in play() method in MockWebServer
|
/frameworks/base/include/media/ |
D | JetPlayer.h | 53 int play();
|
/frameworks/base/core/java/android/webkit/ |
D | HTML5Audio.java | 168 play(); in onPrepared() 267 private void play() { in play() method in HTML5Audio
|
D | HTML5VideoViewProxy.java | 170 public static void play(String url, int time, HTML5VideoViewProxy proxy, in play() method in HTML5VideoViewProxy.VideoPlayer 322 VideoPlayer.play(url, mSeekPosition, this, client, videoLayerID); in handleMessage() 603 public void play(String url, int position, int videoLayerID) { in play() method in HTML5VideoViewProxy
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | AbsActionBarView.java | 138 set.play(anim).with(splitAnim); in animateToVisibility() 153 set.play(anim).with(splitAnim); in animateToVisibility()
|
/frameworks/base/media/jni/soundpool/ |
D | SoundPool.h | 123 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume, 170 int play(int sampleID, float leftVolume, float rightVolume, int priority,
|
D | SoundPool.cpp | 241 int SoundPool::play(int sampleID, float leftVolume, float rightVolume, in play() function in android::SoundPool 276 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate); in play() 547 void SoundChannel::play(const sp<Sample>& sample, int nextChannelID, float leftVolume, in play() function in android::SoundChannel 681 play(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate); in nextEvent()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | drawable-animation.jd | 34 be added as the background image to a View and then called to play. Here's an example Activity, 60 AnimationDrawable is not yet fully attached to the window. If you want to play the animation
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
D | NotificationPanel.java | 239 set.play(ObjectAnimator.ofFloat( in setContentFrameVisible() 402 .play(fadeAnim) in createAnimation()
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 18 format, that respond in real-time to game play events and user interaction.</p> 121 interaction or game play events. In this way, interactive music is much more 124 and games, interactive music is central to the game play. Guitar Hero is one 219 to play fully synchronized to the music. Optionally, the track can be 232 that allows game play to be synchronized to events in the audio. The mechanism 266 the game registers a failure. Game play might also include bonuses for getting 447 while the segment is play by simply clicking on the event in the timeline 495 play in the JET game.</p> 504 segment will respond to the applications API commands during game play.</p> 989 play. If the action in the game is slow, the slow drum track can play.</li> [all …]
|
/frameworks/media/libvideoeditor/lvpp/ |
D | PreviewPlayer.h | 48 status_t play();
|
/frameworks/base/media/java/android/media/ |
D | AsyncPlayer.java | 165 public void play(Context context, Uri uri, boolean looping, int stream) { in play() method in AsyncPlayer
|
/frameworks/base/media/libmediaplayerservice/ |
D | StagefrightPlayer.cpp | 96 return mPlayer->play(); in start()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
D | Choreographer.java | 99 final Builder builder = mContentAnim.play(glowAnim).with(posAnim); in createAnimation()
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | DownloadManagerStressTest.java | 49 mServer.play(); in setUp()
|