/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | variant.h | 22 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/ |
D | initializer_list.h | 50 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;
|
D | small_map.h | 100 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...>&&)
|
D | static_vector.h | 203 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...>&&)
|
D | small_vector.h | 324 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/ |
D | FixedString.h | 83 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/ |
D | AuthSessionListener.java | 33 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()
|
D | AuthResultCoordinator.java | 61 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()
|
D | MultiBiometricLockoutState.java | 68 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()
|
D | AuthSessionCoordinator.java | 113 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()
|
D | AuthResult.java | 28 AuthResult(int status, @BiometricManager.Authenticators.Types int strength) { in AuthResult()
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | BiometricSensor.java | 68 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()
|
D | Utils.java | 120 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()
|
D | SensorConfig.java | 27 @BiometricManager.Authenticators.Types public final int strength;
|
D | AuthService.java | 361 @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/ |
D | string_test.cpp | 60 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/ |
D | BiometricManager.java | 142 @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/ |
D | HashCombine.h | 31 template<typename... Types> 32 static inline size_t hashCombine(const Types& ... args) { in hashCombine()
|
/frameworks/native/libs/binder/tests/unit_fuzzers/ |
D | commonFuzzHelpers.h | 23 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/ |
D | README.md | 68 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/ |
D | FingerprintResetLockoutClient.java | 60 @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/ |
D | FaceResetLockoutClient.java | 61 @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/ |
D | UtilsTest.java | 43 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/ |
D | ValueEnumerator.h | 52 TypeList Types; variable 155 const TypeList &getTypes() const { return Types; } in getTypes()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | ValueEnumerator.h | 52 TypeList Types; variable 155 const TypeList &getTypes() const { return Types; } in getTypes()
|