OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scaleW
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/services/java/com/android/server/wm/
AppTransition.java
339
float
scaleW
= mNextAppTransitionStartWidth / (float) appWidth;
341
Animation scale = new ScaleAnimation(
scaleW
, 1, scaleH, 1,
342
computePivot(mNextAppTransitionStartX,
scaleW
),
398
float
scaleW
= appWidth / thumbWidth;
400
Animation scale = new ScaleAnimation(1,
scaleW
, 1, scaleH,
401
computePivot(mNextAppTransitionStartX, 1 /
scaleW
),
414
float
scaleW
= appWidth / thumbWidth;
416
a = new ScaleAnimation(
scaleW
, 1, scaleH, 1,
417
computePivot(mNextAppTransitionStartX, 1 /
scaleW
),
423
float
scaleW
= thumbWidth / appWidth
[
all
...]
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java
811
final float
scaleW
= (float) mAnimationStartWidth / totalWidth;
813
final float scale = Math.max(
scaleW
, scaleY);
[
all
...]
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java
810
final float
scaleW
= (float) mAnimationStartWidth / totalWidth;
812
final float scale = Math.max(
scaleW
, scaleY);
[
all
...]
Completed in 501 milliseconds