Home | History | Annotate | Download | only in providers

Lines Matching refs:bgColor

167     public String bgColor;
310 public Builder setBgColor(final String bgColor) {
311 mBgColor = bgColor;
343 int lastSyncResult, int type, int iconResId, int notificationIconResId, String bgColor,
363 this.bgColor = bgColor;
365 if (!TextUtils.isEmpty(bgColor)) {
366 this.bgColorInt = Integer.parseInt(bgColor);
402 bgColor = cursor.getString(UIProvider.FOLDER_BG_COLOR_COLUMN);
404 if (!TextUtils.isEmpty(bgColor)) {
405 bgColorInt = Integer.parseInt(bgColor);
460 bgColor = in.readString();
462 if (!TextUtils.isEmpty(bgColor)) {
463 bgColorInt = Integer.parseInt(bgColor);
496 dest.writeString(bgColor);
626 !TextUtils.isEmpty(folder.bgColor) && (folder.type & FolderType.INBOX_SECTION) == 0;
627 final int backgroundColor = showBg ? Integer.parseInt(folder.bgColor) : 0;
694 return !TextUtils.isEmpty(bgColor) ? bgColorInt : defaultColor;
914 f.bgColor = split[index++];
916 if (!TextUtils.isEmpty(f.bgColor)) {
917 f.bgColorInt = Integer.parseInt(f.bgColor);