/external/ltp/lib/ |
D | tst_clocks.c | 30 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/ |
D | thread_local.rs | 10 ($($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/ |
D | macros.rs | 114 ($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/ |
D | wrapper.rs | 84 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/ |
D | ShadowTextToSpeech.java | 10 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/ |
D | ShadowTextToSpeech.java | 12 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/ |
D | Annotations.java | 56 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/ |
D | lib.rs | 667 ($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/ |
D | timeout.c | 59 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/ |
D | tt.rs | 101 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()
|
D | buffer.rs | 275 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/ |
D | TextToSpeechFacade.java | 20 import android.speech.tts.TextToSpeech; 21 import android.speech.tts.TextToSpeech.OnInitListener;
|
/external/rust/crates/proc-macro2/tests/ |
D | test.rs | 414 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/ |
D | ChangeTimeScaleTrack.java | 38 List<TimeToSampleBox.Entry> tts; field in ChangeTimeScaleTrack 54 …tts = 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/ |
D | ShadowTextToSpeechTest.java | 11 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/ |
D | ShadowTextToSpeechTest.java | 13 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/ |
D | ICUJDKCompare.java | 525 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/ |
D | format | 18 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/ |
D | track_event_parser.cc | 760 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/ |
D | profile-chrome_systrace_perf_chrome_data | 1 …tts": 6016200, "args": {"src_func": "PushOntoImmediateIncomingQueueLocked", "src_file": "../../com…
|
/external/cronet/third_party/icu/source/data/locales/ |
D | jgo.txt | 186 "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/ |
D | jgo.txt | 186 "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/ |
D | package.list | 99 android.speech.tts
|
/external/rust/crates/clap/3.2.23/src/ |
D | macros.rs | 104 (@impls ( $($tts:tt)* ) -> ($e:ident, $($v:ident),+)) => { 106 $($tts)*
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
D | CLDRModify.java | 1611 String tts = parts.getAttributeValue(2, "tts"); 1629 if (tts != null) { 1630 String newTts = CldrUtility.join(COMMA_SEMI.splitToList(tts), ", ");
|