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);
  /external/chromium_org/content/renderer/media/
rtc_dtmf_sender_handler.cc 49 void RtcDtmfSenderHandler::OnToneChange(const std::string& tone) {
54 webkit_client_->didPlayTone(UTF8ToUTF16(tone));
rtc_dtmf_sender_handler.h 42 virtual void OnToneChange(const std::string& tone) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCDTMFSenderHandler.cpp 74 void RTCDTMFSenderHandler::didPlayTone(const WebString& tone) const
77 m_client->didPlayTone(tone);
RTCDTMFSenderHandler.h 53 virtual void didPlayTone(const WebKit::WebString& tone) const OVERRIDE;
  /external/icu4c/layout/
ThaiShaping.cpp 63 LEUnicode ThaiShaping::lowerRightTone(LEUnicode tone, le_uint8 glyphSet)
72 if (tone >= CH_MAITAIKHU && tone <= CH_NIKHAHIT) {
73 return lowerRightTones[glyphSet][tone - CH_MAITAIKHU];
76 return tone;
79 LEUnicode ThaiShaping::lowerLeftTone(LEUnicode tone, le_uint8 glyphSet)
88 if (tone >= CH_MAITAIKHU && tone <= CH_NIKHAHIT) {
89 return lowerLeftTones[glyphSet][tone - CH_MAITAIKHU];
92 return tone;
    [all...]
ThaiShaping.h 94 static LEUnicode lowerRightTone(LEUnicode tone, le_uint8 glyphSet);
95 static LEUnicode lowerLeftTone(LEUnicode tone, le_uint8 glyphSet);
96 static LEUnicode upperLeftTone(LEUnicode tone, le_uint8 glyphSet);
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
HDRRenderer.java 78 private Material tone; field in class:HDRRenderer
237 tone.setFloat("A", exposure);
238 tone.setFloat("White", whiteLevel);
239 tone.setTexture("Lum", scene1[oppSrc]);
240 tone.setTexture("Lum2", scene1[curSrc]);
241 tone.setFloat("BlendFactor", blendFactor);
242 renderProcessing(r, out, tone);
271 tone.setTexture("Texture", mainScene);
322 tone = new Material(manager, "Common/MatDefs/Hdr/ToneMap.j3md");
323 tone.setFloat("A", 0.18f);
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 24 void tone(uint8_t _pin, unsigned int frequency, unsigned long duration = 0);
  /external/libvorbis/lib/
Makefile.am 29 EXTRA_PROGRAMS = barkmel tone psytune
33 tone_SOURCES = tone.c
psy.h 136 float *tone,
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
vad1.h 115 /* Note that each of the following three variables (vadreg, pitch and tone)
120 Word16 tone; /* flags for tone detection */ member in struct:__anon31423
  /hardware/libhardware_legacy/audio/
AudioPolicyCompatClient.h 72 virtual status_t startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream);
  /hardware/libhardware/include/hardware/
bt_hf.h 103 * tone contains the dtmf character to be sent
105 typedef void (* bthf_dtmf_cmd_callback)(char tone);

Completed in 730 milliseconds

1 2