HomeSort by relevance Sort by last modified time
    Searched defs:tile (Results 51 - 75 of 138) sorted by null

1 23 4 5 6

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
TileUtils.java 51 * settings tile using the following parameters.
117 HashMap<Pair<String, String>, Tile> cache) {
121 ArrayList<Tile> tiles = new ArrayList<>();
138 for (Tile tile : tiles) {
139 DashboardCategory category = categoryMap.get(tile.category);
141 category = createCategory(context, tile.category);
143 Log.w(LOG_TAG, "Couldn't find category " + tile.category);
148 category.addTile(tile);
183 UserHandle user, String action, Map<Pair<String, String>, Tile> addedCache
218 Tile tile = addedCache.get(key); local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
ThreadUtilTest.java 60 public void addTile(int generation, TileList.Tile<Integer> data) {
95 public void recycleTile(TileList.Tile<Integer> data) {
115 TileList.Tile<Integer> tile = new TileList.Tile<Integer>(Integer.class, 10); local
116 mMainThreadProxy.addTile(3, tile);
118 assertThat(data, is(new Object[]{3, tile}));
158 TileList.Tile<Integer> tile = new TileList.Tile<Integer>(Integer.class, 10) local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_segmentation.c 123 static void count_segs(VP9_COMP *cpi, const TileInfo *const tile,
139 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols);
164 static void count_segs_sb(VP9_COMP *cpi, const TileInfo *const tile,
183 count_segs(cpi, tile, mi_8x8, no_pred_segcounts, temporal_predictor_count,
186 count_segs(cpi, tile, mi_8x8, no_pred_segcounts, temporal_predictor_count,
188 count_segs(cpi, tile, mi_8x8 + hbs * mis, no_pred_segcounts,
192 count_segs(cpi, tile, mi_8x8, no_pred_segcounts, temporal_predictor_count,
194 count_segs(cpi, tile, mi_8x8 + hbs,
207 count_segs_sb(cpi, tile, &mi_8x8[mi_dr * mis + mi_dc],
243 TileInfo tile; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 52 * This is the tile state in the CPU side.
53 * Life of a Tile:
88 // The offsets of the (left, top) of the upper-left tile to the (left, top)
99 private final LongSparseArray<Tile> mActiveTiles = new LongSparseArray<Tile>();
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 wha
254 Tile tile = mActiveTiles.valueAt(i); local
285 Tile tile = mActiveTiles.valueAt(i); local
386 Tile tile = mRecycledQueue.pop(); local
470 Tile tile = mActiveTiles.valueAt(i); local
513 Tile tile = mRecycledQueue.pop(); local
537 Tile tile = mActiveTiles.get(key); local
568 Tile tile = null; local
596 Tile tile = getTile(tx, ty, level); local
739 Tile tile = mHead; local
772 Tile tile = null; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardAdapter.java 45 import com.android.settingslib.drawer.Tile;
77 private List<Tile> mSuggestions;
108 public List<Tile> getSuggestions() {
113 List<Tile> suggestions) {
123 Tile tile = categories.get(i).tiles.get(j); local
126 tile.intent.getComponent().getPackageName())) {
129 tile.icon.setTint(tintColor.data);
145 public void notifyChanged(Tile tile) {
    [all...]
SummaryLoader.java 35 import com.android.settingslib.drawer.Tile;
49 private final List<Tile> mTiles = new ArrayList<>();
67 List<Tile> tiles = categories.get(i).tiles;
69 Tile tile = tiles.get(j); local
70 mWorker.obtainMessage(Worker.MSG_GET_PROVIDER, tile).sendToTarget();
100 final Tile tile = getTileFromCategory(categories, component);
101 if (tile == null) {
103 Log.d(TAG, "Can't find tile for " + component)
219 final Tile tile = category.tiles.get(j); local
248 Tile tile = (Tile) msg.obj; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageAttachmentTile.java 142 MessageAttachmentTile tile = (MessageAttachmentTile) tileGrid.getChildAt(i); local
143 queue.add(tile);
150 MessageAttachmentTile tile = queue.remove(); local
151 tile.downloadAttachment(maxAdditionalPriority - i, i != 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 33 import android.service.quicksettings.Tile;
84 /** Platform implementation of the quick settings tile host **/
324 for (Map.Entry<String, QSTile<?>> tile : mTiles.entrySet()) {
325 if (!tileSpecs.contains(tile.getKey())) {
326 if (DEBUG) Log.d(TAG, "Destroying tile: " + tile.getKey());
327 tile.getValue().destroy();
332 QSTile<?> tile = mTiles.get(tileSpec); local
333 if (tile != null && (!(tile instanceof CustomTile
    [all...]
  /external/ImageMagick/MagickCore/
identify.c 1127 *tile; local
    [all...]
  /external/ImageMagick/MagickWand/
composite.c 76 tile;
185 if (composite_options->tile != MagickFalse)
195 Tile the composite image.
332 "-tile repeat composite operation across and down image",
74 tile; member in struct:_CompositeOptions
    [all...]
  /external/ImageMagick/coders/
json.c 1241 *tile; local
    [all...]
  /external/dng_sdk/source/
dng_utils.cpp 175 // Convert tile size to uint32.
178 ThrowMemoryFull("Negative tile size");
442 dng_rect tile; local
446 while (iter.GetOneTile (tile))
449 dng_const_tile_buffer buffer (image, tile);
451 const void *sPtr = buffer.ConstPixel (tile.t,
452 tile.l,
456 uint32 count1 = tile.H ();
457 uint32 count2 = tile.W ();
557 const dng_rect &tile,
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_blend.c 874 * to the tile cache. The tile cache always stores RGBA colors but if
935 struct softpipe_cached_tile *tile local
983 dest[i][j] = tile->data.color[y][x][i];
1037 struct softpipe_cached_tile *tile local
1111 struct softpipe_cached_tile *tile local
1179 struct softpipe_cached_tile *tile local
    [all...]
sp_quad_depth_test.c 53 struct softpipe_cached_tile *tile; member in struct:depth_data
63 const struct softpipe_cached_tile *tile = data->tile; local
70 data->bzzzz[j] = tile->data.depth16[y][x];
77 data->bzzzz[j] = tile->data.depth32[y][x];
85 data->bzzzz[j] = tile->data.depth32[y][x] & 0xffffff;
86 data->stencilVals[j] = tile->data.depth32[y][x] >> 24;
94 data->bzzzz[j] = tile->data.depth32[y][x] >> 8;
95 data->stencilVals[j] = tile->data.depth32[y][x] & 0xff;
103 data->stencilVals[j] = tile->data.stencil8[y][x]
256 struct softpipe_cached_tile *tile = data->tile; local
    [all...]
  /external/opencv3/modules/imgproc/src/
clahe.cpp 162 // retrieve tile submatrix
170 const cv::Mat tile = src_(tileROI); local
178 for (const T* ptr = tile.ptr<T>(0); height--; ptr += sstep)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PagedTileLayout.java 157 public int getOffsetTop(TileRecord tile) {
158 final ViewGroup parent = (ViewGroup) tile.tileView.getParent();
164 public void addTile(TileRecord tile) {
165 mTiles.add(tile);
170 public void removeTile(TileRecord tile) {
171 if (mTiles.remove(tile)) {
194 TileRecord tile = mTiles.get(i); local
198 + tile.tile.getClass().getSimpleName());
203 if (DEBUG) Log.d(TAG, "Adding " + tile.tile.getClass().getSimpleName() + " to
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
QSCustomizer.java 188 for (String tile : defTiles.split(",")) {
189 tiles.add(tile);
196 for (QSTile tile : mHost.getTiles()) {
197 specs.add(tile.getTileSpec());
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 46 * This is the tile state in the CPU side.
47 * Life of a Tile:
96 private final LongSparseArray<Tile> mActiveTiles = new LongSparseArray<Tile>();
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 wha
310 Tile tile = mActiveTiles.valueAt(i); local
342 Tile tile = mActiveTiles.valueAt(i); local
395 Tile tile = mRecycledQueue.pop(); local
474 Tile tile = mActiveTiles.valueAt(i); local
521 Tile tile = mRecycledQueue.pop(); local
548 Tile tile = mActiveTiles.get(key); local
572 Tile tile = null; local
603 Tile tile = getTile(tx, ty, level); local
755 Tile tile = mHead; local
803 Tile tile = mDecodeQueue.pop(); local
816 Tile tile = waitForTile(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 46 * This is the tile state in the CPU side.
47 * Life of a Tile:
96 private final LongSparseArray<Tile> mActiveTiles = new LongSparseArray<Tile>();
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 wha
310 Tile tile = mActiveTiles.valueAt(i); local
342 Tile tile = mActiveTiles.valueAt(i); local
395 Tile tile = mRecycledQueue.pop(); local
474 Tile tile = mActiveTiles.valueAt(i); local
521 Tile tile = mRecycledQueue.pop(); local
548 Tile tile = mActiveTiles.get(key); local
572 Tile tile = null; local
603 Tile tile = getTile(tx, ty, level); local
755 Tile tile = mHead; local
803 Tile tile = mDecodeQueue.pop(); local
816 Tile tile = waitForTile(); local
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/photos/views/
TiledImageRenderer.java 46 * This is the tile state in the CPU side.
47 * Life of a Tile:
96 private final LongSparseArray<Tile> mActiveTiles = new LongSparseArray<Tile>();
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 wha
310 Tile tile = mActiveTiles.valueAt(i); local
342 Tile tile = mActiveTiles.valueAt(i); local
395 Tile tile = mRecycledQueue.pop(); local
474 Tile tile = mActiveTiles.valueAt(i); local
521 Tile tile = mRecycledQueue.pop(); local
548 Tile tile = mActiveTiles.get(key); local
572 Tile tile = null; local
603 Tile tile = getTile(tx, ty, level); local
755 Tile tile = mHead; local
803 Tile tile = mDecodeQueue.pop(); local
816 Tile tile = waitForTile(); local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
BaseTmxMapLoader.java 45 /** Whether to convert the objects' pixel position and size to the equivalent in tile space. **/
92 TiledMapTile tile = tilesets.getTile(id & ~MASK_CLEAR); local
93 if (tile != null) {
95 cell.setTile(tile);
216 TiledMapTile tile = map.getTileSets().getTile(id & ~MASK_CLEAR); local
217 TiledMapTileMapObject tiledMapTileMapObject = new TiledMapTileMapObject(tile, flipHorizontally, flipVertically);
335 throw new GdxRuntimeException("Error Reading TMX Layer Data: Premature end of tile data");
TideMapLoader.java 186 TiledMapTile tile = new StaticTiledMapTile(new TextureRegion(texture, x, y, tileSizeX, tileSizeY)); local
187 tile.setId(gid);
188 tileset.putTile(gid++, tile);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
OrthoCachedTiledMapRenderer.java 237 final TiledMapTile tile = cell.getTile(); local
238 if (tile == null) continue;
245 final TextureRegion region = tile.getTextureRegion();
248 final float x1 = col * layerTileWidth + tile.getOffsetX() * unitScale;
249 final float y1 = row * layerTileHeight + tile.getOffsetY() * unitScale;
423 * The amount of tiles cached is computed using <code>(view size + max tile size) * overCache</code>, meaning the max tile size
427 * largest tile size, this setting is not needed. */
  /external/libjpeg-turbo/
tjbench.c 153 int tile=0; local
157 for(col=0, dstptr2=dstptr; col<ntilesw; col++, tile++, dstptr2+=ps*tilew)
164 if(tjDecompressToYUV2(handle, jpegbuf[tile], jpegsize[tile], yuvbuf,
174 if(tjDecompress2(handle, jpegbuf[tile], jpegsize[tile], dstptr2,
305 _throwunix("allocating JPEG tile array");
342 int tile=0; local
347 for(col=0, srcptr2=srcptr; col<ntilesw; col++, tile++,
360 subsamp, &jpegbuf[tile], &jpegsize[tile], jpegqual, flags)==-1
488 int ps=tjPixelSize[pf], tile; local
    [all...]
  /external/libvncserver/test/
tjbench.c 122 int tile=0; local
125 for(col=0, dstptr2=dstptr; col<ntilesw; col++, tile++, dstptr2+=ps*tilew)
129 if(tjDecompress2(handle, jpegbuf[tile], jpegsize[tile], dstptr2, width,
234 _throwunix("allocating JPEG tile array");
265 int tile=0; local
269 for(col=0, srcptr2=srcptr; col<ntilesw; col++, tile++,
275 &jpegbuf[tile], &jpegsize[tile], subsamp, jpegqual, flags)==-1)
277 totaljpegsize+=jpegsize[tile];
    [all...]

Completed in 1096 milliseconds

1 23 4 5 6