Home
last modified time | relevance | path

Searched refs:Types (Results 1 – 25 of 97) sorted by relevance

1234

/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dvariant.h22 template <std::size_t I, typename... Types>
23 using TypeForIndex = std::tuple_element_t<I, std::tuple<Types...>>;
26 template <std::size_t I, typename... Types>
27 using TypeTagForIndex = TypeTag<TypeForIndex<I, Types...>>;
60 template <typename... Types>
70 template <typename... Types>
76 struct IsSubset<T> : HasType<T, Types...> {};
85 template <typename... Types>
97 template <typename R, typename T, typename... Types>
99 typename std::enable_if<HasType<T, Types...>::value, R>::type;
[all …]
/frameworks/native/include/ftl/
Dinitializer_list.h50 template <typename T, typename Sizes = std::index_sequence<>, typename... Types>
53 template <typename T, std::size_t... Sizes, typename... Types>
54 struct InitializerList<T, std::index_sequence<Sizes...>, Types...> {
59 T, std::index_sequence<Sizes..., sizeof...(Args)>, Types..., Args&&...> {
66 std::tuple<Types...> tuple;
75 template <typename K, typename V, typename E, std::size_t... Sizes, typename... Types>
76 struct InitializerList<KeyValue<K, V, E>, std::index_sequence<Sizes...>, Types...> {
80 KeyValue<K, V, E>, std::index_sequence<Sizes..., 3>, Types..., std::piecewise_construct_t,
88 std::tuple<Types...> tuple;
Dsmall_map.h100 template <typename U, std::size_t... Sizes, typename... Types>
101 SmallMap(InitializerList<U, std::index_sequence<Sizes...>, Types...>&& list) in SmallMap()
268 template <typename K, typename V, typename E, std::size_t... Sizes, typename... Types>
269 SmallMap(InitializerList<KeyValue<K, V, E>, std::index_sequence<Sizes...>, Types...>&&)
Dstatic_vector.h203 template <typename U, std::size_t Size, std::size_t... Sizes, typename... Types>
204 StaticVector(InitializerList<U, std::index_sequence<Size, Sizes...>, Types...>&& list) in StaticVector()
384 template <typename T, std::size_t... Sizes, typename... Types>
385 StaticVector(InitializerList<T, std::index_sequence<Sizes...>, Types...>&&)
Dsmall_vector.h324 template <typename U, std::size_t... Sizes, typename... Types>
325 SmallVector(InitializerList<U, std::index_sequence<Sizes...>, Types...>&& list) in SmallVector()
435 template <typename T, std::size_t... Sizes, typename... Types>
436 SmallVector(InitializerList<T, std::index_sequence<Sizes...>, Types...>&&)
/frameworks/av/media/utils/include/mediautils/
DFixedString.h83 template <typename ...Types>
84 FixedString(Types&&... args) { in FixedString()
85 append(std::forward<Types>(args)...); in FixedString()
93 template <typename ...Types>
94 FixedString& operator=(Types&&... args) {
96 return append(std::forward<Types>(args)...);
120 template <typename ...Types>
121 FixedString& operator+=(Types&&... args) {
122 return append(std::forward<Types>(args)...);
266 template <uint32_t N, typename ...Types>
[all …]
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DAuthSessionListener.java33 void authEndedFor(int userId, @Authenticators.Types int biometricStrength, int sensorId, in authEndedFor()
39 void lockedOutFor(int userId, @Authenticators.Types int biometricStrength, int sensorId, in lockedOutFor()
45 void lockOutTimed(int userId, @Authenticators.Types int biometricStrength, int sensorId, in lockOutTimed()
51 void resetLockoutFor(int uerId, @Authenticators.Types int biometricStrength, long requestId); in resetLockoutFor()
DAuthResultCoordinator.java61 private void updateState(@Authenticators.Types int strength, IntFunction<Integer> mapper) { in updateState()
81 void authenticatedFor(@Authenticators.Types int strength) { in authenticatedFor()
91 void lockedOutFor(@Authenticators.Types int strength) { in lockedOutFor()
98 void lockOutTimed(@Authenticators.Types int strength) { in lockOutTimed()
DMultiBiometricLockoutState.java68 void setPermanentLockOut(int userId, @Authenticators.Types int strength) { in setPermanentLockOut()
85 void clearPermanentLockOut(int userId, @Authenticators.Types int strength) { in clearPermanentLockOut()
102 void setTimedLockout(int userId, @Authenticators.Types int strength) { in setTimedLockout()
119 void clearTimedLockout(int userId, @Authenticators.Types int strength) { in clearTimedLockout()
143 int getLockoutState(int userId, @Authenticators.Types int strength) { in getLockoutState()
DAuthSessionCoordinator.java113 public int getLockoutStateFor(int userId, @Authenticators.Types int strength) { in getLockoutStateFor()
141 public void lockedOutFor(int userId, @Authenticators.Types int biometricStrength, int sensorId, in lockedOutFor()
152 public void lockOutTimed(int userId, @Authenticators.Types int biometricStrength, int sensorId, in lockOutTimed()
164 public void authEndedFor(int userId, @Authenticators.Types int biometricStrength, int sensorId, in authEndedFor()
178 public void resetLockoutFor(int userId, @Authenticators.Types int biometricStrength, in resetLockoutFor()
DAuthResult.java28 AuthResult(int status, @BiometricManager.Authenticators.Types int strength) { in AuthResult()
/frameworks/base/services/core/java/com/android/server/biometrics/
DBiometricSensor.java68 public final @Authenticators.Types int oemStrength; // strength as configured by the OEM
72 private @Authenticators.Types int mUpdatedStrength; // updated by BiometricStrengthController
90 @Authenticators.Types int strength, IBiometricAuthenticator impl) { in BiometricSensor()
153 @Authenticators.Types int getCurrentStrength() { in getCurrentStrength()
170 void updateStrength(@Authenticators.Types int newStrength) { in updateStrength()
DUtils.java120 final @Authenticators.Types int authenticators; in combineAuthenticatorBundles()
138 static boolean isCredentialRequested(@Authenticators.Types int authenticators) { in isCredentialRequested()
157 static int getPublicBiometricStrength(@Authenticators.Types int authenticators) { in getPublicBiometricStrength()
179 static boolean isBiometricRequested(@Authenticators.Types int authenticators) { in isBiometricRequested()
199 public static boolean isAtLeastStrength(@Authenticators.Types int sensorStrength, in isAtLeastStrength()
200 @Authenticators.Types int requestedStrength) { in isAtLeastStrength()
385 static int removeBiometricBits(@Authenticators.Types int authenticators) { in removeBiometricBits()
452 public static @Authenticators.Types int getCurrentStrength(int sensorId) { in getCurrentStrength()
551 @Authenticators.Types int strength) { in authenticatorStrengthToPropertyStrength()
564 public static @Authenticators.Types int propertyStrengthToAuthenticatorStrength( in propertyStrengthToAuthenticatorStrength()
DSensorConfig.java27 @BiometricManager.Authenticators.Types public final int strength;
DAuthService.java361 @Authenticators.Types int authenticators) throws RemoteException { in canAuthenticate()
389 @Authenticators.Types int authenticators) throws RemoteException { in getLastAuthenticationTime()
539 @Authenticators.Types int authenticators) throws RemoteException { in getButtonLabel()
585 @Authenticators.Types int authenticators) throws RemoteException { in getPromptMessage()
655 @Authenticators.Types int authenticators) throws RemoteException { in getSettingName()
972 @BiometricManager.Authenticators.Types int strength) { in getHidlFingerprintSensorProps()
1014 @BiometricManager.Authenticators.Types int strength) { in getHidlFaceSensorProps()
1029 @BiometricManager.Authenticators.Types int strength) { in getHidlIrisSensorProps()
/frameworks/native/libs/ftl/
Dstring_test.cpp60 struct Types {}; struct
62 template <typename F, typename Types>
66 struct ToCharsTests<F, Types<T, Ts...>> {
69 ToCharsTests<F, Types<Ts...>>::test(); in test()
74 struct ToCharsTests<F, Types<>> {
138 Types<char, unsigned char, signed char, std::uint8_t, std::uint16_t, std::uint32_t,
/frameworks/base/core/java/android/hardware/biometrics/
DBiometricManager.java142 @interface Types {} annotation
223 @NonNull public static String authenticatorToStr(@Authenticators.Types int authenticatorType) { in authenticatorToStr()
245 @Authenticators.Types int mAuthenticators;
248 @Authenticators.Types int authenticators) { in Strings()
482 public int canAuthenticate(@Authenticators.Types int authenticators) { in canAuthenticate()
496 public int canAuthenticate(int userId, @Authenticators.Types int authenticators) { in canAuthenticate()
520 public Strings getStrings(@Authenticators.Types int authenticators) { in getStrings()
736 @BiometricManager.Authenticators.Types int authenticators) { in getLastAuthenticationTime()
/frameworks/native/libs/math/include/math/
DHashCombine.h31 template<typename... Types>
32 static inline size_t hashCombine(const Types& ... args) { in hashCombine()
/frameworks/native/libs/binder/tests/unit_fuzzers/
DcommonFuzzHelpers.h23 template <class F, class T, class... Types>
24 void callArbitraryFunction(F* fdp, T const& ops_vector, Types... args) { in callArbitraryFunction()
/frameworks/av/media/libmediaplayerservice/fuzzer/
DREADME.md68 5. Audio Stream Types (parameter name: `streamType`)
69 6. Media Event Types (parameter name: `msg`)
70 7. Media Info Types (parameter name: `ext1`)
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
DFingerprintResetLockoutClient.java60 @Authenticators.Types int biometricStrength) { in FingerprintResetLockoutClient()
114 @Authenticators.Types int biometricStrength, long requestId) { in resetLocalLockoutStateToNone()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/
DFaceResetLockoutClient.java61 @Authenticators.Types int biometricStrength) { in FaceResetLockoutClient()
118 @Authenticators.Types int biometricStrength, long requestId) { in resetLocalLockoutStateToNone()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
DUtilsTest.java43 final @Authenticators.Types int authenticators = in testCombineAuthenticatorBundles_withKeyDeviceCredential_andKeyAuthenticators()
57 final @Authenticators.Types int authenticators = in testCombineAuthenticatorBundles_withNoKeyDeviceCredential_andKeyAuthenticators()
268 @Authenticators.Types int authenticators = Integer.MAX_VALUE; in testRemoveBiometricBits()
/frameworks/compile/slang/BitWriter_2_9_func/
DValueEnumerator.h52 TypeList Types; variable
155 const TypeList &getTypes() const { return Types; } in getTypes()
/frameworks/compile/slang/BitWriter_2_9/
DValueEnumerator.h52 TypeList Types; variable
155 const TypeList &getTypes() const { return Types; } in getTypes()

1234