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

1 2

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileSet.java 28 private IntMap<TiledMapTile> tiles; field in class:TiledMapTileSet
49 tiles = new IntMap<TiledMapTile>();
58 return tiles.get(id);
61 /** @return iterator to tiles in this tileset */
64 return tiles.values().iterator();
72 tiles.put(id, tile);
77 tiles.remove(id);
82 return tiles.size;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
DashboardCategory.java 34 * Key used for placing external tiles.
46 public List<Tile> tiles = new ArrayList<Tile>(); field in class:DashboardCategory
54 tiles.add(tile);
58 tiles.add(n, tile);
62 tiles.remove(tile);
66 tiles.remove(n);
70 return tiles.size();
74 return tiles.get(n);
88 final int count = tiles.size();
92 Tile tile = tiles.get(n)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/tiles/
StaticTiledMapTile.java 17 package com.badlogic.gdx.maps.tiled.tiles;
AnimatedTiledMapTile.java 17 package com.badlogic.gdx.maps.tiled.tiles;
139 /** Function is called by BatchTiledMapRenderer render(), lastTiledMapRenderTime is used to keep all of the tiles in lock-step
145 /** Creates an animated tile with the given animation interval and frame tiles.
161 /** Creates an animated tile with the given animation intervals and frame tiles.
  /external/skia/gm/
pictureshadertile.cpp 22 } tiles[] = { variable in typeref:struct:__anon23608
107 for (unsigned i = 0; i < SK_ARRAY_COUNT(tiles); ++i) {
108 SkRect tile = SkRect::MakeXYWH(tiles[i].x * kPictureSize,
109 tiles[i].y * kPictureSize,
110 tiles[i].w * kPictureSize,
111 tiles[i].h * kPictureSize);
113 localMatrix.setTranslate(tiles[i].offsetX * kPictureSize,
114 tiles[i].offsetY * kPictureSize);
153 SkAutoTUnref<SkShader> fShaders[SK_ARRAY_COUNT(tiles)];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
AirplaneModeTile.java 17 package com.android.systemui.qs.tiles;
ColorInversionTile.java 17 package com.android.systemui.qs.tiles;
LocationTile.java 17 package com.android.systemui.qs.tiles;
NightDisplayTile.java 17 package com.android.systemui.qs.tiles;
RotationLockTile.java 17 package com.android.systemui.qs.tiles;
UserTile.java 16 package com.android.systemui.qs.tiles;
DataSaverTile.java 15 package com.android.systemui.qs.tiles;
DataUsageDetailView.java 17 package com.android.systemui.qs.tiles;
FlashlightTile.java 17 package com.android.systemui.qs.tiles;
HotspotTile.java 17 package com.android.systemui.qs.tiles;
UserDetailItemView.java 17 package com.android.systemui.qs.tiles;
UserDetailView.java 17 package com.android.systemui.qs.tiles;
WorkModeTile.java 17 package com.android.systemui.qs.tiles;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
HexagonalTiledMapTest.java 30 import com.badlogic.gdx.maps.tiled.tiles.StaticTiledMapTile;
58 TiledMapTile[] tiles = new TiledMapTile[3]; local
59 tiles[0] = new StaticTiledMapTile(new TextureRegion(hexes[0][0]));
60 tiles[1] = new StaticTiledMapTile(new TextureRegion(hexes[0][1]));
61 tiles[2] = new StaticTiledMapTile(new TextureRegion(hexes[1][0]));
69 cell.setTile(tiles[id]);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/superkoalio/
SuperKoalio.java 82 private Array<Rectangle> tiles = new Array<Rectangle>(); field in class:SuperKoalio
197 // if the koala is moving right, check the tiles to the right of it's
209 getTiles(startX, startY, endX, endY, tiles);
211 for (Rectangle tile : tiles) {
219 // if the koala is moving upwards, check the tiles to the top of its
228 getTiles(startX, startY, endX, endY, tiles);
230 for (Rectangle tile : tiles) {
273 private void getTiles (int startX, int startY, int endX, int endY, Array<Rectangle> tiles) {
275 rectPool.freeAll(tiles);
276 tiles.clear();
    [all...]
  /external/ImageMagick/MagickCore/
montage.c 364 tiles;
408 Create image tiles.
465 Determine tiles per row and column.
574 tiles=0;
859 proceed=SetImageProgress(image,MontageImageTag,tiles,total_tiles);
865 tiles++;
359 tiles; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureRegion.java 246 /** Helper function to create tiles out of this TextureRegion starting from the top left corner going to the right and ending at
247 * the bottom right corner. Only complete tiles will be returned so if the region's width or height are not a multiple of the
264 TextureRegion[][] tiles = new TextureRegion[rows][cols]; local
268 tiles[row][col] = new TextureRegion(texture, x, y, tileWidth, tileHeight);
272 return tiles;
275 /** Helper function to create tiles out of the given {@link Texture} starting from the top left corner going to the right and
276 * ending at the bottom right corner. Only complete tiles will be returned so if the texture's width or height are not a
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bench/
TiledMapBench.java 33 import com.badlogic.gdx.maps.tiled.tiles.StaticTiledMapTile;
44 private Texture tiles; field in class:TiledMapBench
65 tiles = new Texture(Gdx.files.internal("data/maps/tiled/tiles.png"));
66 TextureRegion[][] splitTiles = TextureRegion.split(tiles, 32, 32);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/
VoxelTest.java 60 Texture texture = new Texture(Gdx.files.internal("data/g3d/tiles.png"));
61 TextureRegion[][] tiles = TextureRegion.split(texture, 32, 32); local
64 voxelWorld = new VoxelWorld(tiles[0], 20, 4, 20);
VoxelWorld.java 50 private final TextureRegion[] tiles; field in class:VoxelWorld
52 public VoxelWorld (TextureRegion[] tiles, int chunksX, int chunksY, int chunksZ) {
53 this.tiles = tiles;

Completed in 3392 milliseconds

1 2