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

1 2

  /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/cc/test/
fake_picture_layer_impl.cc 92 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
93 for (size_t tile_idx = 0; tile_idx < tiles.size(); ++tile_idx) {
94 Tile* tile = tiles[tile_idx];
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];
127 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
128 for (size_t tile_idx = 0; tile_idx < tiles.size(); ++tile_idx) {
129 Tile* tile = tiles[tile_idx];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
AirplaneModeTile.java 17 package com.android.systemui.qs.tiles;
LocationTile.java 17 package com.android.systemui.qs.tiles;
RotationLockTile.java 17 package com.android.systemui.qs.tiles;
ColorInversionTile.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;
BluetoothTile.java 17 package com.android.systemui.qs.tiles;
DataUsageDetailView.java 17 package com.android.systemui.qs.tiles;
FlashlightTile.java 17 package com.android.systemui.qs.tiles;
IntentTile.java 17 package com.android.systemui.qs.tiles;
CastTile.java 17 package com.android.systemui.qs.tiles;
CellularTile.java 17 package com.android.systemui.qs.tiles;
WifiTile.java 17 package com.android.systemui.qs.tiles;
  /external/chromium_org/cc/resources/
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(); }
82 const TileMap& tiles() const { return tiles_; } function in class:cc::LayerTilingData
prioritized_tile_set_unittest.cc 116 // Ensure that tiles in NOW_AND_READY_TO_DRAW_BIN aren't sorted.
125 std::vector<scoped_refptr<Tile> > tiles; local
131 tiles.push_back(tile);
136 // Tiles should appear in the same order as inserted.
141 EXPECT_TRUE(*it == tiles[i].get());
148 // Ensure that tiles in NOW_BIN are sorted according to BinComparator.
157 std::vector<scoped_refptr<Tile> > tiles; local
163 tiles.push_back(tile);
168 // Tiles should appear in BinComparator order.
169 std::sort(tiles.begin(), tiles.end(), BinComparator())
191 std::vector<scoped_refptr<Tile> > tiles; local
226 std::vector<scoped_refptr<Tile> > tiles; local
257 std::vector<scoped_refptr<Tile> > tiles; local
291 std::vector<scoped_refptr<Tile> > tiles; local
325 std::vector<scoped_refptr<Tile> > tiles; local
359 std::vector<scoped_refptr<Tile> > tiles; local
    [all...]
picture_layer_tiling_set_unittest.cc 50 // No tiles have resources, so no iter represents a real tile.
83 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
84 client.tile_manager()->InitializeTilesWithResourcesForTesting(tiles);
227 std::vector<Tile*> tiles = tiling->AllTilesForTesting(); local
228 for (size_t i = 0; i < tiles.size(); ++i) {
229 const Tile* tile = tiles[i];
233 << "All tiles must be inside the live tiles rect.";
240 EXPECT_TRUE(*iter) << "The live tiles rect must be full.";
280 std::vector<Tile*> tiles = tiling->AllTilesForTesting() local
    [all...]
tile_manager_unittest.cc 96 TileVector tiles; local
108 tiles.push_back(tile);
110 return tiles;
122 int AssignedMemoryCount(const TileVector& tiles) {
124 for (TileVector::const_iterator it = tiles.begin(); it != tiles.end();
158 // A few tiles of each type of priority, with enough memory for all tiles.
178 // A few tiles of each type of priority, with enough memory for all tiles,
    [all...]
picture_layer_tiling_unittest.cc 91 std::vector<Tile*> tiles = tiling_->AllTilesForTesting(); local
92 for (std::vector<Tile*>::iterator iter = tiles.begin();
93 iter != tiles.end();
190 // Verifies that a resize deletes tiles that used to be on the edge.
199 // Stop creating tiles so that any invalidations are left as holes.
440 // Tiling at 0.25 scale: this should create 47x47 tiles of size 10x10.
467 // No movement in the viewport implies that tiles will either be NOW
468 // or EVENTUALLY, with the exception of tiles that are between 0 and 312
538 // Viewport moved, so we expect to find some NOW tiles, some SOON tiles an
    [all...]
  /external/chromium_org/android_webview/browser/
browser_view_renderer.cc 159 // Just set the memory limit to 0 and drop all tiles. This will be reset to
181 size_t tiles = width * height * kTileMultiplier / g_tile_area; local
182 // Round up to a multiple of kTileAllocationStep. The minimum number of tiles
184 tiles = (tiles / kTileAllocationStep + 1) * kTileAllocationStep;
185 policy.num_resources_limit = 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/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
tcd.h 187 opj_tcd_tile_t *tiles; /* Tiles information */ member in struct:opj_tcd_image
213 /** coding/decoding parameters common to all tiles */
309 @param tileno Number that identifies one of the tiles to be decoded
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QSTileHost.java 32 import com.android.systemui.qs.tiles.AirplaneModeTile;
33 import com.android.systemui.qs.tiles.BluetoothTile;
34 import com.android.systemui.qs.tiles.CastTile;
35 import com.android.systemui.qs.tiles.CellularTile;
36 import com.android.systemui.qs.tiles.ColorInversionTile;
37 import com.android.systemui.qs.tiles.FlashlightTile;
38 import com.android.systemui.qs.tiles.HotspotTile;
39 import com.android.systemui.qs.tiles.IntentTile;
40 import com.android.systemui.qs.tiles.LocationTile;
41 import com.android.systemui.qs.tiles.RotationLockTile
276 final ArrayList<String> tiles = new ArrayList<String>(); local
    [all...]

Completed in 995 milliseconds

1 2