/packages/apps/Stk/src/com/android/stk/ |
TonePlayer.java | 23 import com.android.internal.telephony.cat.Tone; 30 private static final HashMap<Tone, Integer> mToneMap = new HashMap<Tone, Integer>(); 33 // Map STK tone ids to the system tone ids. 34 mToneMap.put(Tone.DIAL, ToneGenerator.TONE_SUP_DIAL); 35 mToneMap.put(Tone.BUSY, ToneGenerator.TONE_SUP_BUSY); 36 mToneMap.put(Tone.CONGESTION, ToneGenerator.TONE_SUP_CONGESTION); 37 mToneMap.put(Tone.RADIO_PATH_ACK, ToneGenerator.TONE_SUP_RADIO_ACK); 38 mToneMap.put(Tone.RADIO_PATH_NOT_AVAILABLE, ToneGenerator.TONE_SUP_RADIO_NOTAVAIL) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
Tone.java | 23 * Enumeration for representing the tone values for use with PLAY TONE 28 public enum Tone implements Parcelable { 32 * Dial tone. 62 * Call waiting tone. 67 * Ringing tone. 79 * Positive acknowledgement tone. 84 * Negative acknowledgement tone. 89 * Ringing tone as selected by the user for incoming speech call. 94 * Alert tone as selected by the user for incoming SMS [all...] |
ToneSettings.java | 28 public Tone tone; field in class:ToneSettings 31 public ToneSettings(Duration duration, Tone tone, boolean vibrate) { 33 this.tone = tone; 39 tone = in.readParcelable(null); 49 dest.writeParcelable(tone, 0);
|
CommandParams.java | 88 Tone tone, Duration duration, boolean vibrate) { 91 this.settings = new ToneSettings(duration, tone, vibrate);
|
CommandParamsFactory.java | 306 // parse tone duration 772 Tone tone = null; local 777 ComprehensionTlv ctlv = searchForTag(ComprehensionTlvTag.TONE, ctlvs); 785 tone = Tone.fromInt(toneVal); 797 // parse tone duration 812 mCmdParams = new PlayToneParams(cmdDet, textMsg, tone, duration, vibrate); [all...] |
/external/v8/test/mjsunit/ |
unicode-test.js | [all...] |