/packages/services/Telecomm/src/com/android/server/telecom/ |
D | Ringer.java | 276 VibrationEffect effect; in startRinging() local 292 effect = getVibrationEffectForCall(mRingtoneFactory, foregroundCall); in startRinging() 294 effect = mDefaultVibrationEffect; in startRinging() 314 effect = getVibrationEffectForCall(mRingtoneFactory, foregroundCall); in startRinging() 325 effect = mDefaultVibrationEffect; in startRinging() 335 maybeStartVibration(foregroundCall, shouldRingForContact, effect, in startRinging() 340 maybeStartVibration(foregroundCall, shouldRingForContact, effect, in startRinging() 355 maybeStartVibration(foregroundCall, attributes.shouldRingForContact(), effect, in startRinging() 363 VibrationEffect effect, boolean isVibrationEnabled, boolean isRingerAudible) { in maybeStartVibration() argument 378 mVibrator.vibrate(effect, VIBRATION_ATTRIBUTES); in maybeStartVibration() [all …]
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/ |
D | SystemSoundsPlayer.java | 95 public void playSoundEffect(@SystemSoundEffect int effect) { in playSoundEffect() argument 99 switch (effect) { in playSoundEffect() 103 int soundPoolSoundId = getSoundPoolIdForEffect(effect); in playSoundEffect() 112 Log.w(TAG, "Invalid sound id: " + effect); in playSoundEffect() 156 private int getSoundPoolIdForEffect(@SystemSoundEffect int effect) { in getSoundPoolIdForEffect() argument 157 Integer soundPoolSoundId = mEffectIdToSoundPoolId.getOrDefault(effect, -1); in getSoundPoolIdForEffect()
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
D | IndicatorButton.java | 109 EffectSettingPopup effect = (EffectSettingPopup) inflater.inflate( in initializePopup() local 111 effect.initialize(mPreference); in initializePopup() 112 effect.setSettingChangedListener(this); in initializePopup() 113 mPopup = effect; in initializePopup()
|
/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
D | TestUserEventLogger.java | 247 public void logEffectApply(String effect, int status, long timeElapsedMillis, int resultCode) { in logEffectApply() argument 248 mWallpaperApplyEffect = effect; in logEffectApply() 255 public void logEffectProbe(String effect, @EffectStatus int status) { in logEffectProbe() argument 256 mWallpaperProbeEffect = effect; in logEffectProbe()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
D | WallpaperInfo.java | 266 public void removeEffectName(String effect) { 267 mEffectNames.remove(effect); 273 public void addEffectName(String effect) { 274 mEffectNames.add(effect);
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastAlertAudio.java | 474 VibrationEffect effect = VibrationEffect.createWaveform(vibrationPattern, repeatIndex); in playAlertTone() local 475 log("vibrate: effect=" + effect + ", attr=" + attr + ", duration=" in playAlertTone() 477 mVibrator.vibrate(effect, attr); in playAlertTone() 482 mScreenOffReceiver = new ScreenOffReceiver(effect, attr); in playAlertTone() 819 ScreenOffReceiver(VibrationEffect effect, AudioAttributes attributes) { in ScreenOffReceiver() argument 820 this.mVibrationEffect = effect; in ScreenOffReceiver()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/effects/ |
D | EffectsController.java | 60 public void generateEffect(Effect effect, Uri image) { in generateEffect() argument 105 void onEffectFinished(EffectEnumInterface effect, Bundle bundle, int error, in onEffectFinished() argument
|
/packages/apps/ThemePicker/src/com/android/customization/module/ |
D | StatsLogUserEventLogger.java | 180 public void logEffectApply(String effect, @EffectStatus int status, long timeElapsedMillis, in logEffectApply() argument 185 .setEffectIdHash(getIdHashCode(effect)) in logEffectApply() 192 public void logEffectProbe(String effect, @EffectStatus int status) { in logEffectProbe() argument 196 .setEffectIdHash(getIdHashCode(effect)) in logEffectProbe()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | NoOpUserEventLogger.java | 151 public void logEffectApply(String effect, int status, long timeElapsedMillis, int resultCode) { in logEffectApply() argument 156 public void logEffectProbe(String effect, int status) { in logEffectProbe() argument
|
D | UserEventLogger.java | 200 void logEffectApply(String effect, @EffectStatus int status, long timeElapsedMillis, in logEffectApply() argument 206 void logEffectProbe(String effect, @EffectStatus int status); in logEffectProbe() argument
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
D | ActivityMusic.java | 299 for (final Descriptor effect : effects) { in onCreate() 300 Log.v(TAG, effect.name.toString() + ", type: " + effect.type.toString()); in onCreate() 302 if (effect.type.equals(AudioEffect.EFFECT_TYPE_VIRTUALIZER)) { in onCreate() 305 } else if (effect.type.equals(AudioEffect.EFFECT_TYPE_BASS_BOOST)) { in onCreate() 307 } else if (effect.type.equals(AudioEffect.EFFECT_TYPE_EQUALIZER)) { in onCreate() 309 } else if (effect.type.equals(AudioEffect.EFFECT_TYPE_PRESET_REVERB)) { in onCreate()
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
D | EffectsRecorder.java | 276 public void setEffect(int effect, Object effectParameter) { in setEffect() argument 278 "setEffect: effect ID " + effect + in setEffect() 289 mEffect = effect; in setEffect() 860 private void sendMessage(final int effect, final int msg) { in sendMessage() argument 864 mEffectsListener.onEffectsUpdate(effect, msg); in sendMessage()
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
D | ModeListView.java | 862 PeepholeAnimationEffect effect = new PeepholeAnimationEffect(); in SelectedState() local 863 effect.setSize(mWidth, mHeight); in SelectedState() 878 effect.setAnimationStartingPosition(iconX, iconY); in SelectedState() 879 effect.setModeSpecificColor(selectedItem.getHighlightColor()); in SelectedState() 881 effect.setBackground(mScreenShotProvider in SelectedState() 884 effect.setBackgroundOverlay(mScreenShotProvider.getPreviewOverlayAndControls()); in SelectedState() 886 mCurrentAnimationEffects = effect; in SelectedState() 887 effect.startFadeoutAnimation(null, selectedItem, iconX, iconY, modeId); in SelectedState()
|
/packages/modules/Bluetooth/system/audio_bluetooth_hw/ |
D | stream_apis.cc | 586 effect_handle_t effect) { in out_add_audio_effect() argument 589 << ", effect=" << effect; in out_add_audio_effect() 594 effect_handle_t effect) { in out_remove_audio_effect() argument 597 << ", effect=" << effect; in out_remove_audio_effect() 1013 effect_handle_t effect) { in in_add_audio_effect() argument 1016 << ", effect=" << effect; in in_add_audio_effect() 1021 effect_handle_t effect) { in in_remove_audio_effect() argument 1024 << ", effect=" << effect; in in_remove_audio_effect()
|
/packages/apps/Car/SystemUI/res/raw/ |
D | vertical_blur_fragment_shader.glsl | 15 * vertically adjacent to it to produce a blur effect along the y-axis of the texture
|
D | horizontal_blur_fragment_shader.glsl | 15 * horizontally adjacent to it to produce a blur effect along the x-axis of the texture
|
/packages/modules/GeoTZ/tzbb_data/ |
D | DATA_LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/canonicalizetzs2polygons/data/input_polygons/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2polygons_tzs2cellunions/data/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/tzs2cellunions_to_tzs2ranges/data/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/mergetzs2ranges/data/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/geojsontz_to_tzs2polygons/data/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/data_pipeline/src/test/java/com/android/timezone/location/data_pipeline/steps/createtzs2protodatafile/data/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|
/packages/modules/GeoTZ/output_data/odbl/ |
D | LICENSE | 135 2.1. Legal effect of this document. This License is: 359 rights granted under it, or have the effect or intent of restricting 373 the effect or intent of restricting the ability of any person to 383 granted under it or have the effect or intent of restricting the 474 automatically terminates this License with immediate effect and without 513 License will continue in full force and effect unless terminated as 532 10.4 Choice of law. This License takes effect in and will be governed by
|