OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Waveform
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/os/
VibrationEffect.java
76
* Create a
waveform
vibration.
78
*
Waveform
vibrations are a potentially repeating series of timing and amplitude pairs. For
83
* The amplitude array of the generated
waveform
will be the same size as the given
109
* Create a
waveform
vibration.
111
*
Waveform
vibrations are a potentially repeating series of timing and amplitude pairs. For
131
VibrationEffect effect = new
Waveform
(timings, amplitudes, repeat);
245
public static class
Waveform
extends VibrationEffect implements Parcelable {
250
public
Waveform
(Parcel in) {
254
public
Waveform
(long[] timings, int[] amplitudes, int repeat) {
308
if (!(o instanceof VibrationEffect.
Waveform
)) {
[
all
...]
/frameworks/base/services/core/java/com/android/server/
VibratorService.java
151
if (mEffect instanceof VibrationEffect.
Waveform
) {
152
VibrationEffect.
Waveform
waveform
= (VibrationEffect.
Waveform
) mEffect;
local
153
repeating = (
waveform
.getRepeatIndex() < 0);
383
if (effect instanceof VibrationEffect.
Waveform
) {
496
} else if (vib.mEffect instanceof VibrationEffect.
Waveform
) {
499
VibrationEffect.
Waveform
waveform
= (VibrationEffect.
Waveform
) vib.mEffect
local
[
all
...]
/frameworks/base/core/java/android/hardware/input/
InputManager.java
1172
VibrationEffect.Waveform
waveform
= (VibrationEffect.Waveform) effect;
local
[
all
...]
/frameworks/base/services/tests/notification/src/com/android/server/notification/
BuzzBeepBlinkTest.java
818
if (actual instanceof VibrationEffect.
Waveform
&&
819
((VibrationEffect.
Waveform
) actual).getRepeatIndex() == mRepeatIndex) {
822
// All non-
waveform
effects are essentially one shots.
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 218 milliseconds