Searched defs:dashArray (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextTest.cpp943 DashArray dashArray; local
944 dashArray.append(1);
945 dashArray.append(0);
946 context.setLineDash(dashArray, 0);
988 DashArray dashArray; local
989 dashArray.append(1);
990 dashArray.append(0);
991 context.setLineDash(dashArray, 0);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderTreeAsText.cpp295 DashArray dashArray; local
299 dashArray.append(it->value(lengthContext));
307 if (!dashArray.isEmpty())
308 writeNameValuePair(ts, "dash array", dashArray);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusPen.h407 Status SetDashPattern(IN const REAL* dashArray, IN INT count) argument
409 return SetStatus(DllExports::GdipSetPenDashArray(nativePen, dashArray,
422 Status GetDashPattern(OUT REAL* dashArray, argument
425 if (dashArray == NULL || count <= 0)
429 dashArray,
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DSVGRenderStyleDefs.h157 RefPtr<SVGLengthList> dashArray; member in class:blink::StyleStrokeData
/external/pdfium/core/src/fxge/apple/
H A Dfx_quartz_device.cpp981 CGFloat* dashArray = new CGFloat[graphState->m_DashCount]; local
982 if (!dashArray) {
986 dashArray[index] = graphState->m_DashArray[index];
989 CGFloat* dashArray = (CGFloat*)graphState->m_DashArray;
991 CGContextSetLineDash(_context, graphState->m_DashPhase, dashArray, graphState->m_DashCount);
993 delete[] dashArray;

Completed in 264 milliseconds