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

1 2 3

  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardCategory.java 58 public List<DashboardTile> tiles = new ArrayList<DashboardTile>(); field in class:DashboardCategory
66 tiles.add(tile);
70 tiles.add(n, tile);
74 tiles.remove(tile);
78 tiles.remove(n);
82 return tiles.size();
86 return tiles.get(n);
111 final int count = tiles.size();
115 DashboardTile tile = tiles.get(n);
128 tiles.add(tile)
    [all...]
  /external/chromium_org/third_party/skia/gm/
pictureshadertile.cpp 22 } tiles[] = { variable in typeref:struct:__anon19670
68 for (unsigned i = 0; i < SK_ARRAY_COUNT(tiles); ++i) {
69 SkRect tile = SkRect::MakeXYWH(tiles[i].x * kPictureSize,
70 tiles[i].y * kPictureSize,
71 tiles[i].w * kPictureSize,
72 tiles[i].h * kPictureSize);
74 localMatrix.setTranslate(tiles[i].offsetX * kPictureSize,
75 tiles[i].offsetY * kPictureSize);
140 SkAutoTUnref<SkShader> fShaders[SK_ARRAY_COUNT(tiles)];
  /external/opencv/cv/src/
cvmoments.cpp 197 /* summarizes moment values for all tiles */
199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments )
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 )
208 double dxm = dx * tiles[0], dym = dy * tiles[0];
211 moments->m00 += tiles[0];
214 moments->m10 += tiles[1] + dxm;
217 moments->m01 += tiles[2] + dym;
220 moments->m20 += tiles[3] + dx * (tiles[1] * 2 + dxm)
371 double* tiles = 0; local
    [all...]
  /external/chromium_org/cc/resources/
tile_manager.h 48 // Called when all tiles marked as required for activation are ready to draw.
59 // that will return tiles in order in which they should be rasterized.
65 // queue that will return tiles in order in which they should be evicted.
83 // This class manages tiles, deciding which should get rasterized and which
107 // Returns true when visible tiles have been initialized.
125 void InitializeTilesWithResourcesForTesting(const std::vector<Tile*>& tiles) {
126 for (size_t i = 0; i < tiles.size(); ++i) {
127 ManagedTileState& mts = tiles[i]->managed_state();
132 resource_pool_->AcquireResource(tiles[i]->size());
134 bytes_releasable_ += BytesConsumedIfAllocated(tiles[i])
167 std::vector<Tile*> tiles; local
    [all...]
prioritized_tile_set_unittest.cc 81 void ReleaseTiles(std::vector<scoped_refptr<Tile> >* tiles) {
82 for (std::vector<scoped_refptr<Tile> >::iterator it = tiles->begin();
83 it != tiles->end();
126 // Ensure that tiles in NOW_AND_READY_TO_DRAW_BIN aren't sorted.
135 std::vector<scoped_refptr<Tile> > tiles; local
141 tiles.push_back(tile);
146 // Tiles should appear in the same order as inserted.
151 EXPECT_TRUE(*it == tiles[i].get());
156 ReleaseTiles(&tiles);
160 // Ensure that tiles in NOW_BIN are sorted according to BinComparator
169 std::vector<scoped_refptr<Tile> > tiles; local
205 std::vector<scoped_refptr<Tile> > tiles; local
242 std::vector<scoped_refptr<Tile> > tiles; local
275 std::vector<scoped_refptr<Tile> > tiles; local
311 std::vector<scoped_refptr<Tile> > tiles; local
347 std::vector<scoped_refptr<Tile> > tiles; local
383 std::vector<scoped_refptr<Tile> > tiles; local
    [all...]
prioritized_tile_set.cc 44 // When two tiles has same priority use Id as tie breaker.
50 void SortBinTiles(ManagedTileBin bin, TileVector* tiles) {
55 std::sort(tiles->begin(), tiles->end(), TilePriorityTieBreaker);
63 std::sort(tiles->begin(), tiles->end(), BinComparator());
126 // We can't increment past the end of the tiles.
layer_tiling_data.h 43 // Change the tile size. This may invalidate all the existing tiles.
46 // Change the border texel setting. This may invalidate all existing tiles.
50 bool is_empty() const { return has_empty_bounds() || !tiles().size(); }
77 const TileMap& tiles() const { return tiles_; } function in class:cc::LayerTilingData
picture_layer_tiling_set_unittest.cc 50 // No tiles have resources, so no iter represents a real tile.
224 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
225 client.tile_manager()->InitializeTilesWithResourcesForTesting(tiles);
372 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
373 for (size_t i = 0; i < tiles.size(); ++i) {
374 const Tile* tile = tiles[i];
378 << "All tiles must be inside the live tiles rect."
388 EXPECT_TRUE(*iter) << "The live tiles rect must be full.";
428 std::vector<Tile*> tiles = tiling->AllTilesForTesting() local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 33 import com.android.systemui.qs.tiles.AirplaneModeTile;
34 import com.android.systemui.qs.tiles.BluetoothTile;
35 import com.android.systemui.qs.tiles.CastTile;
36 import com.android.systemui.qs.tiles.CellularTile;
37 import com.android.systemui.qs.tiles.ColorInversionTile;
38 import com.android.systemui.qs.tiles.FlashlightTile;
39 import com.android.systemui.qs.tiles.HotspotTile;
40 import com.android.systemui.qs.tiles.IntentTile;
41 import com.android.systemui.qs.tiles.LocationTile;
42 import com.android.systemui.qs.tiles.RotationLockTile
279 final ArrayList<String> tiles = new ArrayList<String>(); local
    [all...]
  /external/chromium_org/cc/test/
fake_picture_layer_impl.cc 108 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
109 for (size_t tile_idx = 0; tile_idx < tiles.size(); ++tile_idx) {
110 Tile* tile = tiles[tile_idx];
124 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
125 for (size_t tile_idx = 0; tile_idx < tiles.size(); ++tile_idx) {
126 Tile* tile = tiles[tile_idx];
143 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
144 for (size_t tile_idx = 0; tile_idx < tiles.size(); ++tile_idx) {
145 Tile* tile = tiles[tile_idx];
  /external/replicaisland/tools/
ExtractPoints.js 22 * graphical representations of the collision tiles used by the engine. Each
50 var tiles = new Array();
51 tiles.length = tilesPerRow * tilesPerColumn;
129 tiles[tileIndex] = tile;
139 for (var x = 0; x < tiles.length; x++) {
140 if (tiles[x]) {
141 var tile = tiles[x];
217 for (var x = 0; x < tiles.length; x++) {
218 if (tiles[x]) {
219 var tile = tiles[x]
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 48 PAGE: 'mv-page', // page tiles
78 TILES: 'mv-tiles',
157 * The array of rendered tiles, ordered by appearance.
160 var tiles = [];
187 * Current number of tiles columns shown based on the window width, including
196 * in onMostVisitedChange() tiles remain visible so no flickering occurs.
248 * section. Used to determine how many tiles to show.
279 * Hide most visited tiles for at most this many milliseconds while painting.
377 * Updates the NTP based on the current theme, then rerenders all tiles
    [all...]
  /external/chromium_org/third_party/skia/dm/
DMQuiltTask.cpp 10 DEFINE_bool(quilt, true, "If true, draw GM via a picture into a quilt of small tiles and compare.");
69 const SkTileGridFactory::TileGridInfo tiles = { local
74 factory.reset(SkNEW_ARGS(SkTileGridFactory, (tiles)));
98 // Draw tiles in parallel into the same bitmap, simulating aggressive impl-side painting.
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
tcd.c 55 opj_tcd_tile_t *tile = &tcd->tcd_image->tiles[tileno];
216 opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
300 opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
400 opj_tcd_tile_t *tcd_tile = tcd->tcd_image->tiles;
583 p_tcd->tcd_image->tiles = (opj_tcd_tile_t *) opj_malloc(sizeof(opj_tcd_tile_t));
584 if (! p_tcd->tcd_image->tiles) {
587 memset(p_tcd->tcd_image->tiles,0, sizeof(opj_tcd_tile_t));
590 p_tcd->tcd_image->tiles->comps = (opj_tcd_tilecomp_t *) opj_malloc(l_tile_comp_size);
591 if (! p_tcd->tcd_image->tiles->comps ) {
594 memset( p_tcd->tcd_image->tiles->comps , 0 , l_tile_comp_size)
    [all...]
  /external/chromium_org/cc/layers/
tiled_layer_impl.cc 64 // Any other number of tiles other than 0 or 1 is incorrect for masks.
115 for (LayerTilingData::TileMap::const_iterator iter = tiler_->tiles().begin();
116 iter != tiler_->tiles().end();
135 for (LayerTilingData::TileMap::const_iterator iter = tiler_->tiles().begin();
136 iter != tiler_->tiles().end();
216 // Skip empty tiles.
tiled_layer.cc 29 // Number of rows/columns of tiles to pre-paint.
51 // it has already painted, mark all non-dirty tiles as valid before painting
119 // skinny layers (e.g. scrollbars) that are Nx1 tiles to minimize wasted
120 // texture space but still avoids creating very large tiles.
198 for (LayerTilingData::TileMap::const_iterator iter = tiler_->tiles().begin();
199 iter != tiler_->tiles().end();
209 // Evicted tiles get deleted from both layers
215 // Invalidated tiles are set so they can get different debug colors.
254 iter = tiler_->tiles().begin();
255 iter != tiler_->tiles().end()
    [all...]
tiled_layer.h 53 size_t NumPaintedTiles() { return tiler_->tiles().size(); }
61 // Reset state on tiles that will be used for updating the layer.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
UserDetailView.java 17 package com.android.systemui.qs.tiles;
AirplaneModeTile.java 17 package com.android.systemui.qs.tiles;
ColorInversionTile.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;
LocationTile.java 17 package com.android.systemui.qs.tiles;
  /external/chromium_org/gpu/tools/compositor_model_bench/
render_tree.cc 229 if (node->HasKey("tiles")) {
230 if (!VerifyDictionaryEntry(node, "tiles", base::Value::TYPE_DICTIONARY))
233 node->GetDictionary("tiles", &tiles_dict);
251 base::ListValue* tiles;
252 tiles_dict->GetList("info", &tiles);
253 for (unsigned int i = 0; i < tiles->GetSize(); ++i) {
254 if (!VerifyListEntry(tiles, i, base::Value::TYPE_DICTIONARY, "Tile info"))
257 tiles->GetDictionary(i, &tdict);
  /external/chromium_org/ui/file_manager/gallery/js/
mosaic_mode.js 155 // The listeners might be called while some tiles are still loading.
278 * Initializes multiple tiles.
280 * @param {Array.<Mosaic.Tile>} tiles Array of tiles.
283 Mosaic.prototype.initTiles_ = function(tiles) {
284 for (var i = 0; i < tiles.length; i++) {
285 tiles[i].init();
290 * Reloads all tiles.
299 * Layouts the tiles in the order of their indices.
302 * Stops when all tiles are processed or when the next tile is still loading
    [all...]

Completed in 783 milliseconds

1 2 3