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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.h 56 // Preset configuration.
85 int CurPreset; /* Current preset being used */
161 3, 0, 0, 0, 3, /* Normal Preset */
162 8, 5, -3, 5, 6, /* Classical Preset */
163 15, -6, 7, 13, 10, /* Dance Preset */
164 0, 0, 0, 0, 0, /* Flat Preset */
165 6, -2, -2, 6, -3, /* Folk Preset */
166 8, -8, 13, -1, -4, /* Heavy Metal Preset */
167 10, 6, -4, 5, 8, /* Hip Hop Preset */
168 8, 5, -4, 5, 9, /* Jazz Preset */
    [all...]
  /frameworks/wilhelm/src/itf/
IPresetReverb.c 30 static SLresult IPresetReverb_SetPreset(SLPresetReverbItf self, SLuint16 preset)
35 switch (preset) {
44 thiz->mPreset = preset;
51 android::status_t status = android_prev_setPreset(thiz->mPresetReverbEffect, preset);
74 SLuint16 preset = SL_REVERBPRESET_NONE; local
76 preset = thiz->mPreset;
80 preset = thiz->mPreset;
83 android::status_t status = android_prev_getPreset(thiz->mPresetReverbEffect, &preset);
92 *pPreset = preset;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CachingPipeline.java 163 private void setupEnvironment(ImagePreset preset, boolean highResPreview) {
173 mEnvironment.setImagePreset(preset);
180 ImagePreset preset = MasterImage.getImage().getPreset(); local
181 setupEnvironment(preset, false);
182 updateOriginalAllocation(preset);
185 private synchronized boolean updateOriginalAllocation(ImagePreset preset) {
186 if (preset == null) {
205 mResizedOriginalBitmap = preset.applyGeometry(originalBitmap, mEnvironment);
220 ImagePreset preset = request.getImagePreset(); local
221 setupEnvironment(preset, false)
245 ImagePreset preset = request.getImagePreset(); local
267 ImagePreset preset = request.getImagePreset(); local
302 ImagePreset preset = request.getImagePreset(); local
    [all...]
SharedPreset.java 26 public synchronized void enqueuePreset(ImagePreset preset) {
27 if (mProducerPreset == null || (!mProducerPreset.same(preset))) {
28 mProducerPreset = new ImagePreset(preset);
30 mProducerPreset.updateWith(preset);
ImageSavingTask.java 36 ImagePreset preset; field in class:ImageSavingTask.SaveRequest
68 File destinationFile, ImagePreset preset,
75 request.preset = preset;
90 ImagePreset preset = request.preset; local
96 updateBitmap.bitmap = createNotificationBitmap(previewImage, sourceUri, preset);
117 Uri uri = saveImage.processAndSaveImage(preset, flatten,
148 private Bitmap createNotificationBitmap(Bitmap preview, Uri sourceUri, ImagePreset preset) {
158 return pipeline.renderFinalImage(bitmap, preset);
    [all...]
RenderingRequest.java 50 public static void post(Context context, Bitmap source, ImagePreset preset,
52 RenderingRequest.post(context, source, preset, type, caller, null, null);
55 public static void post(Context context, Bitmap source, ImagePreset preset, int type,
59 || preset == null || caller == null) {
61 + " or preset: " + preset + " or caller: " + caller);
71 bitmap = pipeline.renderGeometryIcon(source, preset);
79 ImagePreset passedPreset = new ImagePreset(preset);
80 request.setOriginalImagePreset(preset);
96 ImagePreset preset,
    [all...]
ProcessingService.java 47 private static final String PRESET = "preset";
94 public void postHighresRenderingRequest(ImagePreset preset, float scaleFactor,
97 // TODO: use the triple buffer preset as UpdatePreviewTask does instead of creating a copy
98 ImagePreset passedPreset = new ImagePreset(preset);
99 request.setOriginalImagePreset(preset);
107 public void postFullresRenderingRequest(ImagePreset preset, float scaleFactor,
111 ImagePreset passedPreset = new ImagePreset(preset);
112 request.setOriginalImagePreset(preset);
143 public static Intent getSaveIntent(Context context, ImagePreset preset, File destination
212 ImagePreset preset = new ImagePreset(); local
    [all...]
UpdatePreviewTask.java 58 SharedPreset preset = MasterImage.getImage().getPreviewPreset(); local
59 ImagePreset renderingPreset = preset.dequeuePreset();
62 // set the preset we used in the buffer for later inspection UI-side
  /frameworks/base/media/java/android/media/audiofx/
PresetReverb.java 32 * The PresetReverb class allows an application to configure the global reverb using a reverb preset.
61 * Preset. Parameter ID for
71 * Reverb preset representing a small room less than five meters in length
75 * Reverb preset representing a medium room with a length of ten meters or less
79 * Reverb preset representing a large-sized room suitable for live performances
83 * Reverb preset representing a medium-sized hall
87 * Reverb preset representing a large-sized hall suitable for a full orchestra
91 * Reverb preset representing a synthesis of the traditional plate reverb
132 * Enables a preset on the reverb.
136 * @param preset this must be one of the the preset constants defined in this class
231 public short preset; field in class:PresetReverb.Settings
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunctionTest.cpp 77 RefPtr<TimingFunction> cubicEaseTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::Ease);
79 RefPtr<TimingFunction> cubicEaseInTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseIn);
81 RefPtr<TimingFunction> cubicEaseOutTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseOut);
83 RefPtr<TimingFunction> cubicEaseInOutTiming = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseInOut);
92 RefPtr<TimingFunction> stepTimingStart = StepsTimingFunction::preset(StepsTimingFunction::Start);
95 RefPtr<TimingFunction> stepTimingMiddle = StepsTimingFunction::preset(StepsTimingFunction::Middle);
98 RefPtr<TimingFunction> stepTimingEnd = StepsTimingFunction::preset(StepsTimingFunction::End);
114 RefPtr<TimingFunction> cubicTiming1 = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseIn);
116 RefPtr<TimingFunction> stepsTiming1 = StepsTimingFunction::preset(StepsTimingFunction::End);
138 RefPtr<TimingFunction> cubicEaseInTiming1 = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::EaseIn)
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
NotificationPreset.java 23 * Base class for notification preset generators.
32 /** Start building a notification with this preset */
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
NotificationPreset.java 23 * Base class for notification preset generators.
32 /** Start building a notification with this preset */
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
NotificationPreset.java 23 * Base class for notification preset generators.
32 /** Start building a notification with this preset */
  /external/chromium_org/chrome/browser/
chrome_page_zoom.h 17 // Return a sorted vector of zoom factors. The vector will consist of preset
22 // Return a sorted vector of zoom levels. The vector will consist of preset
  /hardware/qcom/audio/post_proc/
equalizer.c 62 3, 0, 0, 0, 3, /* Normal Preset */
63 5, 3, -2, 4, 4, /* Classical Preset */
64 6, 0, 2, 4, 1, /* Dance Preset */
65 0, 0, 0, 0, 0, /* Flat Preset */
66 3, 0, 0, 2, -1, /* Folk Preset */
67 4, 1, 9, 3, 0, /* Heavy Metal Preset */
68 5, 3, 0, 1, 3, /* Hip Hop Preset */
69 4, 2, -2, 2, 5, /* Jazz Preset */
70 -1, 2, 5, 1, -2, /* Pop Preset */
71 5, 3, -1, 3, 5}; /* Rock Preset */
352 int32_t preset; local
    [all...]
reverb.c 54 // Offload auxiliary preset reverb UUID: 6987be09-b142-4b41-9056-0002a5d5c51b */
62 "MSM offload Auxiliary Preset Reverb",
66 // Offload insert preset reverb UUID: aa2bebf6-47cf-4613-9bca-0002a5d5c51b */
74 "MSM offload Insert Preset Reverb",
99 context->preset = false;
105 context->preset = true;
113 context->preset = true;
242 void reverb_set_preset(reverb_context_t *context, int16_t preset)
245 ALOGV("%s: preset: %d", __func__, preset);
286 const reverb_settings_t *preset = &reverb_presets[context->cur_preset]; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryItem.java 30 public HistoryItem(ImagePreset preset, FilterRepresentation representation) {
31 mImagePreset = preset; // just keep a pointer to the current preset
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeRS.java 94 static class Preset {
95 Preset(int processmode, int backcol, int locol, int hicol, float mul, int mask,
119 public static final Preset [] mPreset = new Preset[] {
121 new Preset(1, 0x000000, 0x000000, 0xffffff, 2.0f, 0x0f, true, false, false),
122 new Preset(1, 0x0000ff, 0x000000, 0xffffff, 2.0f, 0x0f, true, false, false),
123 new Preset(1, 0x00ff00, 0x000000, 0xffffff, 2.0f, 0x0f, true, false, false),
124 new Preset(1, 0x00ff00, 0x000000, 0xffffff, 2.0f, 0x0f, true, false, true),
125 new Preset(1, 0x00ff00, 0x00ff00, 0xffffff, 2.5f, 0x1f, true, true, true),
126 new Preset(1, 0x800000, 0xff0000, 0xffffff, 2.5f, 0x1f, true, true, false)
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 82 NotificationPreset preset = NotificationPresets.PRESETS[ local
84 updateTextEditors(preset);
172 private void updateTextEditors(NotificationPreset preset) {
173 mTitleEditText.setText(getString(preset.titleResId));
174 mTextEditText.setText(getString(preset.textResId));
175 if (preset == NotificationPresets.BASIC) {
218 NotificationPreset preset = NotificationPresets.PRESETS[ local
226 if (preset.actionsRequired() && actionsPreset == ActionsPresets.NO_ACTIONS_PRESET) {
227 // If actions are required, but the no-actions preset was selected, change presets.
242 Notification[] notifications = preset.buildNotifications(this, options)
268 NotificationPreset preset = NotificationPresets.PRESETS[position]; local
    [all...]
NotificationPreset.java 23 * Base class for notification preset generators.
62 /** Build a notification with this preset and the provided options */
65 /** Whether actions are required to use this preset. */
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 82 NotificationPreset preset = NotificationPresets.PRESETS[ local
84 updateTextEditors(preset);
172 private void updateTextEditors(NotificationPreset preset) {
173 mTitleEditText.setText(getString(preset.titleResId));
174 mTextEditText.setText(getString(preset.textResId));
175 if (preset == NotificationPresets.BASIC) {
218 NotificationPreset preset = NotificationPresets.PRESETS[ local
226 if (preset.actionsRequired() && actionsPreset == ActionsPresets.NO_ACTIONS_PRESET) {
227 // If actions are required, but the no-actions preset was selected, change presets.
242 Notification[] notifications = preset.buildNotifications(this, options)
268 NotificationPreset preset = NotificationPresets.PRESETS[position]; local
    [all...]
NotificationPreset.java 23 * Base class for notification preset generators.
62 /** Build a notification with this preset and the provided options */
65 /** Whether actions are required to use this preset. */
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
MainActivity.java 82 NotificationPreset preset = NotificationPresets.PRESETS[ local
84 updateTextEditors(preset);
172 private void updateTextEditors(NotificationPreset preset) {
173 mTitleEditText.setText(getString(preset.titleResId));
174 mTextEditText.setText(getString(preset.textResId));
175 if (preset == NotificationPresets.BASIC) {
218 NotificationPreset preset = NotificationPresets.PRESETS[ local
226 if (preset.actionsRequired() && actionsPreset == ActionsPresets.NO_ACTIONS_PRESET) {
227 // If actions are required, but the no-actions preset was selected, change presets.
242 Notification[] notifications = preset.buildNotifications(this, options)
268 NotificationPreset preset = NotificationPresets.PRESETS[position]; local
    [all...]
NotificationPreset.java 23 * Base class for notification preset generators.
62 /** Build a notification with this preset and the provided options */
65 /** Whether actions are required to use this preset. */
  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h 44 // Preset configuration.
53 // This value is used when requesting current preset, and EQ is not using a
54 // preset.
72 // client is required not to call preset-related functions.
152 // Gets a human-readable name for a preset ID. Will return "Custom" if
154 // preset The preset ID. Must be less than number of presets.
155 const char * getPresetName(int preset) const;
160 // Gets the currently set preset ID.
162 // manually since a preset was set
    [all...]

Completed in 5269 milliseconds

1 2 3 4 5 6 7 8 91011>>