HomeSort by relevance Sort by last modified time
    Searched refs:tone (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDTMFSenderHandlerClient.h 37 virtual void didPlayTone(const WebString& tone) const = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFToneChangeEvent.idl 30 [InitializedByEventConstructor] readonly attribute DOMString tone;
RTCDTMFToneChangeEvent.h 35 String tone; member in struct:WebCore::RTCDTMFToneChangeEventInit
43 static PassRefPtr<RTCDTMFToneChangeEvent> create(const String& tone);
46 const String& tone() const;
52 explicit RTCDTMFToneChangeEvent(const String& tone);
RTCDTMFToneChangeEvent.cpp 38 PassRefPtr<RTCDTMFToneChangeEvent> RTCDTMFToneChangeEvent::create(const String& tone)
40 return adoptRef(new RTCDTMFToneChangeEvent(tone));
54 RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone)
56 , m_tone(tone)
63 , m_tone(initializer.tone)
72 const String& RTCDTMFToneChangeEvent::tone() const function in class:WebCore::RTCDTMFToneChangeEvent
RTCDTMFSender.cpp 125 void RTCDTMFSender::didPlayTone(const String& tone)
127 scheduleDispatchEvent(RTCDTMFToneChangeEvent::create(tone));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
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);
51 dest.writeParcelable(tone, 0);
CommandParams.java 90 Tone tone, Duration duration, boolean vibrate) {
93 mSettings = new ToneSettings(duration, tone, vibrate);
  /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...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
dtmfsenderinterface.h 45 // Triggered when DTMF |tone| is sent.
46 // If |tone| is empty that means the DtmfSender has sent out all the given
48 virtual void OnToneChange(const std::string& tone) = 0;
89 // Returns the current tone duration value in ms.
94 // Returns the current value of the between-tone gap in ms.
dtmfsender.cc 47 // | 0--9 | 0--9 | tone | yes |
48 // | * | 10 | tone | yes |
49 // | # | 11 | tone | yes |
50 // | A--D | 12--15 | tone | yes |
53 // 2 seconds before processing the next tone. We use -1 as its code.
67 bool GetDtmfCode(char tone, int* code) {
69 char event = toupper(tone);
195 // Get the first DTMF tone from the tone buffer. Unrecognized characters will
207 char tone = tones_[first_tone_pos] local
    [all...]
dtmfsender_unittest.cc 53 virtual void OnToneChange(const std::string& tone) OVERRIDE {
54 LOG(LS_VERBOSE) << "FakeDtmfObserver::OnToneChange '" << tone << "'.";
55 tones_.push_back(tone);
56 if (tone.empty()) {
167 char tone = *it; local
169 webrtc::GetDtmfCode(tone, &code);
170 if (tone == ',') {
264 // Wait until the first tone got sent.
267 // Insert with another tone buffer.
285 // Wait until the first tone got sent
    [all...]
dtmfsender.h 58 // The |duration| indicates the length of the DTMF tone in ms.
134 bool GetDtmfCode(char tone, int* code);