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

1 2 3 4 5 6

  /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...]
SettingsDrawerAdapter.java 45 Item tile = new Item(); local
46 tile.label = mActivity.getString(R.string.home);
47 tile.icon = Icon.createWithResource(mActivity, R.drawable.home);
48 mItems.add(tile);
56 tile = new Item();
57 Tile dashboardTile = dashboardCategory.tiles.get(j);
58 tile.label = dashboardTile.title;
59 tile.icon = dashboardTile.icon;
60 tile.tile = dashboardTile
120 public Tile tile; field in class:SettingsDrawerAdapter.Item
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileSets.java 68 * @return tile with matching id, null if it doesn't exist */
78 TiledMapTile tile = tileset.getTile(id); local
79 if (tile != null) {
80 return tile;
  /external/mesa3d/src/gallium/auxiliary/util/
u_linear.h 61 /* size of each tile expressed in blocks */
65 /* Describe the tile in pixels */
66 struct u_linear_format_block tile; member in struct:pipe_tile_info
68 /* Describe each block within the tile */
82 * @tile_width the width of the tile in pixels
83 * @tile_height the height of the tile in pixels
94 if (t->tile.size != t->block.size * t->cols * t->rows)
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
transpose.hpp 63 __shared__ src_type tile[TILE_DIM][TILE_DIM + 1]; local
89 tile[threadIdx.y + i][threadIdx.x] = src(yIndex + i, xIndex);
105 dst(yIndex + i, xIndex) = saturate_cast<DstType>(tile[threadIdx.x][threadIdx.y + i]);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java 66 final QSTile<?> tile = host.createTile(spec); local
67 if (tile == null || !tile.isAvailable()) {
70 tile.setListening(this, true);
71 tile.clearState();
72 tile.refreshState();
73 tile.setListening(this, false);
77 final QSTile.State state = tile.newTileState();
78 tile.getState().copyTo(state);
80 state.label = tile.getTileLabel()
    [all...]
  /cts/apps/CameraITS/tests/dng_noise_model/
dng_noise_model.py 31 # tile_size, row, col] where row, col are tile indices.
32 def tile(a, tile_size): function
137 # Crop the plane to be a multiple of the tile size.
153 np.mean(tile(p, tile_size), axis=(0, 1)).flatten()
155 np.var(tile(hp, tile_size), axis=(0, 1)).flatten()
158 # Don't include the tile if it has samples that might
215 a = a/(np.tile(gains, (a.shape[1], 1)).T)
  /external/libdrm/libkms/
intel.c 123 struct drm_i915_gem_set_tiling tile; local
125 memset(&tile, 0, sizeof(tile));
126 tile.handle = bo->base.handle;
127 tile.tiling_mode = I915_TILING_X;
128 tile.stride = bo->base.pitch;
130 ret = drmCommandWriteRead(kms->fd, DRM_I915_GEM_SET_TILING, &tile, sizeof(tile));
  /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/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 61 struct softpipe_cached_tile *tile; local
74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy);
88 &tile->data.depth16[iy % TILE_SIZE][(ix + dx)% TILE_SIZE];
sp_tex_tile_cache.c 29 * Texture tile caching.
61 tc->last_tile = &tc->entries[0]; /* any tile */
185 * Flush the tile cache: write all dirty tiles back to the transfer.
207 * cached texture tile.
231 struct softpipe_tex_cached_tile *tile; local
234 tile = tc->entries + tex_cache_pos( addr );
236 if (addr.value != tile->addr.value) {
245 " tile %u: x=%d y=%d z=%d face=%d level=%d\n",
247 pos, tile->addr.bits.x, tile->addr.bits.y, tile->z, tile->face, tile->level)
    [all...]
  /external/skia/gm/
image_shader.cpp 102 const SkShader::TileMode tile = SkShader::kRepeat_TileMode; local
104 SkAutoTUnref<SkShader> shader(image->newShader(tile, tile, &localM));
pictureshader.cpp 185 SkRect tile = SkRect::MakeWH(100, 100); local
188 SkCanvas* c = recorder.beginRecording(tile);
190 SkRect r = tile;
pictureshadertile.cpp 108 SkRect tile = SkRect::MakeXYWH(tiles[i].x * kPictureSize, variable
119 SkRect* tilePtr = &tile;
121 if (tile == SkRect::MakeWH(kPictureSize, kPictureSize)) {
122 // When the tile == picture bounds, exercise the picture + offset path.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
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...]
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...]
QSPanel.java 47 /** View that represents the quick settings tile panel. **/
128 record.tile.removeCallbacks();
147 QSTile<?> tile = getTile(subPanel); local
148 showDetailAdapter(true, tile.getDetailAdapter(), new int[] {getWidth() / 2, 0});
153 if (subPanel.equals(mRecords.get(i).tile.getTileSpec())) {
154 return mRecords.get(i).tile;
198 r.tile.clearState();
260 r.tile.refreshState();
292 record.tile.removeCallback(record.callback);
295 for (QSTile<?> tile : tiles)
532 public QSTile<?> tile; field in class:QSPanel.TileRecord
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapShaderTest.java 39 Bitmap tile = Bitmap.createBitmap(TILE_WIDTH, TILE_HEIGHT, Config.ARGB_8888); local
40 tile.eraseColor(BORDER_COLOR);
41 Canvas c = new Canvas(tile);
46 BitmapShader shader = new BitmapShader(tile, Shader.TileMode.REPEAT,
65 * Check the colors of the tile at the given coordinates in the given
  /external/ImageMagick/Magick++/lib/
Montage.cpp 150 void Magick::Montage::tile(const Geometry &tile_) function in class:Magick::Montage
155 Magick::Geometry Magick::Montage::tile(void) const function in class:Magick::Montage
220 // tile
222 Magick::CloneString(&montageInfo_.tile,_tile);
  /external/ImageMagick/MagickCore/
montage.h 37 *tile, member in struct:_MontageInfo
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
TileSetLayout.java 29 /** Contains extra information that can only be calculated after a Tiled Map's tile set images are loaded.
40 /** Constructs a Tile Set layout. The tile set image contained in the baseDir should be the original tile set images before
42 * @param tileset the tile set to process
43 * @param baseDir the directory in which the tile set image is stored */
56 // fill the tile regions
57 int x, y, tile = 0; local
67 imageTilePositions.put(tile, new Vector2(x, y));
68 tile++
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mvref_common.c 29 const TileInfo *const tile = &xd->tile; local
39 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
61 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
103 if (is_inside(tile, mi_col, mi_row, cm->mi_rows, mv_ref)) {
  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_buffer.c 99 uint32_t tile = 0, swizzle = 0; local
112 drm_intel_bo_get_tiling(buf->bo, &tile, &swizzle);
115 *tiling = tile;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
CustomTile.java 31 import android.service.quicksettings.Tile;
57 private final Tile mTile;
74 mTile = new Tile();
138 public void onTileChanged(ComponentName tile) {
155 public Tile getQsTile() {
159 public void updateState(Tile tile) {
160 mTile.setIcon(tile.getIcon());
161 mTile.setLabel(tile.getLabel());
162 mTile.setContentDescription(tile.getContentDescription())
    [all...]
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoTile.java 18 import android.service.quicksettings.Tile;
68 Tile tile = getQsTile(); local
74 tile.setIcon(food.getIcon(this));
75 tile.setLabel(food.getName(this));
76 tile.setState(foodState != 0 ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE);
77 tile.updateTile();

Completed in 536 milliseconds

1 2 3 4 5 6