Home
last modified time | relevance | path

Searched refs:tts (Results 1 – 25 of 53) sorted by relevance

123

/external/ltp/lib/
Dtst_clocks.c30 static struct tst_ts tts = { 0, }; in tst_clock_getres() local
37 tts.type = TST_KERN_TIMESPEC; in tst_clock_getres()
43 tts.type = TST_KERN_OLD_TIMESPEC; in tst_clock_getres()
52 ret = func(clk_id, tst_ts_get(&tts)); in tst_clock_getres()
53 res->tv_sec = tst_ts_get_sec(tts); in tst_clock_getres()
54 res->tv_nsec = tst_ts_get_nsec(tts); in tst_clock_getres()
60 static struct tst_ts tts = { 0, }; in tst_clock_gettime() local
67 tts.type = TST_KERN_TIMESPEC; in tst_clock_gettime()
73 tts.type = TST_KERN_OLD_TIMESPEC; in tst_clock_gettime()
82 ret = func(clk_id, tst_ts_get(&tts)); in tst_clock_gettime()
[all …]
/external/rust/crates/tokio/src/macros/
Dthread_local.rs10 ($($tts:tt)+) => { loom::thread_local!{ $($tts)+ } }
16 ($($tts:tt)+) => {
17 ::std::thread_local!{ $($tts)+ }
31 ($($tts:tt)+) => { ::std::thread_local!{ $($tts)+ } }
/external/rust/crates/proc-macro-error/src/
Dmacros.rs114 ($span:expr, $($tts:tt)*) => {
115 $crate::diagnostic!($span, $crate::Level::Error, $($tts)*).abort()
128 ($($tts:tt)*) => {
129 $crate::abort!($crate::__export::proc_macro2::Span::call_site(), $($tts)*)
145 ($span:expr, $($tts:tt)*) => {{
147 $crate::diagnostic!($span, level, $($tts)*).emit()
160 ($($tts:tt)*) => {
161 $crate::emit_error!($crate::__export::proc_macro2::Span::call_site(), $($tts)*)
175 ($span:expr, $($tts:tt)*) => {
176 $crate::diagnostic!($span, $crate::Level::Warning, $($tts)*).emit()
[all …]
/external/rust/crates/proc-macro2/src/
Dwrapper.rs84 TokenStream::Compiler(tts) => tts.is_empty(), in is_empty()
85 TokenStream::Fallback(tts) => tts.is_empty(), in is_empty()
127 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt()
128 TokenStream::Fallback(tts) => Display::fmt(tts, f), in fmt()
221 TokenStream::Compiler(tts) => { in extend()
224 tts.extra.push(into_compiler_token(token)); in extend()
227 TokenStream::Fallback(tts) => tts.extend(stream), in extend()
235 TokenStream::Compiler(tts) => { in extend()
236 tts.evaluate_now(); in extend()
237 tts.stream in extend()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTextToSpeech.java10 import android.speech.tts.TextToSpeech;
11 import android.speech.tts.TextToSpeech.Engine;
12 import android.speech.tts.UtteranceProgressListener;
24 @RealObject private TextToSpeech tts; field in ShadowTextToSpeech
49 return Shadow.directlyOn(tts, TextToSpeech.class).speak(text, queueMode, params); in speak()
103 return ReflectionHelpers.getField(tts, "mUtteranceProgressListener"); in getUtteranceProgressListener()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTextToSpeech.java12 import android.speech.tts.TextToSpeech;
13 import android.speech.tts.TextToSpeech.Engine;
14 import android.speech.tts.UtteranceProgressListener;
15 import android.speech.tts.Voice;
46 @RealObject private TextToSpeech tts; field in ShadowTextToSpeech
77 lastTextToSpeechInstance = tts; in __constructor__()
80 tts, in __constructor__()
118 return reflector(TextToSpeechReflector.class, tts).speak(text, queueMode, params); in speak()
255 return ReflectionHelpers.getField(tts, "mUtteranceProgressListener"); in getUtteranceProgressListener()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DAnnotations.java56 private final String tts; field in Annotations
99 String tts = myValue.tts == null in cleanup() local
100 ? parentValue.tts : myValue.tts; in cleanup()
103 templocaleData.put(key, new Annotations(annotations, tts)); in cleanup()
134 String tts = parts.getAttributeValue(-1, "tts"); in handlePathValue() local
149 addItems(localeData, us, attributes, tts); in handlePathValue()
153 …d addItems(UnicodeMap<Annotations> unicodeMap, UnicodeSet us, Set<String> attributes, String tts) { in addItems() argument
155 addItems(unicodeMap, entry, attributes, tts); in addItems()
159 …id addItems(UnicodeMap<Annotations> unicodeMap, String entry, Set<String> attributes, String tts) { in addItems() argument
162 unicodeMap.put(entry, new Annotations(attributes, tts)); in addItems()
[all …]
/external/rust/crates/quote/src/
Dlib.rs667 ($call:ident! $extra:tt $($tts:tt)*) => {
669 (@ $($tts)*)
670 ($($tts)* @)
800 ($tokens:ident $($tts:tt)*) => {
802 (@ @ @ @ @ @ $($tts)*)
803 (@ @ @ @ @ $($tts)* @)
804 (@ @ @ @ $($tts)* @ @)
805 (@ @ @ $(($tts))* @ @ @)
806 (@ @ $($tts)* @ @ @ @)
807 (@ $($tts)* @ @ @ @ @)
[all …]
/external/toybox/toys/other/
Dtimeout.c59 struct timespec tts, kts; in timeout_main() local
63 xparsetimespec(*toys.optargs, &tts); in timeout_main()
79 ms = nantomil(&tts); in timeout_main()
/external/rust/crates/syn/src/
Dtt.rs101 let tts = self.0.clone().into_iter().collect::<Vec<_>>(); in hash() localVariable
102 tts.len().hash(state); in hash()
103 for tt in tts { in hash()
Dbuffer.rs275 let mut tts = Vec::new(); in token_stream() localVariable
278 tts.push(tt); in token_stream()
281 tts.into_iter().collect() in token_stream()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DTextToSpeechFacade.java20 import android.speech.tts.TextToSpeech;
21 import android.speech.tts.TextToSpeech.OnInitListener;
/external/rust/crates/proc-macro2/tests/
Dtest.rs414 let mut tts = TokenStream::from_str("~// comment").unwrap().into_iter(); in punct_before_comment() localVariable
415 match tts.next().unwrap() { in punct_before_comment()
442 let mut tts = TokenStream::from_str("r#dyn").unwrap().into_iter(); in raw_identifier() localVariable
443 match tts.next().unwrap() { in raw_identifier()
447 assert!(tts.next().is_none()); in raw_identifier()
465 let tts = TokenStream::from_str("[a + 1]").unwrap(); in test_debug_tokenstream() localVariable
559 let actual = format!("{:#?}", tts); in test_debug_tokenstream()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DChangeTimeScaleTrack.java38 List<TimeToSampleBox.Entry> tts; field in ChangeTimeScaleTrack
54tts = adjustTts(source.getDecodingTimeEntries(), timeScaleFactor, syncSamples, getTimes(source, sy… in ChangeTimeScaleTrack()
88 return tts; in getDecodingTimeEntries()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextToSpeechTest.java11 import android.speech.tts.TextToSpeech;
12 import android.speech.tts.TextToSpeech.Engine;
13 import android.speech.tts.UtteranceProgressListener;
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextToSpeechTest.java13 import android.speech.tts.TextToSpeech;
14 import android.speech.tts.TextToSpeech.Engine;
15 import android.speech.tts.UtteranceProgressListener;
16 import android.speech.tts.Voice;
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DICUJDKCompare.java525 Class[] tts = t.getParameterTypes(); in handles() local
527 if (tts.length != mts.length) { in handles()
532 for (int i = 0; i < tts.length; ++i) { in handles()
533 Class tc = pairClassEquivalent(tts[i]); in handles()
537 tts[i].getName() + " not assignable from " + mts[i].getName()); in handles()
/external/perfetto/src/traced/probes/ftrace/test/data/android_raven_AOSP.MASTER_5.10.43/events/ftrace/hwlat/
Dformat18 print fmt: "cnt:%u\tts:%010llu.%010lu\tinner:%llu\touter:%llu\tcount:%d\tnmi-ts:%llu\tnmi-count:%u\…
/external/perfetto/src/trace_processor/importers/proto/
Dtrack_event_parser.cc760 std::optional<int64_t> tts = slice_ref.thread_ts(); in ParseThreadEndEvent() local
761 if (tts) { in ParseThreadEndEvent()
763 slice_ref.set_thread_dur(*thread_timestamp_ - *tts); in ParseThreadEndEvent()
965 int64_t tts = thread_timestamp_.value_or(0); in ParseAsyncBeginEvent() local
967 vtrack_slices->AddVirtualTrackSlice(opt_slice_id.value(), tts, in ParseAsyncBeginEvent()
984 int64_t tts = event_data_->thread_timestamp.value_or(0); in ParseAsyncEndEvent() local
986 vtrack_slices->UpdateThreadDeltasForSliceId(*opt_slice_id, tts, tic); in ParseAsyncEndEvent()
1028 int64_t tts = thread_timestamp_.value_or(0); in ParseAsyncInstantEvent() local
1030 vtrack_slices->AddVirtualTrackSlice(opt_slice_id.value(), tts, in ParseAsyncInstantEvent()
/external/chromium-trace/catapult/systrace/systrace/test_data/
Dprofile-chrome_systrace_perf_chrome_data1tts": 6016200, "args": {"src_func": "PushOntoImmediateIncomingQueueLocked", "src_file": "../../com…
/external/cronet/third_party/icu/source/data/locales/
Djgo.txt186 "tsɛttsɛt mɛŋguꞌ mi ɛ́ lɛɛnɛ Kɛlísɛtɔ gɔ ńɔ́",
187 "tsɛttsɛt mɛŋguꞌ mi ɛ́ fúnɛ Kɛlísɛtɔ tɔ́ mɔ́",
/external/icu/icu4c/source/data/locales/
Djgo.txt186 "tsɛttsɛt mɛŋguꞌ mi ɛ́ lɛɛnɛ Kɛlísɛtɔ gɔ ńɔ́",
187 "tsɛttsɛt mɛŋguꞌ mi ɛ́ fúnɛ Kɛlísɛtɔ tɔ́ mɔ́",
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/
Dpackage.list99 android.speech.tts
/external/rust/crates/clap/3.2.23/src/
Dmacros.rs104 (@impls ( $($tts:tt)* ) -> ($e:ident, $($v:ident),+)) => {
106 $($tts)*
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DCLDRModify.java1611 String tts = parts.getAttributeValue(2, "tts");
1629 if (tts != null) {
1630 String newTts = CldrUtility.join(COMMA_SEMI.splitToList(tts), ", ");

123