/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | KeyboardView.java | 288 final Drawable background = getBackground(); in onDrawKeyboard() local 294 if (!isHardwareAccelerated && background != null) { in onDrawKeyboard() 297 background.draw(canvas); in onDrawKeyboard() 308 if (background != null) { in onDrawKeyboard() 316 background.draw(canvas); in onDrawKeyboard() 338 final Drawable background = key.selectBackgroundDrawable( in onDrawKey() local 340 if (background != null) { in onDrawKey() 341 onDrawKeyBackground(key, canvas, background); in onDrawKey() 351 @Nonnull final Drawable background) { in onDrawKeyBackground() argument 358 final int intrinsicWidth = background.getIntrinsicWidth(); in onDrawKeyBackground() [all …]
|
D | Key.java | 993 final Drawable background; in selectBackgroundDrawable() local 995 background = functionalKeyBackground; in selectBackgroundDrawable() 997 background = spacebarBackground; in selectBackgroundDrawable() 999 background = keyBackground; in selectBackgroundDrawable() 1002 background.setState(state); in selectBackgroundDrawable() 1003 return background; in selectBackgroundDrawable()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | KeyPreviewView.java | 80 final Drawable background = getBackground(); in setTextAndScaleX() local 81 if (background == null) { in setTextAndScaleX() 84 background.getPadding(mBackgroundPadding); in setTextAndScaleX() 85 final int maxWidth = background.getIntrinsicWidth() - mBackgroundPadding.left in setTextAndScaleX() 132 final Drawable background = getBackground(); in setPreviewBackground() local 133 if (background == null) { in setPreviewBackground() 137 background.setState(KEY_PREVIEW_BACKGROUND_STATE_TABLE[position][hasMoreKeysState]); in setPreviewBackground()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | ConversationTipView.java | 117 if (attr.background != -1) { in bindIcon() 118 image.setBackgroundResource(attr.background); in bindIcon() 273 public int background; field in ConversationTipView.ImageAttrSet 276 public ImageAttrSet(int resId, int background, String contentDescription) { in ImageAttrSet() argument 278 this.background = background; in ImageAttrSet()
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
D | BubbleTextView.java | 280 final Drawable background = mBackground; in draw() local 281 if (background != null) { in draw() 286 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop()); in draw() 291 background.draw(canvas); in draw() 294 background.draw(canvas); in draw()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | BubbleTextView.java | 380 final Drawable background = mBackground; in draw() local 381 if (background != null) { in draw() 386 background.setBounds(0, 0, getRight() - getLeft(), getBottom() - getTop()); in draw() 391 background.draw(canvas); in draw() 394 background.draw(canvas); in draw() 635 void setPressedIcon(BubbleTextView icon, Bitmap background); in setPressedIcon() argument
|
D | CellLayout.java | 391 public void setPressedIcon(BubbleTextView icon, Bitmap background) { in setPressedIcon() argument 392 if (icon == null || background == null) { in setPressedIcon() 396 if (mTouchFeedbackView.setBitmap(background)) { in setPressedIcon()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
D | FrameLayoutWithShadows.java | 71 public void setBackground(Drawable background) { in setBackground() argument 72 super.setBackground(background); in setBackground() 73 if (background != null) { in setBackground() 79 background.setCallback(null); in setBackground() 80 background.setAlpha((int)(255 * mAlpha)); in setBackground()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | WidgetsContainerView.java | 344 InsetDrawable background = new InsetDrawable( in onUpdateBackgroundAndPaddings() local 348 background.getPadding(bgPadding); in onUpdateBackgroundAndPaddings() 349 mView.setBackground(background); in onUpdateBackgroundAndPaddings() 350 getRevealView().setBackground(background.getConstantState().newDrawable()); in onUpdateBackgroundAndPaddings()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsRecyclerViewContainerView.java | 63 public void setPressedIcon(BubbleTextView icon, Bitmap background) { in setPressedIcon() argument 64 if (icon == null || background == null) { in setPressedIcon() 67 } else if (mTouchFeedbackView.setBitmap(background)) { in setPressedIcon()
|
D | AllAppsContainerView.java | 372 InsetDrawable background = new InsetDrawable( in onUpdateBackgroundAndPaddings() local 376 background.getPadding(bgPadding); in onUpdateBackgroundAndPaddings() 377 mContainerView.setBackground(background); in onUpdateBackgroundAndPaddings() 378 mRevealView.setBackground(background.getConstantState().newDrawable()); in onUpdateBackgroundAndPaddings()
|
/packages/apps/Camera2/res/raw/ |
D | backdropper.graph | 53 @filter MediaSource background { 88 @connect background[video] => replacer[background];
|
/packages/apps/Camera/res/raw/ |
D | backdropper.graph | 53 @filter MediaSource background { 88 @connect background[video] => replacer[background];
|
/packages/apps/Gallery2/res/raw/ |
D | backdropper.graph | 53 @filter MediaSource background { 88 @connect background[video] => replacer[background];
|
/packages/apps/LegacyCamera/res/raw/ |
D | backdropper.graph | 53 @filter MediaSource background { 86 @connect background[video] => replacer[background];
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastListItem.java | 66 Drawable background = message.isRead() ? in bind() local 70 setBackground(background); in bind()
|
/packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
D | VUMeter.java | 53 Drawable background = context.getResources().getDrawable(R.drawable.vumeter); in init() local 54 setBackgroundDrawable(background); in init()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | SetupWizardIllustration.java | 83 public void setBackground(Drawable background) { in setBackground() argument 84 mBackground = background; in setBackground()
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
D | EmailServiceProxy.java | 118 final long attachmentId, final boolean background) in loadAttachment() argument 124 mService.loadAttachment(cb, accountId, attachmentId, background); in loadAttachment()
|
D | IEmailService.aidl | 31 boolean background); in loadAttachment() argument
|
/packages/apps/Messaging/src/com/android/messaging/ |
D | BugleApplication.java | 185 final boolean background = getMainLooper().getThread() != thread; in uncaughtException() 186 if (background) { in uncaughtException()
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
D | ConversationItemView.java | 1354 final int background; in updateBackground() local 1356 background = mBackgroundOverrideResId; in updateBackground() 1358 background = R.drawable.conversation_item_background; in updateBackground() 1360 setBackgroundResource(background); in updateBackground()
|
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/ |
D | GlowPadView.java | 787 final Drawable background = getBackground(); in startBackgroundAnimation() local 788 if (mAlwaysTrackFinger && background != null) { in startBackgroundAnimation() 792 mBackgroundAnimator = Tweener.to(background, duration, in startBackgroundAnimation()
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
D | ModeListView.java | 2104 public void setBackground(Bitmap background, RectF drawArea) { in setBackground() argument 2105 mBackground = background; in setBackground()
|
/packages/apps/Settings/src/com/android/settings/applications/ |
D | RunningState.java | 634 boolean update(Context context, boolean background) { in update() argument 635 mBackground = background; in update()
|