/cts/tests/tests/text/src/android/text/style/cts/ |
LeadingMarginSpan_StandardTest.java | 90 notes = "Test drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top," + 94 args = {android.graphics.Canvas.class, android.graphics.Paint.class, int.class,
|
/external/webkit/WebCore/editing/ |
FormatBlockCommand.cpp | 81 // When a selection ends at the start of a paragraph, we rarely paint 86 // FIXME: We paint the gap before some paragraphs that are indented with left
|
/external/webkit/WebCore/html/ |
HTMLVideoElement.cpp | 199 void HTMLVideoElement::paint(GraphicsContext* context, const IntRect& destRect) function in class:WebCore::HTMLVideoElement 206 player->paint(context, destRect);
|
/external/webkit/WebCore/platform/ |
ScrollView.cpp | 532 hostWindow()->paint(); 592 // we need to invalidate the windowResizerRect(), since it will now need to paint 761 m_horizontalScrollbar->paint(context, rect); 763 m_verticalScrollbar->paint(context, rect); 774 void ScrollView::paint(GraphicsContext* context, const IntRect& rect) function in class:WebCore::ScrollView 777 Widget::paint(context, rect); 801 // Now paint the scrollbars. 814 // Paint the panScroll Icon [all...] |
/external/webkit/WebCore/platform/chromium/ |
ScrollbarThemeChromium.cpp | 45 // This method is just called as a paint-time optimization to see if 80 // Just assume a forward track part. We only paint the track as a single piece when there is no thumb.
|
PopupMenuChromium.cpp | 86 // This class uses WebCore code to paint and handle events for a drop-down list 96 virtual void paint(GraphicsContext*, const IntRect&); 201 // Paint an individual row 434 void PopupContainer::paint(GraphicsContext* gc, const IntRect& rect) function in class:WebCore::PopupContainer 444 m_listBox->paint(gc, r); 759 void PopupListBox::paint(GraphicsContext* gc, const IntRect& rect) function in class:WebCore::PopupListBox 784 ScrollView::paint(gc, rect); 792 // This code is based largely on RenderListBox::paint* methods. 800 // Paint background [all...] |
/external/webkit/WebCore/platform/wx/ |
ScrollbarThemeWx.cpp | 69 // This method is just called as a paint-time optimization to see if 184 bool ScrollbarThemeWx::paint(Scrollbar* scrollbar, GraphicsContext* context, const IntRect& rect) function in class:WebCore::ScrollbarThemeWx
|
/external/webkit/WebCore/rendering/ |
RenderSVGContainer.cpp | 80 void RenderSVGContainer::paint(PaintInfo& paintInfo, int, int) function in class:WebCore::RenderSVGContainer 108 child->paint(childPaintInfo, 0, 0);
|
RenderSVGImage.cpp | 74 void RenderSVGImage::paint(PaintInfo& paintInfo, int, int) function in class:WebCore::RenderSVGImage 190 // this is called from paint() after the localTransform has already been applied
|
RenderLayer.cpp | 806 // paintDirtyRect, and that should cut down on the amount we have to paint. Still it 2139 void RenderLayer::paint(GraphicsContext* p, const IntRect& damageRect, PaintBehavior paintBehavior, RenderObject *paintingRoot) function in class:WebCore::RenderLayer [all...] |
RenderBoxModelObject.cpp | 119 // If the image is not a bitmap image, then none of this is relevant and we just paint at high 151 // If there is no data yet, we will paint the first scale at high quality and record the paint time in case a second scale happens 166 // timer to paint in high quality mode. Otherwise it is ok to just paint in high quality mode. 511 // Now add the text to the clip. We do this by painting using a special paint phase that signals to 515 box->paint(info, tx - box->x(), ty - box->y()); 519 paint(info, tx - x, ty - y); 573 // Paint the color first underneath all images. [all...] |
RenderImage.cpp | 125 // If the image is not a bitmap image, then none of this is relevant and we just paint at high 155 // If there is no data yet, we will paint the first scale at high quality and record the paint time in case a second scale happens 170 // timer to paint in high quality mode. Otherwise it is ok to just paint in high quality mode. 443 void RenderImage::paint(PaintInfo& paintInfo, int tx, int ty) function in class:WebCore::RenderImage 445 RenderReplaced::paint(paintInfo, tx, ty);
|
/external/webkit/WebCore/rendering/style/ |
SVGRenderStyle.h | 79 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(SVGPaint, fill, paint, FillPaint, fillPaint, SVGPaint::defaultFill()) 82 SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(SVGPaint, stroke, paint, StrokePaint, strokePaint, SVGPaint::defaultStroke())
|
/frameworks/base/docs/html/resources/articles/ |
track-mem.jd | 58 <code>Paint</code> object on every draw. Moving the paint into an instance field
|
/frameworks/base/graphics/java/android/graphics/ |
Typeface.java | 25 * This is used in the paint, along with optionally Paint settings like
|
/frameworks/policies/base/phone/com/android/internal/policy/impl/ |
RecentApplicationsBackground.java | 116 android.graphics.Paint p = new android.graphics.Paint();
|
/packages/apps/Calendar/src/com/android/calendar/ |
MonthView.java | 30 import android.graphics.Paint; 34 import android.graphics.Paint.Style; 559 Paint p = new Paint(); 661 * @param p The paint used for drawing. 663 private void drawGrid(Canvas canvas, Paint p) { 687 * @param p The paint used for drawing. 691 private void drawBox(int day, int weekNum, int row, int column, Canvas canvas, Paint p, 777 p.setStyle(Paint.Style.FILL); 800 p.setTextAlign(Paint.Align.LEFT) [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
BitmapDrawableTest.java | 35 import android.graphics.Paint; 95 // TODO: should default paint flags be left as an untested implementation detail? 96 final int defaultPaintFlags = Paint.FILTER_BITMAP_FLAG | Paint.DITHER_FLAG | 97 Paint.DEV_KERN_TEXT_FLAG;
|
NinePatchDrawableTest.java | 38 import android.graphics.Paint; 288 Paint paint = mNinePatchDrawable.getPaint(); local 289 assertNotNull(paint); 291 assertSame(paint, mNinePatchDrawable.getPaint());
|
/external/skia/src/core/ |
SkBitmapProcState.cpp | 344 bool SkBitmapProcState::chooseProcs(const SkMatrix& inv, const SkPaint& paint) { 388 fAlphaScale = SkAlpha255To256(paint.getAlpha()); 390 // pick-up filtering from the paint, but only if the matrix is 395 fDoFilter = paint.isFilterBitmap() && 437 fPaintPMColor = SkPreMultiplyColor(paint.getColor());
|
SkBlitter_ARGB32.cpp | 43 SkARGB32_Blitter::SkARGB32_Blitter(const SkBitmap& device, const SkPaint& paint) 45 uint32_t color = paint.getColor(); 398 const SkPaint& paint) : INHERITED(device, paint) { 401 fXfermode = paint.getXfermode();
|
/external/webkit/WebCore/platform/graphics/ |
GraphicsContext.h | 201 // initialize a paint for bitmaps 203 // initialize a paint for filling 205 // initialize a paint for stroking 207 // initialize a paint for a shadow, or if false is returned, the 209 bool setupShadowPaint(SkPaint* paint, SkPoint* offset);
|
/frameworks/base/core/jni/android/graphics/ |
Graphics.cpp | 326 SkPaint* GraphicsJNI::getNativePaint(JNIEnv* env, jobject paint) { 328 SkASSERT(paint); 329 SkASSERT(env->IsInstanceOf(paint, gPaint_class)); 330 SkPaint* p = (SkPaint*)env->GetIntField(paint, gPaint_nativeInstanceID); 557 gPaint_class = make_globalref(env, "android/graphics/Paint");
|
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 26 import android.graphics.Paint; 726 Paint paint = new Paint(); local 727 paint.setFilterBitmap(true); 728 paint.setDither(true); 729 c.drawBitmap(bm, null, targetRect, paint);
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidateView.java | 27 import android.graphics.Paint; 29 import android.graphics.Paint.FontMetricsInt; 171 * Paint used to draw candidates. 173 private Paint mCandidatesPaint; 178 private Paint mFootnotePaint; 247 mCandidatesPaint = new Paint(); 250 mFootnotePaint = new Paint();
|