Searched defs:draw (Results 76 - 97 of 97) sorted by relevance

1234

/packages/screensavers/Basic/src/com/android/dreams/basic/
H A DColorsGLRenderer.java133 mSquare.draw();
334 private short drawOrder[] = { 0, 1, 2, 0, 2, 3 }; // order to draw vertices (CCW)
373 // initialize byte buffer for the draw list
407 public void draw() { method in class:ColorsGLRenderer.Square
/packages/apps/Browser/src/com/android/browser/
H A DNavTabScroller.java407 public void draw(Canvas canvas) { method in class:NavTabScroller
411 super.draw(canvas);
/packages/apps/Browser/src/com/android/browser/view/
H A DPieMenu.java74 public void draw(Canvas c); method in interface:PieMenu.PieView
306 mBackground.draw(canvas);
309 // draw base menu
323 mPieView.draw(canvas);
342 // draw the item view
346 view.draw(canvas);
/packages/apps/Camera/src/com/android/camera/
H A DCameraScreenNail.java84 CameraScreenNail.super.draw(canvas, x, y, width, height);
254 // started. We do not want to draw black frames.
314 DrawClient draw;
316 draw = mDraw;
318 draw.onDraw(canvas, x, y, width, height);
321 public void setDraw(DrawClient draw) { argument
323 if (draw == null) {
326 mDraw = draw;
333 public void draw(GLCanvas canvas, int x, int y, int width, int height) { method in class:CameraScreenNail
351 // The texture is ready. Fall through to draw darkene
[all...]
H A DPanoramaModule.java881 public void draw(Canvas canvas) { method in class:PanoramaModule.FlipBitmapDrawable
887 super.draw(canvas);
/packages/apps/Camera2/src/com/android/camera/ui/
H A DPreviewOverlay.java209 mZoomProcessor.draw(canvas);
281 * of any change in scale, and draw the zoom UI on screen.
335 public void draw(Canvas canvas) { method in class:PreviewOverlay.ZoomProcessor
H A DModeListView.java1412 public void draw(Canvas canvas) { method in class:ModeListView
1418 super.draw(canvas);
1422 super.draw(canvas);
2098 * Sets the bitmap to be drawn in the background and the drawArea to draw
2102 * @param drawArea area to draw the background image
2124 mCircleDrawable.draw(canvas);
2131 // No need to draw super when mBackgroundOverlay is being drawn, as
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripLayout.java524 public void draw(Canvas canvas) { method in class:FilmstripLayout.FilmstripBackground
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DCountingTimerView.java37 * Class to measure and draw the time in the {@link com.android.deskclock.CircleTimerView}.
95 * Class to measure and draw the digit pairs of hours, minutes, seconds or hundredths. Digits
165 * @param ii what character to start the draw
189 public float draw(Canvas canvas, final String time, float x, float y) { method in class:CountingTimerView.UnsignedTime
204 * {@link UnsignedTime#draw(android.graphics.Canvas, String, float, float)}
207 public float draw(Canvas canvas, final String time, float x, float y) { method in class:CountingTimerView.Hundredths
242 * {@link UnsignedTime#draw(android.graphics.Canvas, String, float, float)}
245 public float draw(Canvas canvas, final String time, float x, float y) { method in class:CountingTimerView.SignedTime
315 * hundredths. If update is true, the view is invalidated so that it will draw again.
632 xTextStart = mBigHours.draw(canva
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DBubbleTextView.java361 public void draw(Canvas canvas) { method in class:BubbleTextView
373 super.draw(canvas);
389 background.draw(canvas);
392 background.draw(canvas);
397 // If text is transparent, don't draw any shadow
400 super.draw(canvas);
406 super.draw(canvas);
412 super.draw(canvas);
H A DPagedView.java1111 // Find out which screens are visible; as an optimization we only call draw on them
1156 public void draw(Canvas canvas) { method in class:PagedView
1157 super.draw(canvas);
1168 if (mEdgeGlowLeft.draw(canvas)) {
1182 if (mEdgeGlowRight.draw(canvas)) {
/packages/apps/Gallery2/src/com/android/photos/views/
H A DGalleryThumbnailView.java563 public void draw(Canvas canvas) { method in class:GalleryThumbnailView
564 super.draw(canvas);
573 if (mLeftEdge.draw(canvas)) {
586 if (mRightEdge.draw(canvas)) {
H A DTiledImageRenderer.java413 public boolean draw(GLCanvas canvas) { method in class:TiledImageRenderer
450 mPreview.draw(canvas, mOffsetX, mOffsetY,
702 // draw beyond the boundaries.
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
H A DTiledImageRenderer.java414 public boolean draw(GLCanvas canvas) { method in class:TiledImageRenderer
451 mPreview.draw(canvas, mOffsetX, mOffsetY,
703 // draw beyond the boundaries.
/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java845 public void draw(Canvas canvas) { method in class:MusicUtils.FastBitmapDrawable
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DMultiShrinkScroller.java825 public void draw(Canvas canvas) { method in class:MultiShrinkScroller
826 super.draw(canvas);
851 if (mEdgeGlowBottom.draw(canvas)) {
867 if (mEdgeGlowTop.draw(canvas)) {
/packages/apps/FMRadio/src/com/android/fmradio/views/
H A DFmScroller.java245 * Runs a piece of code just before the next draw, after layout and measurement
248 * @param drawNextFrame Whether to draw next frame
558 public void draw(Canvas canvas) { method in class:FmScroller
559 super.draw(canvas);
579 if (mEdgeGlowBottom.draw(canvas)) {
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java170 // Handle indices -- draw
480 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
487 draw(GLES20.GL_LINE_LOOP, OFFSET_DRAW_RECT, COUNT_RECT_VERTEX, x, y, width, height, paint);
491 private void draw(int type, int offset, int count, float x, float y, float width, float height, method in class:GLES20Canvas
493 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth());
496 private void draw(int type, int offset, int count, float x, float y, float width, float height, method in class:GLES20Canvas
499 draw(mDrawParameters, type, count, x, y, width, height);
554 private void draw(ShaderParameter[] params, int type, int count, float x, float y, float width, method in class:GLES20Canvas
576 draw(GLES20.GL_TRIANGLE_STRIP, OFFSET_FILL_RECT, COUNT_FILL_VERTEX, x, y, width, height,
678 draw(param
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java168 // Handle indices -- draw
478 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
485 draw(GLES20.GL_LINE_LOOP, OFFSET_DRAW_RECT, COUNT_RECT_VERTEX, x, y, width, height, paint);
489 private void draw(int type, int offset, int count, float x, float y, float width, float height, method in class:GLES20Canvas
491 draw(type, offset, count, x, y, width, height, paint.getColor(), paint.getLineWidth());
494 private void draw(int type, int offset, int count, float x, float y, float width, float height, method in class:GLES20Canvas
497 draw(mDrawParameters, type, count, x, y, width, height);
552 private void draw(ShaderParameter[] params, int type, int count, float x, float y, float width, method in class:GLES20Canvas
574 draw(GLES20.GL_TRIANGLE_STRIP, OFFSET_FILL_RECT, COUNT_FILL_VERTEX, x, y, width, height,
676 draw(param
[all...]
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryHistoryChart.java101 void draw(Canvas canvas, int top, int height) { method in class:BatteryHistoryChart.ChartData
1057 // If we reserved room for the remaining time, create a final path to draw
1282 mPhoneSignalChart.draw(canvas, top, mLineWidth);
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
H A DStaggeredGridView.java637 // drag shadow also fails with a OutofResourceException when trying to draw the drag
653 // and only draw the bitmap in onDrop for animation.
1450 public void draw(Canvas canvas) { method in class:StaggeredGridView
1451 super.draw(canvas);
1458 mTopEdge.draw(canvas);
1467 mBottomEdge.draw(canvas);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java583 void draw(GLCanvas canvas, Rect r); method in interface:PhotoView.Picture
643 public void draw(GLCanvas canvas, Rect r) { method in class:PhotoView.FullPicture
804 public void draw(GLCanvas canvas, Rect r) { method in class:PhotoView.ScreenNailPicture
850 mScreenNail.draw(canvas, -drawW / 2, -drawH / 2, drawW, drawH);
922 mVideoPlayIcon.draw(canvas, -s / 2, -s / 2, s, s);
928 m.draw(canvas, -m.getWidth() / 2, -m.getHeight() / 2);
1441 // Determine how many photos we need to draw in addition to the center
1447 // In page mode, we draw only one previous/next photo. But if we are
1448 // doing capture animation, we want to draw all photos.
1462 mPictures.get(i).draw(canva
[all...]

Completed in 9642 milliseconds

1234