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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDTMFToneChangeEvent.idl 30 [InitializedByEventConstructor] readonly attribute DOMString tone;
RTCDTMFToneChangeEvent.cpp 36 PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> RTCDTMFToneChangeEvent::create(const String& tone)
38 return adoptRefWillBeNoop(new RTCDTMFToneChangeEvent(tone));
52 RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone)
54 , m_tone(tone)
61 , m_tone(initializer.tone)
70 const String& RTCDTMFToneChangeEvent::tone() const function in class:WebCore::RTCDTMFToneChangeEvent
RTCDTMFToneChangeEvent.h 35 String tone; member in struct:WebCore::RTCDTMFToneChangeEventInit
43 static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const String& tone);
46 const String& tone() const;
54 explicit RTCDTMFToneChangeEvent(const String& tone);
RTCDTMFSender.cpp 127 void RTCDTMFSender::didPlayTone(const blink::WebString& tone)
129 scheduleDispatchEvent(RTCDTMFToneChangeEvent::create(tone));
  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDTMFSenderHandlerClient.h 38 virtual void didPlayTone(const WebString& tone) = 0;
  /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(base::UTF8ToUTF16(tone));
rtc_dtmf_sender_handler.h 42 virtual void OnToneChange(const std::string& tone) OVERRIDE;
  /external/icu/icu4c/source/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/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,
mapping0.c 372 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...]
  /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:__anon37906
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 107 * @param toneToPlay The tone to play on disconnect, as defined in {@link ToneGenerator}.
160 * Returns the tone to play when disconnected.
162 * @return the tone as defined in {@link ToneGenerator} to play when disconnected.
175 int tone = source.readInt();
176 return new DisconnectCause(code, label, description, reason, tone);
261 + " Tone: (" + mToneToPlay + ") ]";
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallTonePlayer.java 25 * Play a call-related tone (ringback, busy signal, etc.) through ToneGenerator. To use, create an
26 * instance using InCallTonePlayer.Factory (passing in the TONE_* constant for the tone you want)
27 * and start() it. Implemented on top of {@link Thread} so that the tone plays in its own thread.
41 InCallTonePlayer createPlayer(int tone) {
42 return new InCallTonePlayer(tone, mCallAudioManager);
66 // Buffer time (in msec) to add on to the tone timeout value. Needed mainly when the timeout
67 // value for a tone is exact duration of the tone itself.
70 // The tone state.
86 /** The ID of the tone to play. *
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyCompatClient.h 72 virtual status_t startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream);
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-hangul.cc 152 * - 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
195 /* Tone mark follows a valid syllable; move it in front, unless it's zero width. */
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 mar
    [all...]

Completed in 402 milliseconds

1 2 3