Searched refs:tile (Results 1 - 8 of 8) sorted by relevance

/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...]
/packages/apps/Settings/src/com/android/settings/dashboard/
H A DSummaryLoader.java67 Tile tile = tiles.get(j);
68 mWorker.obtainMessage(Worker.MSG_GET_PROVIDER, tile).sendToTarget();
90 Tile tile = mAdapter.getTile(component);
91 if (tile == null) return;
92 if (DEBUG) Log.d(TAG, "setSummary " + tile.title + " - " + summary);
93 tile.summary = summary;
94 mAdapter.notifyChanged(tile);
114 private SummaryProvider getSummaryProvider(Tile tile) { argument
115 if (!mActivity.getPackageName().equals(tile.intent.getComponent().getPackageName())) {
120 Bundle metaData = getMetaData(tile);
147 getMetaData(Tile tile) argument
182 makeProviderW(Tile tile) argument
[all...]
H A DDashboardAdapter.java104 Tile tile = mCategories.get(i).tiles.get(j);
105 if (component.equals(tile.intent.getComponent())) {
106 return tile;
122 Tile tile = categories.get(i).tiles.get(j);
125 tile.intent.getComponent().getPackageName())) {
128 tile.icon.setTint(tintColor.data);
144 public void notifyChanged(Tile tile) { argument
181 Tile tile = category.tiles.get(j);
182 countItem(tile, R.layout.dashboard_tile, mIsShowingAll
184 tile
321 onBindTile(DashboardItemHolder holder, Tile tile) argument
[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/UnifiedEmail/src/com/android/mail/browse/
H A DMessageAttachmentTile.java142 MessageAttachmentTile tile = (MessageAttachmentTile) tileGrid.getChildAt(i);
143 queue.add(tile);
150 MessageAttachmentTile tile = queue.remove();
151 tile.downloadAttachment(maxAdditionalPriority - i, i != 0);
/packages/apps/Settings/src/com/android/settings/
H A DSettingsActivity.java1096 for (Tile tile : category.tiles) {
1097 ComponentName component = tile.intent.getComponent();
1182 protected void onTileClicked(Tile tile) { argument
1185 openTile(tile);
1187 super.onTileClicked(tile);

Completed in 382 milliseconds