Home | History | Annotate | Download | only in cts

Lines Matching defs:mTts

36     private TextToSpeechWrapper mTts;
42 mTts = TextToSpeechWrapper.createTextToSpeechMockWrapper(getContext());
43 assertNotNull(mTts);
49 mTts.shutdown();
53 return mTts.getTts();
66 assertTrue("synthesizeToFile() completion timeout", mTts.waitForComplete("mocktofile"));
73 mTts.verify("mocktofile");
75 final Map<String, Integer> chunksReceived = mTts.chunksReceived();
76 final Map<String, List<Integer>> timePointsStart = mTts.timePointsStart();
77 final Map<String, List<Integer>> timePointsEnd = mTts.timePointsEnd();
78 final Map<String, List<Integer>> timePointsFrame = mTts.timePointsFrame();
92 mTts.verify("mockspeak");
94 final Map<String, Integer> chunksReceived = mTts.chunksReceived();
115 assertTrue("speak() stop callback timeout", mTts.waitForStop(
139 assertTrue("speak() stop callback timeout", mTts.waitForStop("stop"));
162 return mTts.waitForComplete(utteranceId);