Searched refs:bd (Results 1 – 4 of 4) sorted by relevance
491 final BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(id); in loadBitmap() local492 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
1175 BitmapDrawable bd = (BitmapDrawable)getResources().getDrawable(resId); in loadBitmap() local1176 return Bitmap.createBitmap(bd.getBitmap()); in loadBitmap()
127 BitmapDrawable bd = (BitmapDrawable) d; in isGrayscaleIcon() local128 return bd.getBitmap() != null && isGrayscaleIcon(bd.getBitmap()); in isGrayscaleIcon()
5234 BitDescription bd = descriptions[i]; in printBitDescriptions() local5235 if ((diff&bd.mask) != 0) { in printBitDescriptions()5237 if (bd.shift < 0) { in printBitDescriptions()5238 pw.print((newval&bd.mask) != 0 ? "+" : "-"); in printBitDescriptions()5239 pw.print(longNames ? bd.name : bd.shortName); in printBitDescriptions()5240 if (bd.mask == HistoryItem.STATE_WAKE_LOCK_FLAG && wakelockTag != null) { in printBitDescriptions()5253 pw.print(longNames ? bd.name : bd.shortName); in printBitDescriptions()5255 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()5256 if (bd.values != null && val >= 0 && val < bd.values.length) { in printBitDescriptions()5257 pw.print(longNames? bd.values[val] : bd.shortValues[val]); in printBitDescriptions()