OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toTransform
(Results
1 - 6
of
6
) sorted by null
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapTransformation.java
20
* public Bitmap transform(BitmapPool pool, Bitmap
toTransform
, int outWidth, int outHeight) {
21
* if (
toTransform
.getWidth() == outWidth &&
toTransform
.getHeight() == outHeight) {
22
* return
toTransform
;
25
* return Bitmap.createScaledBitmap(
toTransform
, outWidth, outHeight, true);
49
Bitmap
toTransform
= resource.get();
50
Bitmap transformed = transform(bitmapPool,
toTransform
, outWidth, outHeight);
53
if (
toTransform
.equals(transformed)) {
70
* @param
toTransform
The {@link android.graphics.Bitmap} to transform.
74
protected abstract Bitmap transform(BitmapPool pool, Bitmap
toTransform
, int outWidth, int outHeight)
[
all
...]
TransformationUtils.java
139
* @param
toTransform
The {@link android.graphics.Bitmap} that will be transformed.
143
public static void setAlpha(Bitmap
toTransform
, Bitmap outBitmap) {
145
outBitmap.setHasAlpha(
toTransform
.hasAlpha());
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsImpl.java
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackAnimationHelper.java
526
TaskViewTransform
toTransform
= mTmpFinalTaskTransforms.get(taskIndex);
554
mStackView.updateTaskViewToTransform(tv,
toTransform
, anim);
630
TaskViewTransform
toTransform
= mTmpFinalTaskTransforms.get(taskIndex);
643
mStackView.updateTaskViewToTransform(tv,
toTransform
, anim);
TaskStackViewTouchHandler.java
638
TaskViewTransform
toTransform
= mFinalTaskTransforms.get(taskIndex);
643
fromTransform.rect,
toTransform
.rect));
644
mTmpTransform.dimAlpha = fromTransform.dimAlpha + (
toTransform
.dimAlpha -
647
(
toTransform
.viewOutlineAlpha - fromTransform.viewOutlineAlpha) *
650
(
toTransform
.translationZ - fromTransform.translationZ) * dismissFraction;
TaskView.java
278
void updateViewPropertiesToTaskTransform(TaskViewTransform
toTransform
,
285
toTransform
.applyToTaskView(this, mTmpAnimators, toAnimation, !config.fakeShadows);
287
if (Float.compare(getDimAlpha(),
toTransform
.dimAlpha) != 0) {
288
setDimAlpha(
toTransform
.dimAlpha);
290
if (Float.compare(mViewBounds.getAlpha(),
toTransform
.viewOutlineAlpha) != 0) {
291
mViewBounds.setAlpha(
toTransform
.viewOutlineAlpha);
302
if (Float.compare(getDimAlpha(),
toTransform
.dimAlpha) != 0) {
304
toTransform
.dimAlpha);
307
if (Float.compare(mViewBounds.getAlpha(),
toTransform
.viewOutlineAlpha) != 0) {
309
mViewBounds.getAlpha(),
toTransform
.viewOutlineAlpha)
[
all
...]
Completed in 196 milliseconds