Searched refs:tone (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDTMFToneChangeEvent.idl30 [InitializedByEventConstructor] readonly attribute DOMString tone;
H A DRTCDTMFToneChangeEvent.cpp36 PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> RTCDTMFToneChangeEvent::create(const String& tone) argument
38 return adoptRefWillBeNoop(new RTCDTMFToneChangeEvent(tone));
51 RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone) argument
53 , m_tone(tone)
59 , m_tone(initializer.tone)
67 const String& RTCDTMFToneChangeEvent::tone() const function in class:blink::RTCDTMFToneChangeEvent
H A DRTCDTMFToneChangeEvent.h35 String tone; member in struct:blink::RTCDTMFToneChangeEventInit
44 static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const String& tone);
47 const String& tone() const;
55 explicit RTCDTMFToneChangeEvent(const String& tone);
H A DRTCDTMFSender.cpp125 void RTCDTMFSender::didPlayTone(const WebString& tone) argument
127 scheduleDispatchEvent(RTCDTMFToneChangeEvent::create(tone));
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCDTMFSenderHandlerClient.h39 virtual void didPlayTone(const WebString& tone) = 0;
/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(base::UTF8ToUTF16(tone));
H A Drtc_dtmf_sender_handler.h42 virtual void OnToneChange(const std::string& tone) OVERRIDE;
/external/icu/icu4c/source/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...]
H A DThaiShaping.h94 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/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddtmfsenderinterface.h45 // 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.
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 Ddtmfsender.h58 // The |duration| indicates the length of the DTMF tone in ms.
134 bool GetDtmfCode(char tone, int* code);
H A Dpeerconnection_unittest.cc523 void OnToneChange(const std::string& tone) { argument
524 tones_.push_back(tone);
525 if (tone.empty()) {
/external/arduino/hardware/arduino/cores/arduino/
H A DWProgram.h24 void tone(uint8_t _pin, unsigned int frequency, unsigned long duration = 0);
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/libvorbis/lib/
H A DMakefile.am29 EXTRA_PROGRAMS = barkmel tone psytune
33 tone_SOURCES = tone.c
H A Dpsy.h136 float *tone,
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...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-hangul.cc152 * - If a valid syllable is followed by a Hangul tone mark, reorder the tone
189 * We could cache the width of the tone marks and the existence of dotted-circle,
190 * but the use of the Hangul tone mark characters seems to be rare enough that
200 hb_glyph_info_t tone = info[end]; local
202 info[start] = tone;
204 /* Merge clusters across the (possibly reordered) syllable+tone.
205 * We want to merge even in the zero-width tone mark case here,
206 * so that clustering behavior isn't dependent on how the tone mark
213 /* No valid syllable as base for tone mar
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-complex-hangul.cc161 * - If a valid syllable is followed by a Hangul tone mark, reorder the tone
198 * We could cache the width of the tone marks and the existence of dotted-circle,
199 * but the use of the Hangul tone mark characters seems to be rare enough that
209 hb_glyph_info_t tone = info[end]; local
211 info[start] = tone;
213 /* Merge clusters across the (possibly reordered) syllable+tone.
214 * We want to merge even in the zero-width tone mark case here,
215 * so that clustering behavior isn't dependent on how the tone mark
222 /* No valid syllable as base for tone mar
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice_neon.S30 @ testing speech and tone vectors.
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice_neon.S30 @ testing speech and tone vectors.
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dcall.cc635 // Check to see if we have a queued tone
639 int tone = queued_dtmf_.front(); local
642 LOG(LS_INFO) << "Call::ContinuePlayDTMF(" << tone << ")";
646 it->second.voice_channel->PressDTMF(tone, true);
650 // Post a message to play the next tone or at least clear the playing_dtmf_
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h492 UINT16 tone[2]; /* left/right 12 bit frequency 0 - 4096Hz */ member in struct:__anon1645

Completed in 499 milliseconds

12