HomeSort by relevance Sort by last modified time
    Searched defs:volume (Results 51 - 75 of 380) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 57 // can not accept any other volume names
58 String volume = "fakeVolume"; local
59 assertNull(mContentResolver.query(Media.getContentUri(volume), null, null, null, null));
  /development/ndk/platforms/android-21/include/linux/caif/
caif_socket.h 84 char volume[16]; member in struct:sockaddr_caif::__anon1425::__anon1429
  /development/ndk/platforms/android-3/include/linux/
msm_audio.h 70 uint32_t volume; member in struct:msm_snd_volume_config
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 122 /** \returns the volume of the bounding box */
123 inline Scalar volume() const function in class:Eigen::AlignedBox
  /external/kernel-headers/original/uapi/linux/caif/
caif_socket.h 129 * @u.rfm.volume: Volume to mount.
156 char volume[16]; member in struct:sockaddr_caif::__anon11016::__anon11020
  /external/kernel-headers/original/uapi/sound/
asound_fm.h 51 unsigned char volume; /* 6 bits: volume */ member in struct:snd_dm_fm_voice
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 196 const CVolume *volume = 0; local
199 volume = &_volumes.Front();
200 db = &volume->Database;
399 volume ? volume->Stream: 0,
400 volume ? db : 0,
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MovieHeaderBox.java 41 private float volume = 1.0f; field in class:MovieHeaderBox
80 return volume;
117 volume = IsoTypeReader.readFixedPoint88(content);
150 result.append("volume=").append(getVolume());
177 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
219 public void setVolume(float volume) {
220 this.volume = volume;
TrackHeaderBox.java 45 private float volume; field in class:TrackHeaderBox
81 return volume;
127 volume = IsoTypeReader.readFixedPoint88(content);
156 IsoTypeWriter.writeFixedPont88(byteBuffer, volume);
180 result.append("volume=").append(getVolume());
217 public void setVolume(float volume) {
218 this.volume = volume;
  /external/replicaisland/src/com/replica/replicaisland/
GameObjectCollisionSystem.java 29 * overlaps. A bounding volume that encompasses all attack and vulnerability volumes is used for
76 * @param boundingVolume A volume that describes the game object in space. It should encompass
195 * @return The hit type of the first attacking volume that intersects a vulnerability volume,
247 CollisionVolume volume = record.attackVolumes.get(y); local
249 position.x + volume.getMinXPosition(sFlip), position.y + volume.getMinYPosition(sFlip),
250 volume.getMaxX() - volume.getMinX(),
251 volume.getMaxY() - volume.getMinY(),
260 CollisionVolume volume = record.vulnerabilityVolumes.get(y); local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_tonecontrol.c 57 /* convert 0-100 volume to 0-127 velocity using fixed point */
272 /* set channel volume to max */
288 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, TC_CHANNEL, (EAS_U8) pData->note, pData->volume);
652 pData->volume = 127;
736 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, TC_CHANNEL, (EAS_U8) note, pData->volume);
767 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, TC_CHANNEL, (EAS_U8) pData->note, pData->volume);
842 * Get the volume field and process it
847 EAS_I8 volume; local
849 /* get volume */
850 if (TC_GetNextChar(pEASData->hwInstData, pData, &volume) != EAS_SUCCESS
    [all...]
  /external/svox/pico/tts/
svox_ssml_parser.cpp 322 else if (strcmp(element, "prosody") == 0) /* only pitch, rate and volume attributes are supported */
412 else if (strcmp(attributes[i], "volume") == 0)
425 char* volume = new char[18 + strlen(svoxvol)]; local
426 if (!volume)
431 sprintf(volume, "<volume level='%s'>", svoxvol);
432 if (strlen(m_data) + strlen(volume) + 1 > (size_t)m_datasize)
440 strcat(m_data, volume);
446 strcat(m_appendix, "</volume>");
448 delete [] volume;
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 32 * Information about a storage volume that may be mounted. This is a legacy
33 * specialization of {@link VolumeInfo} which describes the volume for a
103 * Returns the mount path for the volume.
116 * Returns a user visible description of the volume.
118 * @return the volume description
129 * Returns true if the volume is removable.
138 * Returns true if the volume is emulated.
147 * Returns the MTP storage ID for the volume.
173 * Returns true if this volume can be shared via USB mass storage.
182 * Returns maximum file size for the volume, or zero if it is unbounded
224 StorageVolume volume = (StorageVolume)obj; local
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 78 // grab focus and key events so that pressing the volume buttons in the
79 // dialog doesn't also show the normal volume adjust toast.
199 public int volume = -1; field in class:VolumePreference.VolumeStore
208 mVolumeStore.volume = source.readInt();
215 dest.writeInt(mVolumeStore.volume);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenFooter.java 16 package com.android.systemui.volume;
35 * Zen mode information (and end button) attached to the bottom of the volume dialog.
  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 27 * Feature action that transmits volume change to Audio Receiver.
29 * This action is created when a user pressed volume up/down. However, Android only provides a
30 * listener for delta of some volume change instead of individual key event. Also it's hard to know
31 * Audio Receiver's number of volume steps for a single volume control key. Because of this, it
33 * volume change happens; otherwise, it will send again key-down as press and hold feature does.
38 // State that wait for next volume press.
52 * Scale a custom volume value to cec volume scale.
54 * @param volume volume value in custom scal
143 int volume = params[0] & 0x7F; local
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RemoteControlClientCompat.java 61 * Sets a callback to receive volume change requests from the remote control client.
63 * @param callback The volume callback to use or null if none.
73 public int volume; field in class:RemoteControlClientCompat.PlaybackInfo
81 * Called when volume updates are requested by the remote control client.
85 * Called when the volume should be increased or decreased.
87 * @param direction An integer indicating whether the volume is to be increased
90 * in the same direction, e.g. +3 corresponds to three "volume up" changes.
95 * Called when the volume for the route should be set to the given value.
97 * @param volume An integer indicating the new volume value that should be used
    [all...]
  /frameworks/wilhelm/tests/automated/
BufferQueue_test.cpp 42 // volume of sine wave in range 0.0 to 1.0
463 #if 1 // temporary workaround if hardware volume control is not working
464 const char *VOLUME = getenv("BufferQueue_test_VOLUME");
465 if (NULL != VOLUME) {
466 float volume = atof(VOLUME); local
467 if (volume >= 0.0f && volume <= 1.0f) {
468 gVolume = volume;
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAMixer.cpp 93 long volume; member in struct:android::mixer_info_t
189 // Find PCM playback volume control element.
198 info->volume = info->max;
199 setVol[i] (elem, info->volume);
226 // Find PCM playback volume control element.
235 info->volume = info->max;
236 setVol[i] (elem, info->volume);
267 status_t ALSAMixer::setMasterVolume(float volume)
275 // Make sure volume is between bounds.
276 long vol = minVol + volume * (maxVol - minVol)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 59 for (StorageVolume volume : mVolumeMap.values()) {
60 addStorageLocked(volume);
73 StorageVolume volume = mVolumeMap.remove(path);
74 if (volume != null) {
75 removeStorageLocked(volume);
208 StorageVolume volume = mVolumes[i]; local
209 if (volume.getPath().equals(path)) {
210 mVolumeMap.put(path, volume);
213 if (volume.isPrimary() || !mPtpMode) {
214 addStorageLocked(volume);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/
asound_fm.h 51 unsigned char volume; /* 6 bits: volume */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
asound_fm.h 51 unsigned char volume; /* 6 bits: volume */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/sound/
asound_fm.h 51 unsigned char volume; /* 6 bits: volume */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/caif/
caif_socket.h 129 * @u.rfm.volume: Volume to mount.
156 char volume[16]; member in struct:sockaddr_caif::__anon32661::__anon32665
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/
asound_fm.h 51 unsigned char volume; /* 6 bits: volume */ member in struct:snd_dm_fm_voice

Completed in 1685 milliseconds

1 23 4 5 6 7 8 91011>>