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

/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreBCWorkaroundProvider.java235 private void putSymmetricCipherImpl(String transformation, String implClass) { argument
236 put("Cipher." + transformation, implClass);
237 put("Cipher." + transformation + " SupportedKeyClasses", KEYSTORE_SECRET_KEY_CLASS_NAME);
240 private void putAsymmetricCipherImpl(String transformation, String implClass) { argument
241 put("Cipher." + transformation, implClass);
242 put("Cipher." + transformation + " SupportedKeyClasses",
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DViewTransformationHelper.java53 public void setCustomTransformation(CustomTransformation transformation, int viewType) { argument
54 mCustomTransformations.put(viewType, transformation);
215 * Add the remaining transformation views such that all views are being transformed correctly
274 * @param transformationAmount how much transformation should be done
275 * @return whether a custom transformation is performed
285 * @param transformationAmount how much transformation should be done
286 * @return whether a custom transformation is performed
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowAnimator.java56 final Transformation transformation = new Transformation(); field in class:AppWindowAnimator
143 transformation.clear();
144 transformation.setAlpha(mAppToken.isVisible() ? 1 : 0);
172 transformation.clear();
173 transformation.setAlpha(mAppToken.isVisible() ? 1 : 0);
228 toAppAnimator.transformation.set(transferWinAnimator.mAppAnimator.transformation);
230 toAppAnimator.transformation.clear();
313 transformation.clear();
315 boolean hasMoreFrames = animation.getTransformation(animationFrameTime, transformation);
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java126 * Indicates whether the animation transformation should be applied before the
133 * Indicates whether the animation transformation should be applied after the
569 * transformation is always applied until the animation ends.
582 * If fillBefore is true, this animation will apply its transformation
587 * animations. The transformation is not applied before the AnimationSet
590 * @param fillBefore true if the animation should apply its transformation before it starts
600 * If fillAfter is true, the transformation that this animation performed
606 * @param fillAfter true if the animation should apply its transformation after it ends
725 * If fillBefore is true, this animation will apply its transformation
727 * {@link #isFillEnabled() fillEnabled} is true, the transformation wil
1021 getInvalidateRegion(int left, int top, int right, int bottom, RectF invalidate, Transformation transformation) argument
[all...]

Completed in 1342 milliseconds