HomeSort by relevance Sort by last modified time
    Searched full:music (Results 1 - 25 of 577) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/JetBoy/JETBOY_content/
JETBOY.zip 
  /packages/apps/Music/
proguard.flags 1 -keep class com.android.music.AudioPreview {
Android.mk 7 src/com/android/music/IMediaPlaybackService.aidl
9 LOCAL_PACKAGE_NAME := Music
  /packages/apps/Music/tests/
AndroidManifest.xml 18 package="com.android.music.tests">
24 <instrumentation android:name="com.android.music.tests.MusicPlayerLaunchPerformance"
25 android:targetPackage="com.google.android.music"
26 android:label="Music Launch Performance">
29 <instrumentation android:name="com.android.music.tests.MusicPlayerFunctionalTestRunner"
30 android:targetPackage="com.google.android.music"
31 android:label="Music Player Functional Test">
34 <instrumentation android:name="com.android.music.tests.MusicPlayerStressTestRunner"
35 android:targetPackage="com.google.android.music"
36 android:label="Music Player Stress Test"
    [all...]
Android.mk 14 LOCAL_INSTRUMENTATION_FOR := Music
  /packages/apps/Music/tests/src/com/android/music/
MusicPlayerFunctionalTestRunner.java 17 package com.android.music.tests;
21 import com.android.music.tests.functional.TestSongs;
22 import com.android.music.tests.functional.TestPlaylist;
28 * Instrumentation Test Runner for all Music Player tests.
35 * -w com.android.music.tests/.MusicPlayerFunctionalTestRunner
MusicPlayerStressTestRunner.java 17 package com.android.music.tests;
19 import com.android.music.tests.stress.AlbumsPlaybackStress;
20 import com.android.music.tests.stress.MusicPlaybackStress;
28 * Instrumentation Test Runner for all music player stress tests.
33 * -w com.android.music.tests/.MusicPlayerStressTestRunner
MusicPlayerStability.java 17 package com.android.music.tests;
20 import com.android.music.TrackBrowserActivity;
28 * Junit / Instrumentation test case for the Music Player
37 super("com.android.music",TrackBrowserActivity.class);
81 // Launch music player and sleep for 30 seconds to capture
82 // the music player power usage base line.
  /development/samples/RandomMusicPlayer/
_index.html 1 <p>A simple music player that illustrates how to make a multimedia application
2 that manages media playback from a service. It allows the user to play music
9 class added in API level 14 to integrate with music playback remote controls
  /packages/providers/TvProvider/res/values/
arrays.xml 37 <item>Classical|MUSIC</item>
42 <item>Concert|MUSIC</item>
84 <item>Music|MUSIC</item>
128 <item>Country Music|MUSIC</item>
138 <item>Jazz|MUSIC</item>
141 <item>Music/Film/Books|OTHERS</item>
150 <item>Pop|MUSIC</item>
151 <item>Rock &amp; Roll|MUSIC</item
    [all...]
  /packages/wallpapers/MusicVisualization/res/values/
strings.xml 24 <string name="wallpapers">Music Visualization Wallpapers</string>
27 <string name="vis2_desc">Draws the sound wave of any currently playing music track.</string>
28 <string name="vis3_desc">Shows the frequency spectrum of any currently playing music track.</string>
30 <string name="vis5_desc">All music visualizations together, slowly revolving in 3D.</string>
  /packages/wallpapers/MusicVisualization/res/values-en-rGB/
strings.xml 22 <string name="wallpapers" msgid="7646602778647576267">"Music Visualisation Wallpaper"</string>
24 <string name="vis2_desc" msgid="192540837551311681">"Draws the soundwave of any music track currently playing."</string>
25 <string name="vis3_desc" msgid="3878566533630652215">"Shows the frequency spectrum of any music track currently playing."</string>
27 <string name="vis5_desc" msgid="4777817231155032917">"All music visualisations together, slowly revolving in 3D."</string>
  /packages/wallpapers/MusicVisualization/res/values-en-rIN/
strings.xml 22 <string name="wallpapers" msgid="7646602778647576267">"Music Visualisation Wallpaper"</string>
24 <string name="vis2_desc" msgid="192540837551311681">"Draws the soundwave of any music track currently playing."</string>
25 <string name="vis3_desc" msgid="3878566533630652215">"Shows the frequency spectrum of any music track currently playing."</string>
27 <string name="vis5_desc" msgid="4777817231155032917">"All music visualisations together, slowly revolving in 3D."</string>
  /packages/apps/Music/tests/src/com/android/music/stress/
MusicPlaybackStress.java 16 package com.android.music.tests.stress;
32 import com.android.music.MusicBrowserActivity;
33 import com.android.music.MusicUtils;
34 import com.android.music.TrackBrowserActivity;
35 import com.android.music.tests.MusicPlayerNames;
41 super("com.android.music",TrackBrowserActivity.class);
59 ActivityMonitor mediaPlaybackMon = inst.addMonitor("com.android.music.MediaPlaybackActivity",
AlbumsPlaybackStress.java 16 package com.android.music.tests.stress;
31 import com.android.music.AlbumBrowserActivity;
32 import com.android.music.tests.MusicPlayerNames;
41 super("com.android.music",AlbumBrowserActivity.class);
55 * Test case: Keeps launching music playback from Albums and then go
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicProvider.java 47 private static final String MUSIC_URL = "http://storage.googleapis.com/automotive-media/music.json";
49 private static String MUSIC = "music";
60 // Cache for music track data
64 * Get the cached list of music tracks
77 * Get the list of music tracks from a server and return the list of
92 JSONArray videos = jsonObj.getJSONArray(MUSIC);
96 JSONObject music = videos.getJSONObject(j); local
97 String title = music.getString(TITLE);
98 String album = music.getString(ALBUM)
    [all...]
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 35 // find the category (like genre) that a music was selected from, so we
37 // one music can appear in more than one list, like "by genre -> genre_1"
50 * musicID. This is necessary so we know where the user selected the music from, when the music
51 * exists in more than one music list, and thus we are able to correctly build the playing queue.
64 * mediaID. This is necessary so we know where the user selected the music from, when the music
65 * exists in more than one music list, and thus we are able to correctly build the playing queue.
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 35 // find the category (like genre) that a music was selected from, so we
37 // one music can appear in more than one list, like "by genre -> genre_1"
50 * musicID. This is necessary so we know where the user selected the music from, when the music
51 * exists in more than one music list, and thus we are able to correctly build the playing queue.
64 * mediaID. This is necessary so we know where the user selected the music from, when the music
65 * exists in more than one music list, and thus we are able to correctly build the playing queue.
  /development/samples/JetBoy/
JETBOY_content_README.txt 3 The "JETBOY_content" folder contains the JET Creator file and assets used in "JETBOY", the Android demonstration game using SONiVOX' JET interactive music technology.
14 The "JETBOY_Music.logic" file is the Logic file used to create the JETBOY music composition. This file is provided for reference
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
MediaIDHelper.java 35 // find the category (like genre) that a music was selected from, so we
37 // one music can appear in more than one list, like "by genre -> genre_1"
50 * musicID. This is necessary so we know where the user selected the music from, when the music
51 * exists in more than one music list, and thus we are able to correctly build the playing queue.
64 * mediaID. This is necessary so we know where the user selected the music from, when the music
65 * exists in more than one music list, and thus we are able to correctly build the playing queue.
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMediaTypeBox.java 14 mediaTypes.put("1", "Normal (Music)");
16 mediaTypes.put("6", "Music Video");
  /frameworks/base/tests/MusicServiceDemo/res/values/
strings.xml 19 <string name="app_name">Music Service Demo</string>
22 <string name="music_error">No music found</string>
  /external/chromium_org/third_party/WebKit/ManualTests/
video-in-non-frontmost-tab.html 3 If you hear music before switching tabs, then the test failed.
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_classifier.h 29 // This class provides a speech/music classification and is a wrapper over the
43 // Gets the current classification : true = music, false = speech.
46 // Gets the current music probability.
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaNames.java 32 public static final String MP3CBR = "/sdcard/media_api/music/MP3_48KHz_128kbps_s_1_17_CBR.mp3";
33 public static final String MP3VBR = "/sdcard/media_api/music/MP3_48KHz_128kbps_s_1_17_VBR.mp3";
34 public static final String MP3ABR = "/sdcard/media_api/music/MP3_48KHz_128kbps_s_1_17_ABR.mp3";
35 public static final String SHORTMP3 = "/sdcard/media_api/music/SHORTMP3.mp3";
36 public static final String MIDI = "/sdcard/media_api/music/ants.mid";
37 public static final String WAV = "/sdcard/media_api/music/rings_2ch.wav";
38 public static final String AMR = "/sdcard/media_api/music/test_amr_ietf.amr";
39 public static final String SINE_200_1000 = "/sdcard/media_api/music/sine_200+1000Hz_44K_mo.wav";
41 // "/sdcard/media_api/music/Revelation.ogg";
96 "/sdcard/media_api/music/MP3_48KHz_128kbps_s_1_17_ID3V1_ID3V2.mp3"
    [all...]

Completed in 919 milliseconds

1 2 3 4 5 6 7 8 91011>>