Home
last modified time | relevance | path

Searched refs:m_DashCount (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/core/fxge/
Dcfx_graphstatedata.cpp14 m_DashCount(0), in CFX_GraphStateData()
28 m_DashCount = src.m_DashCount; in Copy()
35 if (m_DashCount) { in Copy()
36 m_DashArray = FX_Alloc(float, m_DashCount); in Copy()
37 memcpy(m_DashArray, src.m_DashArray, m_DashCount * sizeof(float)); in Copy()
48 m_DashCount = count; in SetDashCount()
Dcfx_graphstatedata.h25 int m_DashCount; variable
/external/pdfium/core/fxge/win32/
Dcfx_psrenderer.cpp317 m_CurGraphState.m_DashCount != pGraphState->m_DashCount || in SetGraphState()
319 sizeof(float) * m_CurGraphState.m_DashCount)) { in SetGraphState()
321 for (int i = 0; i < pGraphState->m_DashCount; ++i) in SetGraphState()
Dfx_win32_device.cpp111 if (pGraphState->m_DashCount) { in CreatePen()
146 if (pGraphState->m_DashCount) { in CreatePen()
147 dashes.resize(pGraphState->m_DashCount); in CreatePen()
148 for (int i = 0; i < pGraphState->m_DashCount; i++) { in CreatePen()
156 pGraphState->m_DashCount, in CreatePen()
1006 (pGraphState && pGraphState->m_DashCount))) { in DrawPath()
1035 pGraphState->m_DashCount) { in DrawPath()
Dfx_win32_gdipext.cpp1066 if (pGraphState->m_DashCount) { in _GdipCreatePen()
1068 float, pGraphState->m_DashCount + pGraphState->m_DashCount % 2); in _GdipCreatePen()
1071 for (int i = 0; i < pGraphState->m_DashCount; i += 2) { in _GdipCreatePen()
1074 if (i == pGraphState->m_DashCount - 1) in _GdipCreatePen()
/external/pdfium/core/fpdfdoc/
Dcpdf_annot.cpp474 graph_state.m_DashCount = dash_count; in DrawBorder()
484 graph_state.m_DashCount = 2; in DrawBorder()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp1136 pState->m_DashCount != refState.m_DashCount) { in DashChanged()
1139 for (int index = 0; index < pState->m_DashCount; ++index) { in DashChanged()
1468 int count = (pGraphState->m_DashCount + 1) / 2; in PaintStroke()
1476 float off = i * 2 + 1 == pGraphState->m_DashCount in PaintStroke()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp286 for (int i = 0; i < (pGraphState->m_DashCount + 1) / 2; i++) { in RasterizeStroke()
290 float off = i * 2 + 1 == pGraphState->m_DashCount in RasterizeStroke()