HomeSort by relevance Sort by last modified time
    Searched refs:volumePercent (Results 1 - 9 of 9) sorted by null

  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieAudioTrack.java 188 * @param volumePercent Percentage of the volume to apply. If it is set to
195 void setVolume(int volumePercent) {
196 mVolumePercent = volumePercent;
213 * @param volumePercent Percentage of the volume to apply. If it is set to
220 public void setAppVolume(int volumePercent) {
221 mAppVolumePercent = volumePercent;
MovieMediaItem.java 212 * @param volumePercent Percentage of the volume to apply. If it is set to
220 void setVolume(int volumePercent) {
221 mVolumePercent = volumePercent;
238 * @param volumePercent Percentage of the volume to apply. If it is set to
246 public void setAppVolume(int volumePercent) {
247 mAppVolumePercent = volumePercent;
  /frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java 264 * @param volumePercent Percentage of the volume to apply. If it is set to
272 public void setVolume(int volumePercent) {
273 if (volumePercent > MediaProperties.AUDIO_MAX_VOLUME_PERCENT) {
277 if (volumePercent < 0) {
286 mVolumePercent = volumePercent;
MediaVideoItem.java 100 * @param volumePercent in %/. 100% means no change; 50% means half value, 200%
108 int renderingMode, long beginMs, long endMs, int volumePercent, boolean muted,
185 mVolumePercentage = volumePercent;
637 * @param volumePercent in %/. 100% means no change; 50% means half value, 200%
641 public void setVolume(int volumePercent) {
642 if ((volumePercent <0) || (volumePercent >100)) {
646 mVolumePercentage = volumePercent;
VideoEditorImpl.java     [all...]
MediaArtistNativeHelper.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackService.java 387 int volumePercent = (100 / maxRingerVolume) * currentRingerVolume;
390 int adjustment = volumePercent % 10;
392 volumePercent -= adjustment;
394 volumePercent += (10 - adjustment);
397 return String.format(template, volumePercent);
  /frameworks/base/media/jni/mediaeditor/
VideoEditorClasses.h 119 jfieldID volumePercent;
VideoEditorClasses.cpp 504 VIDEOEDIT_JAVA_FIELD_INIT("volumePercent", "I" ),
    [all...]

Completed in 65 milliseconds