/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue5373.go | 26 fmt.Printf("index after range with side-effect = %d want %d\n", i, want) 36 fmt.Printf("index after range without side-effect = %d want %d\n", i, want)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue5373.go | 26 fmt.Printf("index after range with side-effect = %d want %d\n", i, want) 36 fmt.Printf("index after range without side-effect = %d want %d\n", i, want)
|
/system/media/audio_effects/include/audio_effects/ |
effect_equalizer.h | 32 /* enumerated parameters for Equalizer effect */ 41 EQ_PARAM_GET_BAND, // Gets the band that has the most effect on the given
|
/external/mockftpserver/MockFtpServer/src/site/apt/ |
fakeftpserver-features.apt | 94 * Transmission mode other than 'Stream'. The STRU command is implemented but has no effect (NOOP).
100 * Record Structure and Page Structure. The STRU command is implemented but has no effect (NOOP).
102 * Error Recovery and Restart. The REST command is implemented but has no effect (NOOP).
104 * Structure Mount. The SMNT command is implemented but has no effect (NOOP).
106 * Abort. The ABOR command is implemented but has no effect (NOOP).
108 * Allocate. The ALLO command is implemented but has no effect (NOOP).
|
/external/skia/src/gpu/gl/ |
GrGLProgramDesc.cpp | 56 * be dependent on properties of the effect that the effect itself doesn't use 58 * every effect using this function. It is also responsible for inserting the effect's class ID 59 * which must be different for every GrProcessor subclass. It can fail if an effect uses too many 112 // Make room for everything up to the effect keys.
|
/external/skia/src/gpu/vk/ |
GrVkProgramDesc.cpp | 43 * be dependent on properties of the effect that the effect itself doesn't use 45 * every effect using this function. It is also responsible for inserting the effect's class ID 46 * which must be different for every GrProcessor subclass. It can fail if an effect uses too many 99 // Make room for everything up to the effect keys.
|
/external/v8/test/mjsunit/compiler/ |
simple-inlining.js | 32 // Effect context. 54 // Effect context. 76 // Effect context. 98 // Effect context. 120 // Effect context. 143 // Effect context.
|
inline-param.js | 32 // Effect context. 55 // Effect context. 69 // Effect context.
|
inline-two.js | 32 // Effect context. 55 // Effect context. 80 // Effect context.
|
/packages/apps/Camera2/src/com/android/camera/widget/ |
RoundedThumbnailView.java | 46 * A view that shows a pop-out effect for a thumbnail image as the new capture indicator design for 79 // Configurations for the thumbnail pop-out effect. 85 // Configurations for the ripple effect. 90 // Configurations for the hit-state effect. 108 // Fields for the thumbnail pop-out effect. 115 /** The duration of the stretch phase in thumbnail pop-out effect. */ 117 /** The duration of the shrink phase in thumbnail pop-out effect. */ 121 * thumbnail pop-out effect. 126 * pop-out effect. 131 * pop-out effect [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/core-animation/ |
core-animation.html | 116 * Controls the composition behavior. If set to "replace", the effect overrides 117 * the underlying value for the target. If set the "add", the effect is added to 118 * the underlying value for the target. If set to "accumulate", the effect is 145 * Controls the effect the animation has on the target when it's not playing. 148 * "none" means the animation has no effect when it's not playing. 153 * before it starts playing and has no effect when the animation finishes. 203 * Number of iterations into the animation in which to begin the effect. 217 * Controls the iteration composition behavior. If set to "replace", the effect for 218 * every iteration is independent of each other. If set to "accumulate", the effect 427 var effect; [all...] |
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
BassBoostTest.java | 186 public void setEffect(Object effect) { 187 mBassBoost = (BassBoost)effect; 196 public void onEnableStatusChange(AudioEffect effect, boolean enabled) { 199 public void onControlStatusChange(AudioEffect effect, boolean controlGranted) { 202 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { 232 Log.e(TAG,"BassBoost effect not supported"); 238 Log.e(TAG,"BassBoost effect not found");
|
/frameworks/wilhelm/src/itf/ |
IEffectSend.c | 30 /** \brief This is a private function that validates the effect interface specified by the 41 // Make sure this effect send is on an audio player, not a MIDI player 55 SL_LOGE("EffectSend on unknown aux effect %p", pAuxEffect); 59 // Validate that the application has a valid interface for the effect. The interface must have 93 /** \brief This is a private function that translates an Android effect framework status code 137 // check which effect the send is attached to, attach and set level 150 SL_LOGE("EffectSend unknown aux effect %p", pAuxEffect);
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
ControlPanelEffect.java | 70 // Effect/audio session Mappings 85 * Map containing the Virtualizer audio session, effect mappings. 90 * Map containing the BB audio session, effect mappings. 95 * Map containing the EQ audio session, effect mappings. 100 * Map containing the PR audio session, effect mappings. 131 // EQ effect properties which are invariable over all EQ effects sessions 191 Log.d(TAG, "Releasing dummy Virtualizer effect"); 209 // MediaPlayer and create effect on it to retrieve the invariable EQ properties 215 Log.d(TAG, "Creating dummy EQ effect on session " + session); 247 Log.d(TAG, "Releasing dummy EQ effect"); [all...] |
ActivityMusic.java | 86 * Indicates if Virtualizer effect is supported. 91 * Indicates if BassBoost effect is supported. 95 * Indicates if Equalizer effect is supported. 99 * Indicates if Preset Reverb effect is supported. 258 for (final Descriptor effect : effects) { 259 Log.v(TAG, effect.name.toString() + ", type: " + effect.type.toString()); 261 if (effect.type.equals(AudioEffect.EFFECT_TYPE_VIRTUALIZER)) { 263 if (effect.uuid.equals(UUID.fromString("1d4033c0-8557-11df-9f2d-0002a5d5c51b"))) { 266 } else if (effect.type.equals(AudioEffect.EFFECT_TYPE_BASS_BOOST)) [all...] |
/frameworks/base/media/java/android/media/audiofx/ |
PresetReverb.java | 42 * <p>The PresetReverb is an output mix auxiliary effect and should be created on 43 * Audio session 0. In order for a MediaPlayer or AudioTrack to be fed into this effect, 44 * they must be explicitely attached to it and a send level must be specified. Use the effect ID 45 * returned by getId() method to designate this particular effect when attaching it to the 114 * parameter indicates how much the requesting application needs control of effect parameters. 119 * As the PresetReverb is an auxiliary effect it is recommended to instantiate it on 170 * @param effect the PresetReverb on which the interface is registered. 175 void onParameterChange(PresetReverb effect, int status, int param, short value); 186 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) {
|
Virtualizer.java | 33 * An audio virtualizer is a general name for an effect to spatialize audio channels. The exact 34 * behavior of this effect is dependent on the number of audio input channels and the types and 36 * stereo headphone output, a stereo widening effect is used when this effect is turned on. 63 * Virtualizer effect strength. Parameter ID for 107 * how much the requesting application needs control of effect parameters. The normal priority 141 * Sets the strength of the virtualizer effect. If the implementation does not support per mille 145 * @param strength strength of the effect. The valid range for strength strength is [0, 1000], 146 * where 0 per mille designates the mildest effect and 1000 per mille designates the strongest. 157 * Gets the current strength of the effect [all...] |
/external/mesa3d/docs/OLD/ |
MESA_sprite_point.spec | 52 Texgen and the texture matrix have no effect on the point's s and t 68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however. 79 POLYGON_MODE does not effect the rasterization of the quadrilateral. 150 normal point sampling rules. POLYGON_MODE does not effect the 153 POINT_SMOOTH has no effect when SPRITE_POINT_MESA is enabled.
|
/external/zopfli/src/zopfli/ |
util.h | 73 limit the max hash chain hits for this hash value. This has an effect only 84 consumes a lot of memory but speeds it up. No effect on compression size. 92 This has no effect on the compression result, and enabling it increases speed. 101 This has no effect on the compression result, only on speed. 114 better result of ZopfliLZ77Greedy, but the effect this has on the optimal LZ77
|
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Tables.c | 367 /* Compression 100% effect */ 368 /* Compression 0% effect */ 369 /* Gain 100% effect */ 370 /* Gain 0% effect */ 374 /* 0 is 0dB compression (no effect) */
|
/frameworks/av/services/audiopolicy/service/ |
AudioPolicyEffects.h | 52 // Return a list of effect descriptors for default input effects 68 // Return a list of effect descriptors for default output effects 141 // Enable or disable all effects in effect vector 164 // Load all automatic effect configurations 169 // Load all automatic effect parameters
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
EffectsRecorder.java | 123 /** Determine if a given effect is supported at runtime 276 public void setEffect(int effect, Object effectParameter) { 278 "setEffect: effect ID " + effect + 289 mEffect = effect; 433 Log.v(TAG, "Effect initializing. Preview size " 457 throw new RuntimeException("Unknown effect ID" + mEffect + "!"); 476 throw new RuntimeException("Unable to connect camera to effect input", e); 527 throw new RuntimeException("No effect selected!"); 530 throw new RuntimeException("No effect parameter provided!") [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CornerPathEffectTest.java | 47 PathEffect effect = new CornerPathEffect(RADIUS); local 53 pathPaint.setPathEffect(effect); 58 // draw the path using the corner path effect
|
/external/clang/test/SemaObjC/ |
arc-unavailable-for-weakref.m | 19 // expected-error {{explicit ownership qualifier on cast result has no effect}} 35 // expected-error {{explicit ownership qualifier on cast result has no effect}} 48 // expected-error {{explicit ownership qualifier on cast result has no effect}}
|
/external/replicaisland/src/com/replica/replicaisland/ |
LauncherComponent.java | 126 GameObject effect = factory.spawn(mLaunchEffect, local 130 if (effect != null) { 131 manager.add(effect);
|