Searched defs:tile (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DProfileSelectDialog.java37 public static void show(FragmentManager manager, DashboardTile tile) { argument
40 args.putParcelable(ARG_SELECTED_TILE, tile);
H A DSettingsActivity.java220 * settings tile using the following parameters.
1131 if (innerNodeName.equals("dashboard-tile")) {
1132 DashboardTile tile = new DashboardTile();
1136 tile.id = sa.getResourceId(
1143 tile.titleRes = tv.resourceId;
1145 tile.title = tv.string;
1152 tile.summaryRes = tv.resourceId;
1154 tile.summary = tv.string;
1157 tile.iconRes = sa.getResourceId(
1159 tile
1384 updateHomeSettingTiles(DashboardTile tile) argument
[all...]
H A DUtils.java212 DashboardTile tile) {
214 Intent intent = tile.intent;
218 List<ResolveInfo> list = tile.userHandle.size() != 0
220 tile.userHandle.get(0).getIdentifier())
263 tile.iconRes = icon;
264 tile.iconPkg = resolveInfo.activityInfo.packageName;
265 tile.title = title;
266 tile.summary = summary;
268 tile.intent = new Intent().setClassName(resolveInfo.activityInfo.packageName,
211 updateTileToSpecificActivityFromMetaDataOrRemove(Context context, DashboardTile tile) argument
/packages/apps/Settings/src/com/android/settings/dashboard/
H A DDashboardCategory.java37 * Identifier for this tile, to correlate with a new list when
74 public void addTile(DashboardTile tile) { argument
75 tiles.add(tile);
78 public void addTile(int n, DashboardTile tile) { argument
79 tiles.add(n, tile);
82 public void removeTile(DashboardTile tile) { argument
83 tiles.remove(tile);
126 DashboardTile tile = tiles.get(n);
127 tile.writeToParcel(dest, flags);
140 DashboardTile tile
[all...]
H A DDashboardTileView.java76 public void setTile(DashboardTile tile) { argument
77 mTile = tile;
H A DDashboardSummary.java157 DashboardTile tile = category.getTile(i);
160 updateTileView(context, res, tile, tileView.getImageView(),
163 tileView.setTile(tile);
175 private void updateTileView(Context context, Resources res, DashboardTile tile, argument
178 if (!TextUtils.isEmpty(tile.iconPkg)) {
181 .getResourcesForApplication(tile.iconPkg).getDrawable(tile.iconRes, null);
182 if (!tile.iconPkg.equals(context.getPackageName()) && drawable != null) {
194 } else if (tile.iconRes > 0) {
195 tileIcon.setImageResource(tile
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DTiledTexture.java37 // upload the whole bitmap but we reduce the time of uploading each tile
161 private static void freeTile(Tile tile) { argument
162 tile.invalidateContent();
163 tile.bitmap = null;
165 tile.nextFreeTile = sFreeTileHead;
166 sFreeTileHead = tile;
186 // Make sure tile has not already been recycled by the time
209 Tile tile = obtainTile();
210 tile.offsetX = x;
211 tile
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DTileImageView.java52 * This is the tile state in the CPU side.
88 // The offsets of the (left, top) of the upper-left tile to the (left, top)
131 // The tile returned by this method can be specified this way: Assuming
200 // 1. Decide the tile level we want to use for display.
201 // 2. Decide the tile levels we want to keep as texture (in addition to
210 // The tile levels we want to keep as texture is in the range
218 // We want to keep one more tile level as texture in addition to what
242 // If rotation is transient, don't update the tile.
250 // Recycle unused tiles: if the level of the active tile is outside the
254 Tile tile
475 queueForUpload(Tile tile) argument
484 queueForDecode(Tile tile) argument
491 decodeTile(Tile tile) argument
522 recycleTile(Tile tile) argument
623 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
744 push(Tile tile) argument
[all...]
/packages/apps/Gallery2/src/com/android/photos/views/
H A DTiledImageRenderer.java46 * This is the tile state in the CPU side.
131 * If the source does not care about the tile size, it should use
146 * The tile returned by this method can be specified this way: Assuming
253 // 1. Decide the tile level we want to use for display.
254 // 2. Decide the tile levels we want to keep as texture (in addition to
264 // The tile levels we want to keep as texture is in the range
272 // We want to keep one more tile level as texture in addition to what
296 // If rotation is transient, don't update the tile.
306 // Recycle unused tiles: if the level of the active tile is outside the
310 Tile tile
481 queueForDecode(Tile tile) argument
492 decodeTile(Tile tile) argument
531 recycleTile(Tile tile) argument
632 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
762 push(Tile tile) argument
773 contains(Tile tile) argument
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
H A DTiledImageRenderer.java47 * This is the tile state in the CPU side.
132 * If the source does not care about the tile size, it should use
147 * The tile returned by this method can be specified this way: Assuming
254 // 1. Decide the tile level we want to use for display.
255 // 2. Decide the tile levels we want to keep as texture (in addition to
265 // The tile levels we want to keep as texture is in the range
273 // We want to keep one more tile level as texture in addition to what
297 // If rotation is transient, don't update the tile.
307 // Recycle unused tiles: if the level of the active tile is outside the
311 Tile tile
482 queueForDecode(Tile tile) argument
493 decodeTile(Tile tile) argument
532 recycleTile(Tile tile) argument
633 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
763 push(Tile tile) argument
774 contains(Tile tile) argument
[all...]

Completed in 147 milliseconds