Searched defs:tile (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DUsageTracker.java38 public UsageTracker(Context context, Class<?> tile) { argument
40 mPrefKey = tile.getSimpleName() + "LastUsed";
43 mResetAction = "com.android.systemui.qs." + tile.getSimpleName() + ".usage_reset";
H A DQSPanel.java48 /** View that represents the quick settings tile panel. **/
193 r.tile.setListening(mListening);
208 r.tile.refreshState();
237 for (QSTile<?> tile : tiles) {
238 addTile(tile);
245 private void addTile(final QSTile<?> tile) { argument
247 r.tile = tile;
248 r.tileView = tile.createTileView(mContext);
286 r.tile
522 QSTile<?> tile; field in class:QSPanel.TileRecord
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DLinearGradient.java50 @param tile The Shader tiling mode
53 TileMode tile) {
67 mTileMode = tile;
68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
78 @param tile The Shader tiling mode
81 TileMode tile) {
89 mTileMode = tile;
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
52 LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[], TileMode tile) argument
80 LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1, TileMode tile) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRadialGradient_Delegate.java85 * @param tile The Shader tiling mode
88 TileMode tile) {
90 mJavaPaint = new RadialGradientPaint(x, y, radius, mColors, mPositions, tile);
87 RadialGradient_Delegate(float x, float y, float radius, int colors[], float positions[], TileMode tile) argument
H A DLinearGradient_Delegate.java87 * @param tile The Shader tiling mode
90 int colors[], float positions[], TileMode tile) {
92 mJavaPaint = new LinearGradientPaint(x0, y0, x1, y1, mColors, mPositions, tile);
98 * {@link java.awt.GradientPaint} only supports 2 points and does not support Android's tile
110 float positions[], TileMode tile) {
111 super(colors, positions, tile);
89 LinearGradient_Delegate(float x0, float y0, float x1, float y1, int colors[], float positions[], TileMode tile) argument
109 LinearGradientPaint(float x0, float y0, float x1, float y1, int colors[], float positions[], TileMode tile) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java46 * This is the tile state in the CPU side.
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 what
296 // If rotation is transient, don't update the tile.
306 // Recycle unused tiles: if the level of the active tile is outside the
310 Tile tile
481 queueForDecode(Tile tile) argument
492 decodeTile(Tile tile) argument
531 recycleTile(Tile tile) argument
632 drawTile( Tile tile, GLCanvas canvas, RectF source, RectF target) argument
762 push(Tile tile) argument
773 contains(Tile tile) argument
[all...]

Completed in 103 milliseconds