HomeSort by relevance Sort by last modified time
    Searched refs:tile (Results 1 - 25 of 318) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/3rdparty/libjasper/
jpc_t1dec.h 85 /* Decode all of the code blocks for a particular tile. */
86 int jpc_dec_decodecblks(jpc_dec_t *dec, jpc_dec_tile_t *tile);
jpc_t2dec.h 88 /* Decode the packets for a tile-part. */
93 jpc_pi_t *jpc_dec_pi_create(jpc_dec_t *dec, jpc_dec_tile_t *tile);
  /frameworks/base/core/java/android/service/quicksettings/
IQSService.aidl 20 import android.service.quicksettings.Tile;
26 Tile getTile(in IBinder tile);
27 void updateQsTile(in Tile tile, in IBinder service);
28 void updateStatusIcon(in IBinder tile, in Icon icon,
30 void onShowDialog(in IBinder tile);
31 void onStartActivity(in IBinder tile);
34 void startUnlockAndRun(in IBinder tile);
36 void onDialogHidden(in IBinder tile);
    [all...]
  /external/dng_sdk/source/
dng_tile_iterator.cpp 69 dng_rect tile (area);
71 tile.b = Min_int32 (tile.b, tile.t + tileSize.v);
72 tile.r = Min_int32 (tile.r, tile.l + tileSize.h);
74 Initialize (tile,
81 dng_tile_iterator::dng_tile_iterator (const dng_rect &tile,
99 Initialize (tile,
    [all...]
dng_tile_iterator.h 60 dng_tile_iterator (const dng_rect &tile,
63 bool GetOneTile (dng_rect &tile);
67 void Initialize (const dng_rect &tile,
  /external/libvpx/libvpx/vp9/common/
vp9_tile_common.h 25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on
27 void vp9_tile_init(TileInfo *tile, const struct VP9Common *cm,
30 void vp9_tile_set_row(TileInfo *tile, const struct VP9Common *cm, int row);
31 void vp9_tile_set_col(TileInfo *tile, const struct VP9Common *cm, int col);
vp9_tile_common.c 24 void vp9_tile_set_row(TileInfo *tile, const VP9_COMMON *cm, int row) {
25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows);
26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows);
29 void vp9_tile_set_col(TileInfo *tile, const VP9_COMMON *cm, int col) {
30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols);
34 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) {
35 vp9_tile_set_row(tile, cm, row);
36 vp9_tile_set_col(tile, cm, col);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/objects/
TiledMapTileMapObject.java 35 private TiledMapTile tile; field in class:TiledMapTileMapObject
37 public TiledMapTileMapObject (TiledMapTile tile, boolean flipHorizontally, boolean flipVertically) {
40 this.tile = tile;
42 TextureRegion textureRegion = new TextureRegion(tile.getTextureRegion());
64 return tile;
67 public void setTile (TiledMapTile tile) {
68 this.tile = tile;
  /external/replicaisland/tools/
ExtractPoints.js 41 var tileSizeX = prompt("Tile pixel width:");
42 var tileSizeY = prompt("Tile pixel height:");
54 // an array by tile.
66 var tile = new Object;
67 tile.edges = new Array();
111 tile.edges.push(edge);
116 tile.centerX = totalX;
117 tile.centerY = totalY;
119 var column = Math.floor(tile.centerX / tileSizeX);
120 var row = Math.floor(tile.centerY / tileSizeY)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
DashboardCategory.java 46 public List<Tile> tiles = new ArrayList<Tile>();
53 public void addTile(Tile tile) {
54 tiles.add(tile);
57 public void addTile(int n, Tile tile) {
58 tiles.add(n, tile);
61 public void removeTile(Tile tile) {
92 Tile tile = tiles.get(n); local
105 Tile tile = Tile.CREATOR.createFromParcel(in); local
    [all...]
  /external/ImageMagick/PerlMagick/t/
montage.t 123 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+3+3>', frame=>'8x10',
134 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10',
145 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10',
154 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe',
165 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe',
176 q/ tile=>'4x4', geometry=>'90x80+6+6>', mode=>'UnFrame',
183 # 17) Test Un-bordered, Un-framed Montage with 16x1 tile
187 q/background=>'#696e7e', tile=>'16x1', geometry=>'90x80+0+0>', mode=>'Unframe',
199 q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80>', mode=>'Concatenate'/,
207 q/background=>'#696e7e', tile=>'4x4', geometry=>'+0+0', mode=>'Unframe', shadow=>'False'
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_debug.c 5 struct tile { struct
114 static void plot(struct tile *tile,
119 if (tile->data[x][y] == ' ')
120 tile->coverage++;
122 tile->overdraw++;
124 tile->data[x][y] = val;
135 struct tile *tile,
142 if (!tile->state
290 struct tile tile; local
348 struct tile tile; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodemv.h 23 const struct TileInfo *const tile,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_pickmode.h 21 const struct TileInfo *const tile,
  /external/ImageMagick/PerlMagick/demo/
shapes.pl 15 $tile=Image::Magick->new;
16 $tile->Read('tile.gif');
17 $image->Draw(primitive=>'Polygon',tile=>$tile,fill=>'none',
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tile_cache.c 29 * Render target tile caching.
46 * Return the position in the cache for the tile that contains win pos (x,y).
57 * Is the tile at (x,y) in cleared state?
71 * Mark the tile at (x,y) as not cleared.
110 tc->tile = MALLOC_STRUCT( softpipe_cached_tile );
111 if (!tc->tile)
141 FREE( tc->tile );
217 * Set pixels in a tile to the given clear color/value, float.
220 clear_tile_rgba(struct softpipe_cached_tile *tile,
228 memset(tile->data.color, 0, sizeof(tile->data.color))
439 struct softpipe_cached_tile *tile = tc->entries[pos]; local
464 struct softpipe_cached_tile * tile = MALLOC_STRUCT(softpipe_cached_tile); local
506 struct softpipe_cached_tile *tile = tc->entries[pos]; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/dashboard/
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/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...]
  /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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
TileLayout.java 41 public int getOffsetTop(TileRecord tile) {
50 record.tile.setListening(this, mListening);
54 public void addTile(TileRecord tile) {
55 mRecords.add(tile);
56 tile.tile.setListening(this, mListening);
57 addView(tile.tileView);
61 public void removeTile(TileRecord tile) {
62 mRecords.remove(tile);
63 tile.tile.setListening(this, false)
    [all...]
QuickQSPanel.java 87 State copy = r.tile.newTileState();
98 protected QSTileBaseView createTileView(QSTile<?> tile, boolean collapsedView) {
99 return new QSTileBaseView(mContext, tile.createTileView(mContext), collapsedView);
116 protected void onTileClick(QSTile<?> tile) {
117 tile.secondaryClick();
132 for (QSTile<?> tile : tiles) {
133 quickTiles.add(tile);
170 record.tile.setListening(this, mListening);
175 public void addTile(TileRecord tile) {
180 addView(tile.tileView, getChildCount(), generateLayoutParams())
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileLayer.java 56 * @param tileWidth tile width in pixels
57 * @param tileHeight tile height in pixels */
90 private TiledMapTile tile; field in class:TiledMapTileLayer.Cell
98 /** @return The tile currently assigned to this cell. */
100 return tile;
103 /** Sets the tile to be used for this cell.
105 * @param tile the {@link TiledMapTile} to use for this cell.
107 public Cell setTile (TiledMapTile tile) {
108 this.tile = tile;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_tile_common.c 24 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) {
25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows);
26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows);
27 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
28 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols);

Completed in 1050 milliseconds

1 2 3 4 5 6 7 8 91011>>