Searched defs:lineWidth (Results 1 - 15 of 15) 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/Source/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp316 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
322 m_data->setStrokeThickness(lineWidth);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.h183 GLfloat lineWidth; member in struct:gl::State
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp97 c->setStrokeThickness(m_canvasContext->lineWidth());
124 setLineWidth(lineWidth());
392 float CanvasRenderingContext2D::lineWidth() const function in class:WebCore::CanvasRenderingContext2D
1026 void CanvasRenderingContext2D::strokeRect(float x, float y, float width, float height, float lineWidth) argument
1031 if (!(lineWidth >= 0))
1043 boundingRect.inflate(lineWidth / 2);
1045 c->strokeRect(rect, lineWidth);
H A DWebGLRenderingContext.cpp2717 void WebGLRenderingContext::lineWidth(GC3Dfloat width) function in class:WebCore::__anon11825::WebGLRenderingContext
2721 m_context->lineWidth(width);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsContextAndroid.cpp1046 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
1054 paint.setStrokeWidth(SkFloatToScalar(lineWidth));
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp613 float lineWidth = strokeThickness(); local
614 float doubleLineWidth = lineWidth * 2;
620 CGContextSetLineWidth(layerContext, lineWidth);
625 float translationX = lineWidth - rect.x();
626 float translationY = lineWidth - rect.y();
635 float destinationX = roundf(rect.x() - lineWidth);
636 float destinationY = roundf(rect.y() - lineWidth);
997 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
1006 const float doubleLineWidth = lineWidth * 2;
1012 m_state.strokeThickness = lineWidth;
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp1018 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
1028 if (lineWidth != previousStrokeThickness)
1029 setStrokeThickness(lineWidth);
1033 if (lineWidth != previousStrokeThickness)
H A DGraphicsContext3DQt.cpp1114 void GraphicsContext3D::lineWidth(GC3Dfloat width) function in class:WebCore::GraphicsContext3D
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp1213 void GraphicsContext::strokeRect(const FloatRect& rect, float lineWidth) argument
1225 paint.setStrokeWidth(WebCoreFloatToSkScalar(lineWidth));
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp826 void GraphicsContext3D::lineWidth(GC3Dfloat width) function in class:WebCore::GraphicsContext3D

Completed in 289 milliseconds