HomeSort by relevance Sort by last modified time
    Searched defs:tones (Results 1 - 3 of 3) sorted by null

  /external/webrtc/talk/app/webrtc/
dtmfsender.cc 59 // tones must be at least 50 ms.
133 bool DtmfSender::InsertDtmf(const std::string& tones, int duration,
140 LOG(LS_ERROR) << "InsertDtmf is called with invalid duration or tones gap. "
143 << "The gap between tones must be at least " << kDtmfMinGapMs << "ms.";
153 tones_ = tones;
167 std::string DtmfSender::tones() const { function in class:webrtc::DtmfSender
218 // seconds before processing the next character in the tones parameter.
dtmfsender_unittest.cc 62 const std::vector<std::string>& tones() const { function in class:FakeDtmfObserver
157 // Constructs a list of DtmfInfo from |tones|, |duration| and
159 void GetDtmfInfoFromString(const std::string& tones, int duration,
166 std::string::const_iterator it = tones.begin();
167 for (; it != tones.end(); ++it) {
182 const std::string& tones,
185 EXPECT_EQ(tones, dtmf_->tones());
191 void VerifyOnProvider(const std::string& tones, int duration,
194 GetDtmfInfoFromString(tones, duration, inter_tone_gap, &dtmf_queue_ref)
220 const std::vector<std::string>& tones = observer_->tones(); local
246 std::string tones = "@1%a&*$"; local
282 std::string tones = "@1%a&*$"; local
296 std::string tones = "@1%a&*$"; local
331 std::string tones = "3,4"; local
342 std::string tones = "3,4"; local
350 std::string tones = "3,4"; local
    [all...]
peerconnection_unittest.cc 525 // We don't need to verify that the DTMF tones are actually sent out because
529 std::vector<std::string> tones; local
530 tones.push_back("1");
531 tones.push_back("a");
532 tones.push_back("");
533 observer->Verify(tones);
723 void Verify(const std::vector<std::string>& tones) const {
724 ASSERT_TRUE(tones_.size() == tones.size());
725 EXPECT_TRUE(std::equal(tones.begin(), tones.end(), tones_.begin()))
    [all...]

Completed in 90 milliseconds