/external/webkit/WebCore/rendering/ |
RenderDataGrid.cpp | 137 // Paint our background and border. 143 // Paint our column headers first. 159 // Paint the column header if it intersects the dirty rect.
|
RenderTableRow.cpp | 182 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty) function in class:WebCore::RenderTableRow 189 // Paint the row background behind the cell. 195 child->paint(paintInfo, tx, ty);
|
RenderLayerBacking.cpp | [all...] |
RenderSVGRoot.cpp | 120 void RenderSVGRoot::paint(PaintInfo& paintInfo, int parentX, int parentY) function in class:WebCore::RenderSVGRoot 135 // Don't paint if we don't have kids, except if we have filters we should paint those. 147 // Transform from our paint container's coordinate system to our local coords. 158 RenderBox::paint(childPaintInfo, 0, 0);
|
RenderWidget.cpp | 215 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty) function in class:WebCore::RenderWidget 255 // Tell the widget to paint now. This is the only time the widget is allowed 256 // to paint itself. That way it will composite properly with z-indexed layers. 271 m_widget->paint(paintInfo.context, paintRect); 285 // Paint a partially transparent wash over selected widgets.
|
InlineFlowBox.cpp | 586 // Only include overflow from replaced inlines if they do not paint themselves. 626 void InlineFlowBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) function in class:WebCore::InlineFlowBox 637 // Add ourselves to the paint info struct's list of inlines that need to paint their 643 // paint us atomically. 653 // 1. Paint our background, border and box-shadow. 656 // 2. Paint our underline and overline. 669 // 3. Paint our children. 673 curr->paint(childInfo, tx, ty); 677 // 4. Paint our strike-throug [all...] |
/external/webkit/WebKit/android/jni/ |
PictureSet.cpp | 285 SkPaint paint; local 287 paint.setColor(color); 294 canvas->drawText(location, len, x, y, paint); 373 virtual void drawPaint(const SkPaint& paint) { 376 virtual void drawPath(const SkPath& , const SkPaint& paint) { 382 const SkPaint& paint) { 385 virtual void drawRect(const SkRect& , const SkPaint& paint) { 390 const SkPaint* paint = NULL) { 396 SkScalar , const SkPaint& paint) { 402 const SkPoint [], const SkPaint& paint) { [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/ |
LabelView.java | 21 import android.graphics.Paint; 75 mTextPaint = new Paint(); 188 private Paint mTextPaint;
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.graphics.Canvas.html | 86 <A NAME="android.graphics.Canvas.drawBitmap_added(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/graphics/Canvas.html#drawBitmap(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" target="_top"><code>drawBitmap</code></A>(<code>int[],</nobr> int<nobr>,</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> boolean<nobr>,</nobr> Paint<nobr><nobr></code>)</nobr>
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
GradientShader.java | 25 * implementations of {@link java.awt.Paint}. 71 protected abstract static class GradientPaint implements java.awt.Paint { 86 return java.awt.Paint.TRANSLUCENT;
|
LinearGradient.java | 21 private java.awt.Paint mJavaPaint; 61 java.awt.Paint getJavaPaint() { 66 * Linear Gradient (Java) Paint able to handle more than 2 points, as
|
/external/skia/src/core/ |
SkBitmapSampler.cpp | 48 void SkBitmapSampler::setPaint(const SkPaint& paint) 249 virtual void setPaint(const SkPaint& paint) 251 fColor = SkPreMultiplyColor(paint.getColor()); 303 virtual void setPaint(const SkPaint& paint) 305 fColor = SkPreMultiplyColor(paint.getColor());
|
SkBlitter_A8.cpp | 23 SkA8_Blitter::SkA8_Blitter(const SkBitmap& device, const SkPaint& paint) 26 fSrcA = SkColorGetA(paint.getColor()); 258 SkA8_Shader_Blitter::SkA8_Shader_Blitter(const SkBitmap& device, const SkPaint& paint) 259 : INHERITED(device, paint) 261 if ((fXfermode = paint.getXfermode()) != NULL)
|
/frameworks/base/graphics/java/android/graphics/ |
Bitmap.java | 417 Paint paint; local 425 paint = null; // not needed 441 paint = new Paint(); 442 paint.setFilterBitmap(filter); 444 paint.setAntiAlias(true); 453 canvas.drawBitmap(source, srcR, dstR, paint); [all...] |
/external/skia/src/views/ |
SkListView.cpp | 329 SkPaint& SkListView::paint(Attr attr) function in class:SkListView 477 if ((child = dom.getFirstChild(node, "hilite-paint")) != NULL) 478 SkPaint_Inflate(&this->paint(kHiliteCell_Attr), dom, child); 531 SkPaint paint; 534 paint.setShader(shader)->unref(); 536 canvas->drawPaint(paint); 691 SkPaint& SkGridView::paint(Attr attr) 711 static void copybits(SkCanvas* canvas, const SkBitmap& bm, const SkRect& dst, const SkPaint& paint) 719 SkPaint p(paint); 866 if ((child = dom.getFirstChild(node, "hilite-paint")) != NULL [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Kube.java | 88 // paint the sides 99 // paint top 102 // paint bottom 105 // paint left 108 // paint right 111 // paint back 115 // paint front
|
/development/samples/BrowserPlugin/jni/paint/ |
PaintPlugin.cpp | 64 // initialize the paint colors 415 //TODO do not paint outside the drawing surface 417 //create the paint color 423 // handle the simple "mouse" paint (draw a point) 440 //TODO do not paint outside the drawing surface 442 //create the paint color 451 // handle the complex "touch" paint (draw a line)
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
GradientDrawable.java | 25 import android.graphics.Paint; 113 private final Paint mFillPaint = new Paint(Paint.ANTI_ALIAS_FLAG); 115 private Paint mStrokePaint; // optional, set by the caller 123 private Paint mLayerPaint; // internal, used if we use saveLayer() 202 mStrokePaint = new Paint(Paint.ANTI_ALIAS_FLAG); 203 mStrokePaint.setStyle(Paint.Style.STROKE); 273 allows us to apply paint effects like alpha and colorfilter t [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarView.java | 32 import android.graphics.Paint; 38 import android.graphics.Paint.Style; 177 private Paint mPaint = new Paint(); 178 private Paint mPaintBorder = new Paint(); 179 private Paint mEventTextPaint = new Paint(); 180 private Paint mSelectionPaint = new Paint(); [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPicker.java | 37 import android.graphics.Paint; 620 private static void placeImage(Bitmap image, Canvas c, Paint paint, 630 c.drawBitmap(image, xPos, yPos, paint); 652 final Paint p = new Paint(); 670 Paint pdpaint = new Paint(); 673 pdpaint.setStyle(Paint.Style.FILL); 712 tempCanvas.drawBitmap(temp, new Matrix(), new Paint()); [all...] |
/external/webkit/WebKit/android/nav/ |
CachedRoot.cpp | 229 virtual void drawPaint(const SkPaint& paint) { 231 SkCanvas::drawPaint(paint); 235 const SkPaint& paint) { 237 SkCanvas::drawPoints(mode, count, pts, paint); 240 virtual void drawRect(const SkRect& rect, const SkPaint& paint) { 242 SkCanvas::drawRect(rect, paint); 245 virtual void drawPath(const SkPath& path, const SkPaint& paint) { 247 SkCanvas::drawPath(path, paint); 251 const SkMatrix& matrix, const SkPaint& paint) { 254 SkCanvas::commonDrawBitmap(bitmap, matrix, paint); [all...] |
/external/webkit/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 342 SkPaint paint; local 343 context->setupStrokePaint(&paint); 345 paint.getFillPath(*path, &fillPath); 387 SkPaint paint; 388 scratch->platformContext()->setupPaintForStroking(&paint, 0, 0); 390 paint.getFillPath(*platformPath(), &strokePath);
|
/external/webkit/WebCore/platform/graphics/skia/ |
PlatformContextSkia.h | 97 // Sets up the common flags on a paint for antialiasing, effects, etc. 103 // Sets up the paint for the current fill style. 106 // Sets up the paint for stroking. Returns an int representing the width of
|
/external/webkit/WebKit/chromium/src/ |
WebMediaPlayerClientImpl.cpp | 327 void WebMediaPlayerClientImpl::paint(GraphicsContext* context, const IntRect& rect) function in class:WebKit::WebMediaPlayerClientImpl 334 m_webMediaPlayer->paint(context->platformContext()->canvas(), rect); 336 m_webMediaPlayer->paint(context->platformContext(), rect);
|
/frameworks/base/awt/java/awt/ |
GradientPaint.java | 50 public class GradientPaint implements Paint { 176 * the ColorModel of the Paint data. 188 * @see java.awt.Paint#createContext(java.awt.image.ColorModel,
|