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

1 2

  /external/chromium/chrome/browser/chromeos/views/
copy_background.cc 20 void CopyBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
28 // Move the origin and paint as if it's paint onto the owner.
30 background->Paint(canvas, background_owner_);
  /external/chromium/chrome/browser/ui/views/
theme_background.cc 22 void ThemeBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
wrench_menu.cc 87 virtual void Paint(const View& view, gfx::Canvas* canvas) const {
104 // paint the border.
131 virtual void Paint(gfx::Canvas* canvas, View* view) const {
225 // A View subclass that forces SchedulePaint to paint all. Normally when the
229 // forces a paint all.
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_FontMetricsIntTest.java 20 import android.graphics.Paint;
21 import android.graphics.Paint.FontMetricsInt;
27 new Paint.FontMetricsInt();
PaintTest.java 22 import android.graphics.Paint;
23 import android.graphics.Paint.Align;
24 import android.graphics.Paint.Cap;
25 import android.graphics.Paint.Join;
26 import android.graphics.Paint.Style;
50 new Paint();
52 new Paint(1);
54 Paint p = new Paint();
55 new Paint(p)
    [all...]
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_background.cc 42 void InfoBarBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
53 SkPaint paint; local
54 paint.setStrokeWidth(SkIntToScalar(InfoBar::kSeparatorLineHeight));
55 paint.setStyle(SkPaint::kFill_Style);
56 paint.setStrokeCap(SkPaint::kRound_Cap);
57 paint.setShader(gradient_shader);
62 canvas_skia->drawPath(*infobar->fill_path(), paint);
64 paint.setShader(NULL);
65 paint.setColor(SkColorSetA(separator_color_,
67 paint.setStyle(SkPaint::kStroke_Style)
    [all...]
infobar_button_border.cc 58 void InfoBarButtonBorder::Paint(const views::View& view,
  /external/chromium/chrome/browser/chromeos/login/
rounded_view.h 45 virtual void Paint(gfx::Canvas* canvas);
61 void RoundedView<C>::Paint(gfx::Canvas* canvas) {
66 C::Paint(canvas);
100 SkPaint paint; local
101 paint.setStyle(SkPaint::kStroke_Style);
102 paint.setStrokeWidth(rounded_view::kStrokeWidth);
103 paint.setAntiAlias(true);
114 paint.setColor(rounded_view::kInnerFrameColor);
119 paint);
126 paint.setColor(rounded_view::kOuterFrameColor)
    [all...]
shutdown_button.cc 46 virtual void Paint(gfx::Canvas* canvas, views::View* view) const {
49 hover_->Paint(canvas, view);
51 normal_->Paint(canvas, view);
helper.cc 48 virtual void Paint(int w, int h, gfx::Canvas* canvas) {
54 SkPaint paint; local
55 paint.setStyle(SkPaint::kFill_Style);
56 paint.setFlags(SkPaint::kAntiAlias_Flag);
66 paint.setShader(s);
68 canvas->AsCanvasSkia()->drawRect(rect, paint);
rounded_rect_painter.cc 39 SkPaint paint; local
40 paint.setStyle(SkPaint::kFill_Style);
41 paint.setFlags(SkPaint::kAntiAlias_Flag);
50 paint.setShader(s);
54 paint.setColor(top_color);
56 canvas->AsCanvasSkia()->drawPath(path, paint);
65 paint.setShader(NULL);
66 paint.setStyle(SkPaint::kStroke_Style);
67 paint.setStrokeWidth(SkIntToScalar(SK_Scalar1));
68 paint.setColor(stroke_color)
83 SkPaint paint; local
113 SkPaint paint; local
117 paint); local
206 SkPaint paint; local
    [all...]
user_view.cc 45 virtual void Paint(int w, int h, gfx::Canvas* canvas) {
50 SkPaint paint; local
51 paint.setStyle(SkPaint::kFill_Style);
52 paint.setFlags(SkPaint::kAntiAlias_Flag);
53 paint.setColor(kSignoutBackgroundColor);
54 canvas->AsCanvasSkia()->drawPath(path, paint);
197 // Update button position and schedule paint event for the view and parent.
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_arrow_model.cc 71 void InfoBarArrowModel::Paint(GtkWidget* widget,
84 SkPaint paint; local
85 paint.setStrokeWidth(1);
86 paint.setStyle(SkPaint::kFill_Style);
87 paint.setAntiAlias(true);
101 paint.setShader(gradient_shader);
105 canvas.drawPath(path, paint);
107 paint.setShader(NULL);
108 paint.setColor(SkColorSetA(gfx::GdkColorToSkColor(border_color),
110 paint.setStyle(SkPaint::kStroke_Style)
    [all...]
  /external/chromium/chrome/browser/ui/views/bubble/
bubble_border.cc 198 void BubbleBorder::Paint(const views::View& view, gfx::Canvas* canvas) const {
408 SkPaint paint; local
409 paint.setStyle(SkPaint::kFill_Style);
410 paint.setColor(background_color_);
421 canvas->AsCanvasSkia()->drawPath(path, paint);
426 void BubbleBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
431 SkPaint paint; local
432 paint.setAntiAlias(true);
433 paint.setStyle(SkPaint::kFill_Style);
434 paint.setColor(border_->background_color())
    [all...]
  /external/chromium/webkit/glue/media/
video_renderer_impl.cc 52 void VideoRendererImpl::Paint(SkCanvas* canvas,
57 SkPaint paint; local
58 paint.setColor(SK_ColorBLACK);
64 paint); local
99 // TODO(hclam): The fast paint method should support flipping and mirroring.
103 // Fast paint does not handle opacity value other than 1.0. Hence use slow
104 // paint if opacity is not 1.0. Since alpha = opacity * 0xFF, we check that
110 // the video. If we use Fast paint, the video shows up with opacity = 1.0.
111 // Hence we use slow paint also in the case where alpha = 0. It would be ideal
115 SkColor sk_color = layer_iter.paint().getColor()
196 SkPaint paint; local
    [all...]
  /external/chromium/chrome/browser/chromeos/frame/
panel_controller.cc 70 virtual void Paint(int w, int h, gfx::Canvas* canvas) {
80 SkPaint paint; local
81 paint.setStyle(SkPaint::kFill_Style);
82 paint.setFlags(SkPaint::kAntiAlias_Flag);
91 paint.setShader(s);
94 canvas->AsCanvasSkia()->drawPath(path, paint);
  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp 57 static const char Paint[] = "Paint";
201 pushCurrentRecord(TimelineRecordFactory::createPaintData(rect), TimelineRecordType::Paint);
206 didCompleteCurrentRecord(TimelineRecordType::Paint);
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 84 virtual void Paint(const views::View& view, gfx::Canvas* canvas) const {
92 painter->Paint(view.width(), view.height(), canvas);
169 bg_painter_->Paint(width() - kOptInBackgroundHInset * 2,
404 // We need to manually schedule a paint here since we are a layered window and
509 // We paint our children in an unconventional way.
516 // Instead, we paint all our children into a second canvas and use that as a
523 // the blurry glass effect on DWM systems behind. We do this _after_ we paint
524 // the children since they paint text, and GDI will reset this alpha data if
525 // we paint text after this call.
528 // Now paint the contents of the contents canvas into the actual canvas
529 SkPaint paint; local
    [all...]
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 126 void WebMediaPlayerImpl::Proxy::Paint(SkCanvas* canvas,
130 video_renderer_->Paint(canvas, dest_rect);
637 void WebMediaPlayerImpl::paint(WebCanvas* canvas, function in class:webkit_glue::WebMediaPlayerImpl
643 proxy_->Paint(canvas, rect);
673 proxy_->Paint(skia_canvas_.get(), normalized_rect);
  /external/webkit/Source/WebCore/inspector/front-end/
TimelineAgent.js 40 Paint: "Paint",
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.cc 101 // We manually double-buffer in Paint() because Paint() may or may not be
168 host_view->Paint(damage_rect);
620 // If we receive any more paint messages while we are hidden, we want to
621 // ignore them so we don't re-allocate the backing store. We will paint
750 Paint(scroll_rect);
754 // Paint(scroll_rect) above.
762 Paint(rect);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.cc 373 // The paint area is the favicon bounds, but we're painting into the gdk
382 // The actual paint methods expect 0, 0 to be the tab top left (see
386 // Paint the background behind the favicon.
424 // Now paint the icon.
623 void TabRendererGtk::Paint(gfx::Canvas* canvas) {
624 // Don't paint if we're narrower than we can render correctly. (This should
647 Paint(&canvas);
653 Paint(&canvas);
806 Paint(&canvas);
810 // Paint the Title
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 27 * The Paint class holds the style and color information about how to draw
30 public class Paint {
109 // we use this when we first create a paint
237 * stroke-related settings in the paint.
242 * the stroke-related fields on the paint.
248 * the paint. This mode can give unexpected results if the geometry
335 * Create a new paint with default settings.
337 public Paint() {
342 * Create a new paint with the specified flags. Use setFlags() to change
343 * these after the paint is created
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
browser_view.cc 157 // and paint the bookmark bar.
165 virtual void Paint(gfx::Canvas* canvas, views::View* view) const;
187 void BookmarkExtensionBackground::Paint(gfx::Canvas* canvas,
    [all...]
  /prebuilts/sdk/10/
android.jar 

Completed in 441 milliseconds

1 2