HomeSort by relevance Sort by last modified time
    Searched defs:mForeground (Results 1 - 12 of 12) sorted by null

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
NonOverlappingLinearLayoutWithForeground.java 32 private Drawable mForeground;
70 if (mForeground != d) {
71 mForeground = d;
74 mForeground.setCallback(this);
75 if (mForeground.isStateful()) {
76 mForeground.setState(getDrawableState());
86 return mForeground;
93 if (mForeground != null) {
94 final Drawable foreground = mForeground;
115 return super.verifyDrawable(who) || (who == mForeground);
    [all...]
RowContainerView.java 34 private Drawable mForeground;
77 mForeground = d;
78 setWillNotDraw(mForeground == null);
83 if (mForeground instanceof ColorDrawable) {
84 ((ColorDrawable) mForeground.mutate()).setColor(color);
93 return mForeground;
105 if (mForeground != null) {
108 mForeground.setBounds(0, 0, getWidth(), getHeight());
110 mForeground.draw(canvas);
  /frameworks/support/design/src/android/support/design/internal/
ForegroundLinearLayout.java 40 private Drawable mForeground;
110 if (mForegroundGravity == Gravity.FILL && mForeground != null) {
112 mForeground.getPadding(padding);
121 return super.verifyDrawable(who) || (who == mForeground);
128 if (mForeground != null) {
129 mForeground.jumpToCurrentState();
136 if (mForeground != null && mForeground.isStateful()) {
137 mForeground.setState(getDrawableState());
151 if (mForeground != drawable)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 38 private IColor mForeground = new TestColor(0xFFFFFF);
126 return mForeground;
150 mForeground = color;
  /tools/loganalysis/src/com/android/loganalysis/parser/
MemoryHealthParser.java 34 private Map<String, Map<String, Long>> mForeground;
72 mForeground = new HashMap<String, Map<String, Long>>();
73 currentSection = mForeground;
96 return new MemoryHealthItem(mForeground, mBackground);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
WindowSurface.java 164 final Paint mForeground = new Paint();
180 mForeground.setColor(0xff00ffff);
181 mForeground.setAntiAlias(false);
182 mForeground.setStrokeWidth(mLineWidth);
238 mForeground.setColor(mOldColor[i] | makeGreen(i));
239 mForeground.setAlpha(((NUM_OLD-i) * 255) / NUM_OLD);
241 canvas.drawLine(mOld[p], mOld[p+1], mOld[p+2], mOld[p+3], mForeground);
250 mForeground.setColor(color | makeGreen(-2));
251 canvas.drawLine(mPoint1.x, mPoint1.y, mPoint2.x, mPoint2.y, mForeground);
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
DvrRecordingService.java 100 private boolean mForeground;
162 if (mForeground && !mIsRecording) {
168 if (!mForeground || hasUpcomingRecording) {
170 mForeground = true;
177 mForeground = false;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 79 private RGB mForeground;
96 mForeground = null;
559 mForeground = fg;
577 if (mForeground == null) {
581 return mForeground;
630 mForeground = ImageUtils.intToRgb(rgb);
637 // mForeground is allowed to be null.
PaletteControl.java 193 private Color mForeground;
328 if (mForeground != null) {
329 mForeground.dispose();
330 mForeground = null;
429 if (mForeground != null) {
430 mForeground.dispose();
431 mForeground = null;
443 mForeground = new Color(getDisplay(), foreground);
658 if (mForeground != null) {
659 item.setForeground(mForeground);
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailSettingsActivity.java 194 private boolean mForeground;
241 mForeground = true;
307 mForeground = false;
596 // It would be cleaner to do the "if (mForeground)" check in one
609 if (mForeground) {
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 292 milliseconds