OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:childDrawable
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java
127
Drawable
childDrawable
= d.getStateDrawable(i);
128
maxWidth = Math.max(maxWidth,
childDrawable
.getIntrinsicWidth());
129
maxHeight = Math.max(maxHeight,
childDrawable
.getIntrinsicHeight());
131
if (DEBUG) Log.v(TAG, "union of
childDrawable
rects " + d + " to: "
135
Drawable
childDrawable
= d.getStateDrawable(i);
136
if (DEBUG) Log.v(TAG, "sizing drawable " +
childDrawable
+ " to: "
138
childDrawable
.setBounds(0, 0, maxWidth, maxHeight);
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
TargetDrawable.java
131
Drawable
childDrawable
= d.getCurrent();
132
maxWidth = Math.max(maxWidth,
childDrawable
.getIntrinsicWidth());
133
maxHeight = Math.max(maxHeight,
childDrawable
.getIntrinsicHeight());
136
if (DEBUG) Log.v(TAG, "union of
childDrawable
rects " + d + " to: "
142
Drawable
childDrawable
= d.getCurrent();
143
if (DEBUG) Log.v(TAG, "sizing drawable " +
childDrawable
+ " to: "
145
childDrawable
.setBounds(0, 0, maxWidth, maxHeight);
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
TargetDrawable.java
131
Drawable
childDrawable
= d.getCurrent();
132
maxWidth = Math.max(maxWidth,
childDrawable
.getIntrinsicWidth());
133
maxHeight = Math.max(maxHeight,
childDrawable
.getIntrinsicHeight());
136
if (DEBUG) Log.v(TAG, "union of
childDrawable
rects " + d + " to: "
142
Drawable
childDrawable
= d.getCurrent();
143
if (DEBUG) Log.v(TAG, "sizing drawable " +
childDrawable
+ " to: "
145
childDrawable
.setBounds(0, 0, maxWidth, maxHeight);
/frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java
80
ChildDrawable
[] r = new
ChildDrawable
[length];
83
r[i] = new
ChildDrawable
();
193
ChildDrawable
[] nu = new
ChildDrawable
[N + 10];
202
ChildDrawable
childDrawable
= new
ChildDrawable
();
203
st.mChildren[i] =
childDrawable
;
204
childDrawable
.mId = id
[
all
...]
Completed in 58 milliseconds