Searched defs:tone (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDTMFToneChangeEvent.h35 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);
H A DRTCDTMFToneChangeEvent.cpp38 PassRefPtr<RTCDTMFToneChangeEvent> RTCDTMFToneChangeEvent::create(const String& tone) argument
40 return adoptRef(new RTCDTMFToneChangeEvent(tone));
54 RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone) argument
56 , m_tone(tone)
63 , m_tone(initializer.tone)
72 const String& RTCDTMFToneChangeEvent::tone() const function in class:WebCore::RTCDTMFToneChangeEvent
H A DRTCDTMFSender.cpp125 void RTCDTMFSender::didPlayTone(const String& tone) argument
127 scheduleDispatchEvent(RTCDTMFToneChangeEvent::create(tone));
/external/chromium_org/content/renderer/media/
H A Drtc_dtmf_sender_handler.cc49 void RtcDtmfSenderHandler::OnToneChange(const std::string& tone) { argument
54 webkit_client_->didPlayTone(UTF8ToUTF16(tone));
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddtmfsender.cc47 // | 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) { argument
69 char event = toupper(tone);
195 // Get the first DTMF tone from the tone buffer. Unrecognized characters will
207 char tone local
[all...]
H A Ddtmfsender_unittest.cc53 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 go
[all...]
H A Dpeerconnection_unittest.cc495 void OnToneChange(const std::string& tone) { argument
496 tones_.push_back(tone);
497 if (tone.empty()) {
/external/arduino/hardware/arduino/cores/arduino/
H A DTone.cpp230 void tone(uint8_t _pin, unsigned int frequency, unsigned long duration) function
411 // currently). for the others, it should end the tone, but won't restore
537 // timer gets initialized next time we call tone().
/external/icu4c/layout/
H A DThaiShaping.cpp63 LEUnicode ThaiShaping::lowerRightTone(LEUnicode tone, le_uint8 glyphSet) argument
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) argument
88 if (tone >= CH_MAITAIKHU && tone <= CH_NIKHAHIT) {
89 return lowerLeftTones[glyphSet][tone - CH_MAITAIKHU];
92 return tone;
95 upperLeftTone(LEUnicode tone, le_uint8 glyphSet) argument
[all...]
/external/libvorbis/lib/
H A Dmapping0.c372 float *tone = _vorbis_block_alloc(vb,n/2*sizeof(*tone)); local
442 vector. This includes tone masking, peak limiting and ATH */
446 tone,
453 _analysis_output("toneL",seq,tone,n/2,1,0,0);
455 _analysis_output("toneR",seq,tone,n/2,1,0,0);
457 _analysis_output("tone",seq,tone,n/2,1,0,0);
461 /* third step; we offset the noise vectors, overlay tone
473 tone,
[all...]
H A Dpsy.c165 to the tone data to be pessimistic and thus apply the minimum
766 /* tone masking */
774 float *tone,
788 logmask[i]=max(val,tone[i]+toneatt);
772 _vp_offset_and_mix(vorbis_look_psy *p, float *noise, float *tone, int offset_select, float *logmask, float *mdct, float *logmdct) argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcall.cc345 // Check to see if we have a queued tone
349 int tone = queued_dtmf_.front(); local
352 LOG(LS_INFO) << "Call::ContinuePlayDTMF(" << tone << ")";
357 voice_channel->PressDTMF(tone, true);
361 // Post a message to play the next tone or at least clear the playing_dtmf_
/external/jmonkeyengine/engine/src/core/com/jme3/post/
H A DHDRRenderer.java78 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
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dcall.cc620 // Check to see if we have a queued tone
624 int tone = queued_dtmf_.front(); local
627 LOG(LS_INFO) << "Call::ContinuePlayDTMF(" << tone << ")";
631 it->second.voice_channel->PressDTMF(tone, true);
635 // Post a message to play the next tone or at least clear the playing_dtmf_
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h717 UINT16 tone[2]; /* left/right 12 bit frequency 0 - 4096Hz */ member in struct:__anon1498

Completed in 1498 milliseconds