HomeSort by relevance Sort by last modified time
    Searched defs:getTransformation (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /cts/tests/tests/keystore/src/android/keystore/cts/
AESCBCNoPaddingCipherTestBase.java 22 protected String getTransformation() {
AESCBCPKS7PaddingCipherTestBase.java 22 protected String getTransformation() {
AESCTRNoPaddingCipherTestBase.java 21 protected String getTransformation() {
AESECBNoPaddingCipherTestBase.java 21 protected String getTransformation() {
AESECBPKCS7PaddingCipherTestBase.java 21 protected String getTransformation() {
AESGCMNoPaddingCipherTestBase.java 21 protected String getTransformation() {
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 36 public CharSequence getTransformation(CharSequence source, View view);
AllCapsTransformationMethod.java 46 public CharSequence getTransformation(CharSequence source, View view) {
ReplacementTransformationMethod.java 52 public CharSequence getTransformation(CharSequence source, View v) {
PasswordTransformationMethod.java 37 public CharSequence getTransformation(CharSequence source, View view) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPasswordTransformationMethod.java 16 public CharSequence getTransformation(CharSequence charSequence, View view) {
  /frameworks/support/v7/appcompat/src/android/support/v7/text/
AllCapsTransformationMethod.java 41 public CharSequence getTransformation(CharSequence source, View view) {
  /frameworks/base/services/core/java/com/android/server/wm/animation/
ClipRectTBAnimation.java 51 public boolean getTransformation(long currentTime, Transformation outTransformation) {
67 return super.getTransformation(currentTime, outTransformation);
  /frameworks/support/emoji/core/src/android/support/text/emoji/widget/
EmojiTransformationMethod.java 44 public CharSequence getTransformation(@Nullable CharSequence source, @NonNull final View view) {
50 source = mTransformationMethod.getTransformation(source, view);
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTest.java 161 animation.getTransformation(animation.getStartTime() - 1, transformation);
167 animation.getTransformation(animation.getStartTime() + animation.getDuration() + 1,
181 animation.getTransformation(animation.getStartTime() - 1, transformation);
186 animation.getTransformation(animation.getStartTime() + animation.getDuration() + 1,
200 animation.getTransformation(animation.getStartTime() - 1, transformation);
205 animation.getTransformation(animation.getStartTime() + animation.getDuration() + 1,
260 anim.getTransformation(startTime, transformation);
264 anim.getTransformation(startTime + 1000, transformation);
267 anim.getTransformation(startTime + 2000, transformation);
277 anim.getTransformation(startTime + 3000, transformation)
    [all...]
AccelerateDecelerateInterpolatorTest.java 96 anim.getTransformation(startTime, transformation);
100 anim.getTransformation(startTime + 500, transformation);
103 anim.getTransformation(startTime + 1000, transformation);
106 anim.getTransformation(startTime + 1500, transformation);
109 anim.getTransformation(startTime + ALPHA_DURATION, transformation);
AccelerateInterpolatorTest.java 102 anim.getTransformation(startTime, transformation);
106 anim.getTransformation(startTime + 250, transformation);
109 anim.getTransformation(startTime + 500, transformation);
112 anim.getTransformation(startTime + 750, transformation);
115 anim.getTransformation(startTime + ACCELERATE_ALPHA_DURATION, transformation);
136 anim.getTransformation(startTime, transformation);
140 anim.getTransformation(startTime + 250, transformation);
143 anim.getTransformation(startTime + 500, transformation);
146 anim.getTransformation(startTime + 750, transformation);
149 anim.getTransformation(startTime + ACCELERATE_ALPHA_DURATION, transformation)
    [all...]
LinearInterpolatorTest.java 102 anim.getTransformation(startTime, transformation);
106 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP, transformation);
109 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 2, transformation);
112 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 3, transformation);
115 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 4, transformation);
118 anim.getTransformation(startTime + LINEAR_ALPHA_DURATION, transformation);
DecelerateInterpolatorTest.java 105 anim.getTransformation(startTime, transformation);
109 anim.getTransformation(startTime + 500, transformation);
112 anim.getTransformation(startTime + 1000, transformation);
115 anim.getTransformation(startTime + 1500, transformation);
118 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation);
139 anim.getTransformation(startTime, transformation);
143 anim.getTransformation(startTime + 500, transformation);
146 anim.getTransformation(startTime + 1000, transformation);
149 anim.getTransformation(startTime + 1500, transformation);
152 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation)
    [all...]
RotateAnimationTest.java 116 rotateAnimation.getTransformation(startTime, transformation);
124 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation);
132 rotateAnimation.getTransformation(startTime + DURATION, transformation);
174 rotateAnimation.getTransformation(startTime, transformation);
182 rotateAnimation.getTransformation(startTime + DURATION / 2, transformation);
190 rotateAnimation.getTransformation(startTime + DURATION, transformation);
TranslateAnimationTest.java 117 // Test applyTransformation() in method getTransformation()
118 translateAnimation.getTransformation(startTime, transformation);
124 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
130 translateAnimation.getTransformation(startTime + DURATION, transformation);
187 translateAnimation.getTransformation(startTime, transformation);
193 translateAnimation.getTransformation(startTime + DURATION / 2, transformation);
201 translateAnimation.getTransformation(startTime + DURATION, transformation);
  /cts/tests/tests/text/src/android/text/method/cts/
TransformationMethodTest.java 72 when(mMethod.getTransformation(any(), any())).then(returnsFirstArg());
97 when(mMethod.getTransformation(any(), any())).then(returnsFirstArg());
100 verify(mMethod, atLeastOnce()).getTransformation(any(), any());
ReplacementTransformationMethodTest.java 64 CharSequence result = method.getTransformation("010101", null);
78 method.getTransformation(null, null);
84 assertEquals("", method.getTransformation("", null).toString());
92 assertEquals("333333", method.getTransformation("010101", null).toString());
100 assertEquals("343434", method.getTransformation("010101", null).toString());
112 assertEquals("414141", method.getTransformation("010101", null).toString());
124 method.getTransformation("012012012", null);
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
CarrierText.java 380 public CharSequence getTransformation(CharSequence source, View view) {
381 source = super.getTransformation(source, view);
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowAnimator.java 257 thumbnailAnimation.getTransformation(animationFrameTime, thumbnailTransformation);
313 boolean hasMoreFrames = animation.getTransformation(animationFrameTime, transformation);
493 public boolean getTransformation(long currentTime, Transformation outTransformation) {

Completed in 220 milliseconds

1 2 3 4