HomeSort by relevance Sort by last modified time
    Searched refs:childDrawable (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java 126 Drawable childDrawable = d.getStateDrawable(i);
127 maxWidth = Math.max(maxWidth, childDrawable.getIntrinsicWidth());
128 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
130 if (DEBUG) Log.v(TAG, "union of childDrawable rects " + d + " to: "
134 Drawable childDrawable = d.getStateDrawable(i);
135 if (DEBUG) Log.v(TAG, "sizing drawable " + childDrawable + " to: "
137 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 108 final ChildDrawable[] r = new ChildDrawable[length];
110 r[i] = new ChildDrawable();
191 final ChildDrawable layer = new ChildDrawable();
217 private void updateLayerFromTypedArray(ChildDrawable layer, TypedArray a) {
257 final ChildDrawable[] array = state.mChildren;
260 final ChildDrawable layer = array[i];
292 final ChildDrawable[] layers = mLayerState.mChildren;
303 void addLayer(ChildDrawable layer)
    [all...]

Completed in 883 milliseconds