Searched defs:dashCount (Results 1 - 2 of 2) sorted by relevance

/external/pdfium/xfa/src/fxgraphics/src/
H A Dfx_graphics.cpp187 FX_ERR CFX_Graphics::GetDashCount(int32_t& dashCount) { argument
191 dashCount = _info._graphState.m_DashCount;
212 int32_t dashCount) {
213 if (dashCount > 0 && !dashArray) {
216 dashCount = dashCount < 0 ? 0 : dashCount;
225 _info._graphState.SetDashCount(dashCount);
226 for (int32_t i = 0; i < dashCount; i++) {
210 SetLineDash(FX_FLOAT dashPhase, FX_FLOAT* dashArray, int32_t dashCount) argument
/external/skia/src/utils/
H A DSkDashPath.cpp233 SkScalar dashCount = 0; local
262 dashCount += length * (count >> 1) / intervalLength;
263 if (dashCount > kMaxDashCount) {

Completed in 96 milliseconds