Searched defs:lineWidth (Results 1 - 13 of 13) sorted by relevance

/external/icu4c/samples/layout/
H A Dparagraph.cpp192 float lineWidth = (float) (width - 2 * MARGIN); local
207 while ((line = paragraphLayout->nextLine(lineWidth)) != NULL) {
H A Dpflow.c280 float lineWidth; local
292 lineWidth = (float) (width - 2 * MARGIN);
306 while ((line = pl_nextLine(paragraphLayout, lineWidth)) != NULL) {
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp225 int lineWidth = lineBitWidth/bitCount; local
229 int andOffset = xorOffset + ((lineWidth*h*bitCount) >> 3);
270 int pixelNo = lineWidth*(h-y-1)+x;
/external/icu4c/test/letest/
H A Dcletest.c638 const float lineWidth = 600; local
660 while ((line = pl_nextLine(paragraph, lineWidth)) != NULL) {
H A Dletest.cpp873 const float lineWidth = 600; local
890 while ((line = paragraphLayout->nextLine(lineWidth)) != NULL) {
/external/webkit/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp343 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
349 m_data->setStrokeThickness(lineWidth);
/external/webkit/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp83 c->setStrokeThickness(m_canvasContext->lineWidth());
101 setLineWidth(lineWidth());
205 float CanvasRenderingContext2D::lineWidth() const function in class:WebCore::CanvasRenderingContext2D
756 void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height, float lineWidth) argument
761 if (!(lineWidth >= 0))
773 boundingRect.inflate(lineWidth / 2);
776 c->strokeRect(rect, lineWidth);
H A DWebGLRenderingContext.cpp1513 void WebGLRenderingContext::lineWidth(double width) function in class:WebCore::WebGLRenderingContext
1515 m_context->lineWidth((float) width);
/external/webkit/WebCore/platform/graphics/android/
H A DGraphicsContextAndroid.cpp943 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
951 paint.setStrokeWidth(SkFloatToScalar(lineWidth));
/external/webkit/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp849 void GraphicsContext::strokeRect(const FloatRect& r, float lineWidth) argument
861 setStrokeThickness(lineWidth);
872 CGContextStrokeRectWithWidth(context, r, lineWidth);
/external/webkit/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.cpp643 void GraphicsContext3D::lineWidth(double width) function in class:WebCore::GraphicsContext3D
/external/webkit/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp1133 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
1145 paint.setStrokeWidth(WebCoreFloatToSkScalar(lineWidth));
/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp1190 child->calcHorizontalMargins(child->style()->marginLeft(), child->style()->marginRight(), lineWidth(child->y(), false));
1211 child->calcHorizontalMargins(child->style()->marginLeft(), child->style()->marginRight(), lineWidth(child->y(), false));
2617 RenderBlock::lineWidth(int y, bool firstLine) const function in class:WebCore::RenderBlock
3252 int widthAtY = lineWidth(y, false);

Completed in 126 milliseconds