OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endWidth
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
SizeToAction.java
23
private float
endWidth
, endHeight;
31
target.setSize(startWidth + (
endWidth
- startWidth) * percent, startHeight + (endHeight - startHeight) * percent);
35
endWidth
= width;
40
return
endWidth
;
44
endWidth
= width;
/frameworks/support/transition/ics/android/support/transition/
ChangeBoundsPort.java
143
int
endWidth
= endRight - endLeft;
146
if (startWidth != 0 && startHeight != 0 &&
endWidth
!= 0 && endHeight != 0) {
224
if (startWidth !=
endWidth
) {
226
Math.max(startWidth,
endWidth
));
242
int widthDelta =
endWidth
- startWidth;
266
Rect tempEndBounds = new Rect(0, 0,
endWidth
, endHeight);
/frameworks/base/core/java/android/transition/
ChangeBounds.java
300
final int
endWidth
= endRight - endLeft;
305
if ((startWidth != 0 && startHeight != 0) || (
endWidth
!= 0 && endHeight != 0)) {
318
if (startWidth ==
endWidth
&& startHeight == endHeight) {
355
int maxWidth = Math.max(startWidth,
endWidth
);
373
endClip = new Rect(0, 0,
endWidth
, endHeight);
Completed in 2843 milliseconds