Home
last modified time | relevance | path

Searched refs:T (Results 1 – 25 of 1489) sorted by relevance

12345678910>>...60

/packages/apps/TV/tuner/res/raw/
Dut_euro_dvbt_all1 # Euro DVB-T frequencies
4 T 474000000 QAM16
5 T 474000000 QAM64
6 T 474167000 QAM16
7 T 474167000 QAM64
8 T 481833000 QAM16
9 T 481833000 QAM64
10 T 481833330 QAM64
11 T 482000000 QAM16
12 T 482167000 QAM16
[all …]
/packages/modules/Virtualization/guest/kernel/android15-6.6/x86_64/
DSystem.map269 ffffffff81000000 T _stext
270 ffffffff81000000 T _text
271 ffffffff81000000 T startup_64
272 ffffffff81000060 T secondary_startup_64
273 ffffffff81000065 T secondary_startup_64_no_verify
276 ffffffff81000300 T __pfx_sev_verify_cbit
277 ffffffff81000310 T sev_verify_cbit
278 ffffffff81000320 T __pfx___startup_64
279 ffffffff81000330 T __startup_64
280 ffffffff81000740 T __pfx_startup_64_setup_env
[all …]
/packages/modules/Virtualization/guest/kernel/android16-6.12/x86_64/
DSystem.map277 ffffffff81000000 T _stext
278 ffffffff81000000 T _text
279 ffffffff81000000 T startup_64
280 ffffffff81000060 T __pfx___startup_64
281 ffffffff81000070 T __startup_64
282 ffffffff810003a0 T __pfx_startup_64_setup_gdt_idt
283 ffffffff810003b0 T startup_64_setup_gdt_idt
284 ffffffff81000420 T __pfx_panic
285 ffffffff81000420 T __split_text_end
286 ffffffff81000420 T __split_text_start
[all …]
/packages/modules/Virtualization/guest/kernel/android15-6.6/arm64/
DSystem.map8 ffffffc080000000 T _text
9 ffffffc080010000 T __irqentry_text_start
10 ffffffc080010000 T _stext
13 ffffffc080010238 T __irqentry_text_end
14 ffffffc080010238 T __softirqentry_text_start
15 ffffffc08001023c T __do_softirq
16 ffffffc080010268 T __entry_text_start
17 ffffffc080010268 T __softirqentry_text_end
18 ffffffc080010800 T vectors
38 ffffffc080012800 T __bp_harden_el1_vectors
[all …]
/packages/modules/Virtualization/guest/kernel/android15-6.6/arm64/16k/
DSystem.map8 ffffc00080000000 T _text
9 ffffc00080010000 T __irqentry_text_start
10 ffffc00080010000 T _stext
13 ffffc00080010238 T __irqentry_text_end
14 ffffc00080010238 T __softirqentry_text_start
15 ffffc0008001023c T __do_softirq
16 ffffc00080010268 T __entry_text_start
17 ffffc00080010268 T __softirqentry_text_end
18 ffffc00080010800 T vectors
38 ffffc00080012800 T __bp_harden_el1_vectors
[all …]
/packages/modules/Virtualization/guest/kernel/android16-6.12/arm64/16k/
DSystem.map16 ffffc00080000000 T _text
17 ffffc00080010000 T __irqentry_text_start
19 ffffc00080010000 T _stext
22 ffffc00080010214 T __irqentry_text_end
23 ffffc00080010214 T __softirqentry_text_start
24 ffffc00080010218 T __do_softirq
25 ffffc00080010244 T __entry_text_start
26 ffffc00080010244 T __softirqentry_text_end
27 ffffc00080010800 T vectors
47 ffffc00080012800 T __bp_harden_el1_vectors
[all …]
/packages/modules/Virtualization/guest/kernel/android16-6.12/arm64/
DSystem.map16 ffffffc080000000 T _text
17 ffffffc080010000 T __irqentry_text_start
19 ffffffc080010000 T _stext
22 ffffffc080010214 T __irqentry_text_end
23 ffffffc080010214 T __softirqentry_text_start
24 ffffffc080010218 T __do_softirq
25 ffffffc080010244 T __entry_text_start
26 ffffffc080010244 T __softirqentry_text_end
27 ffffffc080010800 T vectors
47 ffffffc080012800 T __bp_harden_el1_vectors
[all …]
/packages/modules/IntentResolver/tests/shared/src/com/android/intentresolver/
DMockitoKotlinHelpers.kt51 inline fun <T> eq(obj: T): T = Mockito.eq<T>(obj) ?: obj in eq()
64 inline fun <T> same(obj: T): T = Mockito.same<T>(obj) ?: obj in eq()
77 inline fun <T> any(type: Class<T>): T = Mockito.any<T>(type) in eq()
84 inline fun <reified T> any(): T = any(T::class.java) in eq()
97 inline fun <T> argThat(matcher: ArgumentMatcher<T>): T = Mockito.argThat(matcher) in eq()
109 inline fun <reified T> nullable(): T? = Mockito.nullable(T::class.java) in eq()
124 inline fun <T> capture(argumentCaptor: ArgumentCaptor<T>): T = argumentCaptor.capture() in eq()
138 inline fun <reified T : Any> argumentCaptor(): ArgumentCaptor<T> = in eq()
139 ArgumentCaptor.forClass(T::class.java) in eq()
164 inline fun <reified T : Any> mock( in eq()
[all …]
/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DCollectionUtils.java43 public static <T> boolean isEmpty(@Nullable T[] array) { in isEmpty()
50 public static <T> boolean isEmpty(@Nullable Collection<T> collection) { in isEmpty()
86 public static <T> boolean all(@NonNull Collection<T> elem, @NonNull Predicate<T> predicate) { in all()
87 for (final T e : elem) { in all()
98 public static <T> boolean any(@NonNull Collection<T> elem, @NonNull Predicate<T> predicate) { in any()
105 public static <T> int indexOf(@NonNull final Collection<T> elem, in indexOf()
106 @NonNull final Predicate<? super T> predicate) { in indexOf()
108 for (final T e : elem) { in indexOf()
119 public static <T> boolean any(@NonNull SparseArray<T> array, @NonNull Predicate<T> predicate) { in any()
157 public static <T> boolean contains(@Nullable T[] array, @Nullable T value) { in contains()
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dutils.rs39 pub(crate) struct LTCheckedPtr<'a, T> {
40 ptr: *const T,
44 impl<T> LTCheckedPtr<'static, T> {
51 impl<'a, T> LTCheckedPtr<'a, T> {
53 pub(crate) fn from_ref(val: &'a T) -> Self { in from_ref()
63 impl<'a, T> Into<*const T> for LTCheckedPtr<'a, T> {
64 fn into(self) -> *const T { in into() argument
69 impl<'a, T> From<&'a [T]> for LTCheckedPtr<'a, T> {
70 fn from(val: &'a [T]) -> Self { in from()
75 impl<'a, T> From<&'a Vec<T>> for LTCheckedPtr<'a, T> {
[all …]
/packages/services/Car/car-lib/src/com/android/car/internal/util/
DArrayUtils.java93 public static <T> T[] emptyArray(Class<T> kind) { in emptyArray()
95 return (T[]) new Object[0]; in emptyArray()
108 return (T[]) cache; in emptyArray()
115 public static <T> T[] emptyIfNull(@Nullable T[] items, Class<T> kind) { in emptyIfNull()
136 public static <T> boolean isEmpty(@Nullable T[] array) { in isEmpty()
196 public static <T> boolean contains(@Nullable T[] array, T value) { in contains()
204 public static <T> int indexOf(@Nullable T[] array, T value) { in indexOf()
215 public static <T> boolean containsAll(@Nullable T[] array, T[] check) { in containsAll()
217 for (T checkItem : check) { in containsAll()
228 public static <T> boolean containsAny(@Nullable T[] array, T[] check) { in containsAny()
[all …]
/packages/modules/Permission/tests/utils/safetycenter/java/com/android/safetycenter/testing/
DEqualsHashCodeToStringTester.kt43 class EqualsHashCodeToStringTester<T>
47 private val parcelRoundTripEqualsEquivalence: Equivalence<T>? = null,
48 private val createCopy: ((T) -> T)? = null,
53 EquivalenceTester.of<T>(hashCodeEquivalence()).takeIf { !ignoreHashCode } in <lambda>()
55 EquivalenceTester.of<T>(toStringEquivalence()).takeIf { !ignoreToString } in <lambda>()
59 fun addEqualityGroup(vararg equalItems: T): EqualsHashCodeToStringTester<T> { in addEqualityGroup()
84 fun <T : Parcelable> ofParcelable( in ofParcelable()
85 parcelableCreator: Parcelable.Creator<T>, in ofParcelable()
88 createCopy: ((T) -> T)? = null, in ofParcelable()
89 ): EqualsHashCodeToStringTester<T> = in ofParcelable()
[all …]
/packages/modules/Bluetooth/system/log/include/bluetooth/
Dlog.h62 template <class T>
63 [[maybe_unused]] static inline T& format_replace(T& arg) { in format_replace()
87 template <Level level, typename... T>
89 log(std::format_string<T...> fmt, T&&... args, source_location location = source_location()) {
96 template <int level, typename... T>
97 log(std::format_string<T...>, T&&...) -> log<level, T...>;
107 template <typename... T>
108 using error = log_internal::log<log_internal::kError, T...>;
109 template <typename... T>
110 using warning = log_internal::log<log_internal::kWarning, T...>;
[all …]
/packages/modules/Bluetooth/system/rust/src/core/
Dshared_box.rs16 pub struct SharedBox<T: ?Sized>(Rc<T>);
18 impl<T> SharedBox<T> {
20 pub fn new(t: T) -> Self { in new()
26 pub fn new_cyclic(f: impl FnOnce(WeakBox<T>) -> T) -> Self { in new_cyclic()
31 pub fn downgrade(&self) -> WeakBox<T> { in downgrade() argument
36 pub fn as_ref(&self) -> WeakBoxRef<T> { in as_ref() argument
41 impl<T> From<T> for SharedBox<T> {
42 fn from(value: T) -> Self { in from()
47 impl<T> Deref for SharedBox<T> {
48 type Target = T;
[all …]
/packages/modules/ConfigInfrastructure/framework/java/com/android/internal/util/configinfrastructure/
DArrayUtils.java93 public static <T> T[] newUnpaddedArray(Class<T> clazz, int minLen) { in newUnpaddedArray()
94 return (T[])VMRuntime.getRuntime().newUnpaddedArray(clazz, minLen); in newUnpaddedArray()
194 public static <T> T[] emptyArray(Class<T> kind) { in emptyArray()
196 return (T[]) EmptyArray.OBJECT; in emptyArray()
209 return (T[]) cache; in emptyArray()
215 public static @NonNull <T> T[] emptyIfNull(@Nullable T[] items, Class<T> kind) { in emptyIfNull()
237 public static <T> boolean isEmpty(@Nullable T[] array) { in isEmpty()
297 public static <T> boolean contains(@Nullable T[] array, T value) { in contains()
306 public static <T> int indexOf(@Nullable T[] array, T value) { in indexOf()
317 public static <T> boolean containsAll(@Nullable T[] array, T[] check) { in containsAll()
[all …]
/packages/modules/Bluetooth/system/gd/common/
Dcircular_buffer.h29 template <typename T>
35 void Push(T item);
37 std::vector<T> Pull() const;
39 std::vector<T> Drain();
43 std::deque<T> queue_;
63 template <typename T>
66 T entry;
69 template <typename T>
70 class TimestampedCircularBuffer : public CircularBuffer<TimestampedEntry<T>> {
76 void Push(T item);
[all …]
/packages/apps/Gallery2/jni/filters/
Dkmeans.h25 template <typename T, typename N>
26 inline void sum(T values[], int len, int dimension, int stride, N dst[]) { in sum()
39 template <typename T, typename N>
40 inline void set(T val1[], N val2[], int dimension) { in set()
47 template <typename T, typename N>
48 inline void add(T val[], N dst[], int dimension) { in add()
55 template <typename T, typename N>
56 inline void divide(T dst[], N divisor, int dimension) { in divide()
70 template <typename T, typename N>
71 inline N euclideanDist(T val1[], T val2[], int dimension) { in euclideanDist()
[all …]
/packages/modules/Bluetooth/system/common/
Dleaky_bonded_queue.h42 template <class T>
55 void Enqueue(T* new_item);
60 T* EnqueueWithPop(T* new_item);
64 T* Dequeue();
85 std::queue<std::unique_ptr<T>> queue_;
94 template <class T>
95 LeakyBondedQueue<T>::LeakyBondedQueue(size_t capacity) { in LeakyBondedQueue()
99 template <class T>
100 LeakyBondedQueue<T>::~LeakyBondedQueue() {} in ~LeakyBondedQueue()
102 template <class T>
[all …]
/packages/modules/Bluetooth/floss/android-base/include/android-base/
Dparseint.h34 template <typename T>
35 bool ParseUint(const char* s, T* out, T max = std::numeric_limits<T>::max(),
37 static_assert(std::is_unsigned<T>::value, "ParseUint can only be used with unsigned types");
75 *out = static_cast<T>(result);
81 template <typename T>
82 bool ParseUint(const std::string& s, T* out, T max = std::numeric_limits<T>::max(),
87 template <typename T>
88 bool ParseByteCount(const char* s, T* out, T max = std::numeric_limits<T>::max()) {
93 template <typename T>
94 bool ParseByteCount(const std::string& s, T* out, T max = std::numeric_limits<T>::max()) {
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DMediaResourceManager.java93 public interface MediaResourceLoadListener<T extends RefCountedMediaResource> {
94 void onMediaResourceLoaded(MediaRequest<T> request, T resource, boolean cached); in onMediaResourceLoaded()
95 void onMediaResourceLoadError(MediaRequest<T> request, Exception exception); in onMediaResourceLoadError()
126 public <T extends RefCountedMediaResource> void requestMediaResourceAsync( in requestMediaResourceAsync()
127 final MediaRequest<T> mediaRequest) { in requestMediaResourceAsync()
136 public <T extends RefCountedMediaResource> T requestMediaResourceSync( in requestMediaResourceSync()
137 final MediaRequest<T> mediaRequest) { in requestMediaResourceSync()
140 MediaLoadingResult<T> loadResult = null; in requestMediaResourceSync()
159 private <T extends RefCountedMediaResource> MediaLoadingResult<T> processMediaRequestInternal( in processMediaRequestInternal()
160 final MediaRequest<T> mediaRequest) in processMediaRequestInternal()
[all …]
/packages/apps/TV/common/src/com/android/tv/common/util/
DCollectionUtils.java35 public static <T> T[] concatAll(T[] first, T[]... rest) { in concatAll()
37 for (T[] array : rest) { in concatAll()
40 T[] result = Arrays.copyOf(first, totalLength); in concatAll()
42 for (T[] array : rest) { in concatAll()
55 public static <T> List<T> union( in union()
56 Collection<T> originals, Collection<T> toAdds, Comparator<T> comparator) { in union()
57 List<T> result = new ArrayList<>(originals); in union()
59 List<T> resultToAdd = new ArrayList<>(); in union()
60 for (T toAdd : toAdds) { in union()
70 public static <T> List<T> subtract( in subtract()
[all …]
/packages/modules/OnDevicePersonalization/src/com/android/libraries/pcc/chronicle/api/
DChronicle.kt42 fun <T : Connection> getConnection(request: ConnectionRequest<T>): ConnectionResult<T> in getAvailableConnectionTypes()
49 fun <T : Connection> getConnectionOrNull( in getAvailableConnectionTypes()
50 request: ConnectionRequest<T>, in getAvailableConnectionTypes()
52 ): T? {
54 is ConnectionResult.Success<T> -> result.connection in result()
55 is ConnectionResult.Failure<T> -> { in result()
67 fun <T : Connection> getConnectionOrNull( in getConnectionOrNull()
68 request: ConnectionRequest<T>, in getConnectionOrNull()
69 ): T? = getConnectionOrNull(request) {} in getConnectionOrNull()
75 fun <T : Connection> getConnectionOrThrow(request: ConnectionRequest<T>): T { in getConnectionOrThrow()
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java56 public final class CarPropertyConfig<T> implements Parcelable {
66 private final List<AreaIdConfig<T>> mAreaIdConfigs;
67 private final SparseArray<AreaIdConfig<T>> mAreaIdToAreaIdConfig;
68 private final Class<T> mType;
74 List<AreaIdConfig<T>> areaIdConfigs, Class<T> type, in CarPropertyConfig()
247 public Class<T> getPropertyType() { in getPropertyType()
257 public List<AreaIdConfig<T>> getAreaIdConfigs() { in getAreaIdConfigs()
268 public AreaIdConfig<T> getAreaIdConfig(int areaId) { in getAreaIdConfig()
390 public T getMinValue(int areaId) { in getMinValue()
391 AreaIdConfig<T> areaIdConfig = mAreaIdToAreaIdConfig.get(areaId); in getMinValue()
[all …]
/packages/modules/Connectivity/staticlibs/testutils/hostdevice/com/android/testutils/
DMiscAsserts.kt34 fun <T> assertEmpty(ts: Array<T>) = ts.size.let { len -> in <lambda>()
38 fun <T> assertEmpty(ts: Collection<T>) = ts.size.let { len -> in len()
42 fun <T> assertLength(expected: Int, got: Array<T>) = got.size.let { len -> in len()
46 fun <T> assertLength(expected: Int, got: List<T>) = got.size.let { len -> in len()
52 fun <T : Exception> assertThrows(expected: Class<T>, block: ThrowingRunnable): T { in assertThrows()
56 fun <T : Exception> assertThrows(msg: String, expected: Class<T>, block: ThrowingRunnable): T { in assertThrows()
60 fun <T> assertEqualBothWays(o1: T, o2: T) { in assertEqualBothWays()
65 fun <T> assertNotEqualEitherWay(o1: T, o2: T) { in assertNotEqualEitherWay()
85 fun <T> assertContainsAll(list: Collection<T>, vararg elems: T) { in assertContainsAll()
89 fun <T> assertContainsAll(list: Collection<T>, elems: Collection<T>) { in assertContainsAll()
[all …]
/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper.h65 template <typename T,
66 typename std::enable_if<std::is_signed_v<T> && std::is_integral_v<T>, int>::type = 0>
67 std::optional<T> Get(const std::string& section, const std::string& property) { in Get()
72 if (!common::IsNumberInNumericLimits<T>(*value)) { in Get()
75 return static_cast<T>(*value); in Get()
78 template <typename T,
79 typename std::enable_if<std::is_unsigned_v<T> && std::is_integral_v<T>, int>::type = 0>
80 std::optional<T> Get(const std::string& section, const std::string& property) { in Get()
85 if (!common::IsNumberInNumericLimits<T>(*value)) { in Get()
88 return static_cast<T>(*value); in Get()
[all …]

12345678910>>...60