Searched defs:dashes (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DSVGCSSComputedStyleDeclaration.cpp49 static PassRefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLength>& dashes) argument
51 if (dashes.isEmpty())
55 const Vector<SVGLength>::const_iterator end = dashes.end();
56 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
H A DSVGCSSStyleSelector.cpp260 CSSValueList* dashes = static_cast<CSSValueList*>(value); local
263 size_t length = dashes->length();
265 CSSValue* currValue = dashes->itemWithoutBoundsCheck(i);
269 CSSPrimitiveValue* dash = static_cast<CSSPrimitiveValue*>(dashes->itemWithoutBoundsCheck(i));
/external/bluetooth/glib/gio/
H A Dgthemedicon.c155 int i = 0, dashes = 0; local
164 dashes++;
172 themed->names = g_new (char *, dashes + 1 + 1);
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRenderSupport.cpp336 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); local
337 if (dashes.isEmpty())
341 const Vector<SVGLength>::const_iterator end = dashes.end();
342 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
H A DSVGRenderTreeAsText.cpp340 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray(); local
343 const Vector<SVGLength>::const_iterator end = dashes.end();
344 for (Vector<SVGLength>::const_iterator it = dashes.begin(); it != end; ++it)
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp335 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
340 m_data->setLineDash(dashes, dashOffset);
/external/strace/
H A Dsyscall.c2686 char *dashes = "-------------------------"; local
2712 dashes, dashes, dashes, dashes, dashes, dashes);
2736 dashes, dashes, dashes, dashe
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsContextAndroid.cpp1077 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
1082 size_t dashLength = dashes.size();
1090 intervals[i] = SkFloatToScalar(dashes[i % dashLength]);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp995 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
997 cairo_set_dash(platformContext()->cr(), dashes.data(), dashes.size(), dashOffset);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp1067 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
1069 CGContextSetLineDash(platformContext(), dashOffset, dashes.data(), dashes.size());
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp413 QVector<qreal> dashes; local
414 dashes << qreal(patWidth) / width << qreal(patWidth) / width;
419 pen.setDashPattern(dashes);
1048 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
1052 unsigned dashLength = dashes.size();
1061 pattern.append(dashes[i % dashLength] / penWidth);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp942 void GraphicsContext::setLineDash(const DashArray& dashes, float dashOffset) argument
949 size_t dashLength = dashes.size();
962 intervals[i] = dashes[i % dashLength];

Completed in 267 milliseconds