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

1 2 3 4 5 6 7 8 91011>>

  /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, int row,
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);
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardFeatureProviderImpl.java 39 import com.android.settingslib.drawer.Tile;
80 final List<Tile> tiles = category.tiles;
82 Log.d(TAG, "tile list is empty, skipping category " + category.title);
86 for (Tile tile : tiles) {
88 bindPreferenceToTile(activity, sourceMetricsCategory, pref, tile, null /* key */,
101 public String getDashboardKeyForTile(Tile tile) {
102 if (tile == null || tile.intent == null)
218 ProfileSelectDialog.show(activity.getFragmentManager(), tile); local
    [all...]
SummaryLoader.java 38 import com.android.settingslib.drawer.Tile;
73 List<Tile> tiles = categories.get(i).tiles;
75 Tile tile = tiles.get(j); local
76 mWorker.obtainMessage(Worker.MSG_GET_PROVIDER, tile).sendToTarget();
97 List<Tile> tiles = category.tiles;
98 for (Tile tile : tiles) {
99 mWorker.obtainMessage(Worker.MSG_GET_PROVIDER, tile).sendToTarget();
119 final Tile tile = getTileFromCategory
257 final Tile tile = getTileFromCategory(category, component); local
271 final Tile tile = category.tiles.get(j); local
303 Tile tile = (Tile) msg.obj; local
    [all...]
DashboardFeatureProvider.java 24 import com.android.settingslib.drawer.Tile;
59 * Returns an unique string key for the tile.
61 String getDashboardKeyForTile(Tile tile);
64 * Binds preference to data provided by tile.
66 * @param activity If tile contains intent to launch, it will be launched from this activity
69 * @param tile The binding data
70 * @param key They key for preference. If null, we will generate one from tile data
72 * both this value and tile's own priority.
75 Tile tile, String key, int baseOrder)
    [all...]
  /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...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
DashboardFeatureProviderImplTest.java 40 import com.android.settingslib.drawer.Tile;
99 final Tile tile = new Tile(); local
100 tile.title = "title";
101 tile.summary = "summary";
102 tile.icon = Icon.createWithBitmap(Bitmap.createBitmap(1, 1, Bitmap.Config.RGB_565));
103 tile.metaData = new Bundle();
104 tile.metaData.putString(SettingsActivity.META_DATA_KEY_FRAGMENT_CLASS, "HI");
105 tile.priority = 10
121 final Tile tile = new Tile(); local
138 final Tile tile = new Tile(); local
159 final Tile tile = new Tile(); local
184 final Tile tile = new Tile(); local
211 final Tile tile = new Tile(); local
224 final Tile tile = new Tile(); local
237 final Tile tile = new Tile(); local
250 final Tile tile = new Tile(); local
264 final Tile tile = new Tile(); local
278 final Tile tile = new Tile(); local
304 final Tile tile = new Tile(); local
    [all...]
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/drawer/
ProfileSelectDialogTest.java 61 final Tile tile = new Tile(); local
62 tile.intent = new Intent();
63 tile.userHandle.add(NORMAL_USER);
65 ProfileSelectDialog.updateUserHandlesIfNeeded(mContext, tile);
67 assertEquals(tile.userHandle.size(), 1);
68 assertEquals(tile.userHandle.get(0).getIdentifier(), NORMAL_USER.getIdentifier());
74 final Tile tile = new Tile() 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...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
DashboardCategory.java 51 public List<Tile> tiles = new ArrayList<>();
58 public void addTile(Tile tile) {
59 tiles.add(tile);
62 public void addTile(int n, Tile tile) {
63 tiles.add(n, tile);
66 public void removeTile(Tile tile) {
67 tiles.remove(tile);
113 Tile tile = tiles.get(n); local
126 Tile tile = Tile.CREATOR.createFromParcel(in); local
    [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...]
  /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/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/
QSTileHost.java 27 import android.service.quicksettings.Tile;
54 /** Platform implementation of the quick settings tile host **/
94 mTiles.values().forEach(tile -> tile.destroy());
181 mTiles.entrySet().stream().filter(tile -> !tileSpecs.contains(tile.getKey())).forEach(
182 tile -> {
183 if (DEBUG) Log.d(TAG, "Destroying tile: " + tile.getKey());
184 tile.getValue().destroy()
188 QSTile tile = mTiles.get(tileSpec); local
    [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...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/suggestions/
SuggestionsChecksTest.java 36 import com.android.settingslib.drawer.Tile;
81 Tile tile = createFingerprintTile(); local
82 assertThat(mSuggestionsChecks.isSuggestionComplete(tile)).isTrue();
89 Tile tile = createFingerprintTile(); local
90 assertThat(mSuggestionsChecks.isSuggestionComplete(tile)).isFalse();
97 Tile tile = createFingerprintTile(); local
98 assertThat(mSuggestionsChecks.isSuggestionComplete(tile)).isTrue()
108 Tile tile = createFingerprintTile(); local
118 Tile tile = new Tile(); local
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
ThreadUtil.java 25 void addTile(int generation, TileList.Tile<T> tile);
39 void recycleTile(TileList.Tile<T> tile);
AsyncListUtil.java 228 public void addTile(int generation, TileList.Tile<T> tile) {
231 log("recycling an older generation tile @%d", tile.mStartPosition);
233 mBackgroundProxy.recycleTile(tile);
236 TileList.Tile<T> duplicate = mTileList.addOrReplace(tile);
238 Log.e(TAG, "duplicate tile @" + duplicate.mStartPosition);
242 log("gen #%d, added tile @%d, total tiles: %d",
243 generation, tile.mStartPosition, mTileList.size())
    [all...]

Completed in 931 milliseconds

1 2 3 4 5 6 7 8 91011>>