Searched defs:transformation (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
H A DWrappedKeyEntry.java86 * @param transformation used to unwrap the key. ex: "RSA/ECB/OAEPPadding"
89 public WrappedKeyEntry(byte[] wrappedKeyBytes, String wrappingKeyAlias, String transformation, argument
93 mTransformation = transformation;
H A DAndroidKeyStoreBCWorkaroundProvider.java249 private void putSymmetricCipherImpl(String transformation, String implClass) { argument
250 put("Cipher." + transformation, implClass);
251 put("Cipher." + transformation + " SupportedKeyClasses", KEYSTORE_SECRET_KEY_CLASS_NAME);
254 private void putAsymmetricCipherImpl(String transformation, String implClass) { argument
255 put("Cipher." + transformation, implClass);
256 put("Cipher." + transformation + " SupportedKeyClasses",
/frameworks/base/core/java/android/service/autofill/
H A DBatchUpdates.java102 * Adds a transformation to replace the value of a child view with the fields in the
112 * @param transformation an implementation provided by the Android System.
114 * @throws IllegalArgumentException if {@code transformation} is not a class provided
117 public Builder transformChild(int id, @NonNull Transformation transformation) { argument
119 Preconditions.checkArgument((transformation instanceof InternalTransformation),
120 "not provided by Android System: " + transformation);
124 mTransformations.add(new Pair<>(id, (InternalTransformation) transformation));
H A DCustomDescription.java152 * Adds a transformation to replace the value of a child view with the fields in the
159 * @param transformation an implementation provided by the Android System.
161 * @throws IllegalArgumentException if {@code transformation} is not a class provided
164 public Builder addChild(int id, @NonNull Transformation transformation) { argument
166 Preconditions.checkArgument((transformation instanceof InternalTransformation),
167 "not provided by Android System: " + transformation);
171 mTransformations.add(new Pair<>(id, (InternalTransformation) transformation));
/frameworks/base/core/tests/coretests/src/android/app/
H A DNotificationTest.java347 @Nullable Consumer<Notification.Action.Builder> transformation) {
350 if (transformation != null) {
351 transformation.accept(actionBuilder);
346 makeNotificationAction( @ullable Consumer<Notification.Action.Builder> transformation) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DViewTransformationHelper.java55 public void setCustomTransformation(CustomTransformation transformation, int viewType) { argument
56 mCustomTransformations.put(viewType, transformation);
211 * Add the remaining transformation views such that all views are being transformed correctly
272 * @param transformationAmount how much transformation should be done
273 * @return whether a custom transformation is performed
283 * @param transformationAmount how much transformation should be done
284 * @return whether a custom transformation is performed
310 * @param isFrom true if this transformation from the other view
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimationSpec.java97 tmp.transformation.clear();
98 mAnimation.getTransformation(currentPlayTime, tmp.transformation);
99 tmp.transformation.getMatrix().postTranslate(mPosition.x, mPosition.y);
100 t.setMatrix(leash, tmp.transformation.getMatrix(), tmp.floats);
101 t.setAlpha(leash, tmp.transformation.getAlpha());
103 t.setWindowCrop(leash, tmp.transformation.getClipRect());
109 t.setWindowCrop(leash, tmp.transformation.getClipRect());
112 mTmpRect.intersect(tmp.transformation.getClipRect());
196 final Transformation transformation = new Transformation(); field in class:WindowAnimationSpec.TmpValues
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java127 * Indicates whether the animation transformation should be applied before the
134 * Indicates whether the animation transformation should be applied after the
575 * transformation is always applied until the animation ends.
588 * If fillBefore is true, this animation will apply its transformation
593 * animations. The transformation is not applied before the AnimationSet
596 * @param fillBefore true if the animation should apply its transformation before it starts
606 * If fillAfter is true, the transformation that this animation performed
612 * @param fillAfter true if the animation should apply its transformation after it ends
743 * If fillBefore is true, this animation will apply its transformation
745 * {@link #isFillEnabled() fillEnabled} is true, the transformation wil
1049 getInvalidateRegion(int left, int top, int right, int bottom, RectF invalidate, Transformation transformation) argument
[all...]

Completed in 583 milliseconds