HomeSort by relevance Sort by last modified time
    Searched full:preset (Results 101 - 125 of 581) sorted by null

1 2 3 45 6 7 8 91011>>

  /hardware/qcom/audio/post_proc/
equalizer.h 31 int preset; member in struct:equalizer_context_s
reverb.h 48 bool preset; member in struct:reverb_context_s
effect_api.h 73 void offload_eq_set_preset(struct eq_params *eq, int preset);
113 void offload_reverb_set_preset(struct reverb_params *reverb, int preset);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 221 public Object getPanoramaXMPData(Uri source, ImagePreset preset) {
223 if (preset.isPanoramaSafe()) {
288 private Uri resetToOriginalImageIfNeeded(ImagePreset preset, boolean doAuxBackup) {
290 if (!preset.hasModifications()) {
291 // This can happen only when preset has no modification but save
328 public Uri processAndSaveImage(ImagePreset preset, boolean flatten,
333 uri = resetToOriginalImageIfNeeded(preset, !flatten);
356 Object xmp = getPanoramaXMPData(newSourceUri, preset);
368 Object xmp = getPanoramaXMPData(newSourceUri, preset);
378 mDestinationFile, preset);
    [all...]
  /packages/apps/MusicFX/res/values/
strings.xml 29 <string name="pr_dialog_title">Reverb preset</string>
  /system/media/audio_effects/include/audio_effects/
effect_presetreverb.h 32 /* enumerated parameter settings for preset reverb effect */
  /frameworks/wilhelm/src/itf/
IEqualizer.c 349 SLuint16 preset = thiz->mPreset; local
351 *pPreset = preset;
354 uint16_t preset = 0; local
359 android_eq_getParam(thiz->mEqEffect, EQ_PARAM_CUR_PRESET, 0, &preset);
364 if (preset < 0) {
367 *pPreset = (SLuint16) preset;
447 // FIXME query preset name rather than retrieve it from the engine.
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 89 * Indicates if Preset Reverb effect is supported.
149 // Preset Reverb fields
151 * Array containing the PR preset names.
431 // Initialize the Preset Reverb elements.
716 // copy current levels to user preset
766 * Sets the given EQ preset.
768 * @param preset
769 * EQ preset id.
771 private void equalizerSetPreset(final int preset)
    [all...]
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/smoothlife/
example.js 25 [], // Placeholder for the palette of the currently selected preset.
215 $('preset').addEventListener('change', loadSelectedPreset);
279 loadPreset($('preset').value);
283 var preset = presets[index];
287 setKernel.apply(null, preset[0]);
288 setSmoother.apply(null, preset[1]);
290 // the preset default palette.
292 setPalette.apply(null, preset[2]);
296 palettePresets[0] = preset[2];
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaPresetReverbTest.java 51 // Implementor UUID for preset reverb effect defined in
87 // PRESET REVEB TESTS:
126 //Test case 1.0: test preset
134 short preset = mReverb.getPreset(); local
135 assertEquals(msg +": got incorrect preset",
137 preset);
163 if (settings.preset == (short)PresetReverb.PRESET_LARGEROOM) {
168 settings.preset = newPreset;
171 assertEquals(msg +": setProperties failed", newPreset, settings.preset);
  /frameworks/wilhelm/tests/examples/
slesTestSendToPresetReverb.cpp 73 void TestSendToPresetReverb( SLObjectItf sl, const char* path, int preset, SLmillibel directLevel,
141 /* Select the reverb preset */
142 fprintf(stdout, "\nUsing preset ");
143 switch(preset) {
156 result = (*reverbItf)->SetPreset(reverbItf, preset);
282 /* Disable preset reverb every TIME_S_BETWEEN_SETTING_CHANGE seconds unless always on */
293 result = (*reverbItf)->SetPreset(reverbItf, enabled ? preset : SL_REVERBPRESET_NONE);
294 fprintf(stdout, "SetPreset(%d)=%d\n", enabled ? preset : SL_REVERBPRESET_NONE, result);
362 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel "
  /device/samsung/manta/voicefx/
eS305VoiceProcessing.cpp 116 #define ES305_PRESET_PATH ES305_SYSFS_PATH "preset"
141 { -1/*vp*/, -1/*preset*/, -1/*ns*/, -1/*agc*/, -1/*aec*/, -1/*sleep*/},
143 ES305_PRESET_INIT /*requested_preset, an invalid preset, different from current_preset*/,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
BaseFiltersManager.java 97 public void freeFilterResources(ImagePreset preset) {
98 if (preset == null) {
101 Vector<ImageFilter> usedFilters = preset.getUsedFilters(this);
279 ImagePreset preset = new ImagePreset(); local
280 preset.addFilter(fx);
282 context.getString(fxNameid[i]), preset, -1);
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 63 NotificationPreset preset = NotificationPresets.PRESETS[presetIndex]; local
64 Notification notif = preset.buildNotification(this);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 63 NotificationPreset preset = NotificationPresets.PRESETS[presetIndex]; local
64 Notification notif = preset.buildNotification(this);
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
MainActivity.java 63 NotificationPreset preset = NotificationPresets.PRESETS[presetIndex]; local
64 Notification notif = preset.buildNotification(this);
  /external/chromium_org/chrome/browser/
chrome_page_zoom.cc 33 // Generate a vector of zoom values from an array of known preset
46 // If the preset array did not contain the custom value, append it to the
chrome_page_zoom_unittest.cc 10 // Fetch a vector of preset zoom factors, including a custom value that we
47 // Fetch a vector of preset zoom levels, including a custom value that we
  /frameworks/wilhelm/src/android/
android_Effect.h 56 uint16_t preset);
59 uint16_t* preset);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
UserPresetsManager.java 89 public void save(ImagePreset preset, String name) {
92 op.json = preset.getJsonString(ImagePreset.JASON_SAVED);
  /cts/tests/tests/media/src/android/media/cts/
AudioEffectTest.java 356 short preset = PresetReverb.PRESET_SMALLROOM; local
357 if (mEffect.byteArrayToShort(value) == preset) {
358 preset = PresetReverb.PRESET_MEDIUMROOM;
360 value = mEffect.shortToByteArray(preset);
365 assertEquals("get/set Parameter failed", preset,
424 short preset = PresetReverb.PRESET_SMALLROOM; local
425 if (value[0] == preset) {
426 preset = PresetReverb.PRESET_MEDIUMROOM;
428 status = mEffect.setParameter(param, preset);
432 assertEquals("get/set Parameter failed", preset, value[0])
530 short[] preset = new short[1]; local
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 38 * Simple notification priority preset that sets a priority using
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 38 * Simple notification priority preset that sets a priority using
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
PriorityPresets.java 38 * Simple notification priority preset that sets a priority using
  /external/clang/test/SemaObjC/
boxing-illegal.m 72 - (void) insertBar:(id)preset ofKind:(id) kind atIndex:(int)index {

Completed in 3117 milliseconds

1 2 3 45 6 7 8 91011>>