Searched refs:mBackgroundFallback (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DBackgroundFallback.java32 private Drawable mBackgroundFallback; field in class:BackgroundFallback
35 mBackgroundFallback = d;
39 return mBackgroundFallback != null;
141 mBackgroundFallback.setBounds(0, 0, width, top);
142 mBackgroundFallback.draw(c);
145 mBackgroundFallback.setBounds(0, top, left, height);
146 mBackgroundFallback.draw(c);
149 mBackgroundFallback.setBounds(right, top, width, height);
150 mBackgroundFallback.draw(c);
153 mBackgroundFallback
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java207 private final BackgroundFallback mBackgroundFallback = new BackgroundFallback(); field in class:DecorView
283 mBackgroundFallback.setDrawable(resId != 0 ? getContext().getDrawable(resId) : null);
284 setWillNotDraw(getBackground() == null && !mBackgroundFallback.hasFallback());
311 mBackgroundFallback.draw(this, mContentRoot, c, mWindow.mContentParent,

Completed in 58 milliseconds