Home | History | Annotate | Download | only in external

Lines Matching defs:mTile

64     private final Tile mTile;
81 mTile = new Tile();
105 boolean updateIcon = mTile.getIcon() == null
106 || iconEquals(mTile.getIcon(), mDefaultIcon);
110 mTile.setIcon(mDefaultIcon);
113 if (mTile.getLabel() == null) {
114 mTile.setLabel(info.loadLabel(pm));
173 return mTile;
177 mTile.setIcon(tile.getIcon());
178 mTile.setLabel(tile.getLabel());
179 mTile.setContentDescription(tile.getContentDescription());
180 mTile.setState(tile.getState());
252 i.putExtra(TileService.EXTRA_STATE, mTile.getState());
268 if (mTile.getState() == Tile.STATE_UNAVAILABLE) {
295 int tileState = mTile.getState();
302 drawable = mTile.getIcon().loadDrawable(mContext);
317 state.label = mTile.getLabel();
318 if (mTile.getContentDescription() != null) {
319 state.contentDescription = mTile.getContentDescription();