Home
last modified time | relevance | path

Searched refs:m_DashArray (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/core/fxge/ge/
Dcfx_graphstatedata.cpp15 m_DashArray(nullptr), in CFX_GraphStateData()
22 m_DashArray = nullptr; in CFX_GraphStateData()
29 FX_Free(m_DashArray); in Copy()
30 m_DashArray = nullptr; in Copy()
36 m_DashArray = FX_Alloc(FX_FLOAT, m_DashCount); in Copy()
37 FXSYS_memcpy(m_DashArray, src.m_DashArray, m_DashCount * sizeof(FX_FLOAT)); in Copy()
42 FX_Free(m_DashArray); in ~CFX_GraphStateData()
46 FX_Free(m_DashArray); in SetDashCount()
47 m_DashArray = nullptr; in SetDashCount()
51 m_DashArray = FX_Alloc(FX_FLOAT, count); in SetDashCount()
Dcfx_graphstate.cpp29 pData->m_DashArray[i] = pArray->GetNumberAt(i) * scale; in SetLineDash()
/external/pdfium/core/fpdfdoc/
Dcpdf_annot.cpp482 graph_state.m_DashArray = FX_Alloc(FX_FLOAT, dash_count); in DrawBorder()
486 graph_state.m_DashArray[i] = pDashArray->GetNumberAt(i); in DrawBorder()
489 graph_state.m_DashArray[i] = graph_state.m_DashArray[i - 1]; in DrawBorder()
492 graph_state.m_DashArray = FX_Alloc(FX_FLOAT, 2); in DrawBorder()
494 graph_state.m_DashArray[0] = graph_state.m_DashArray[1] = 3 * 1.0f; in DrawBorder()
/external/pdfium/core/fxge/
Dcfx_graphstatedata.h25 FX_FLOAT* m_DashArray; variable
/external/pdfium/core/fxge/win32/
Dcfx_psrenderer.cpp262 FXSYS_memcmp(m_CurGraphState.m_DashArray, pGraphState->m_DashArray, in SetGraphState()
266 buf << pGraphState->m_DashArray[i] << " "; in SetGraphState()
Dfx_win32_device.cpp148 pMatrix ? pMatrix->TransformDistance(pGraphState->m_DashArray[i]) in CreatePen()
149 : pGraphState->m_DashArray[i]); in CreatePen()
Dfx_win32_gdipext.cpp1023 FX_FLOAT on_phase = pGraphState->m_DashArray[i]; in _GdipCreatePen()
1028 off_phase = pGraphState->m_DashArray[i + 1]; in _GdipCreatePen()
/external/pdfium/fpdfsdk/pdfwindow/
DPWL_Edit.cpp361 gsd.m_DashArray[0] = (FX_FLOAT)GetBorderDash().nDash; in DrawThisAppearance()
362 gsd.m_DashArray[1] = (FX_FLOAT)GetBorderDash().nGap; in DrawThisAppearance()
DPWL_Utils.cpp1083 gsd.m_DashArray[0] = 3.0f; in DrawBorder()
1084 gsd.m_DashArray[1] = 3.0f; in DrawBorder()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp1022 bool dashArray = pState && pState->m_DashArray; in DashChanged()
1023 if (!dashArray && !refState.m_DashArray) in DashChanged()
1025 if (!dashArray || !refState.m_DashArray) in DashChanged()
1032 if (pState->m_DashArray[index] != refState.m_DashArray[index]) in DashChanged()
1193 if (pGraphState->m_DashArray) { in PaintStroke()
1198 FX_FLOAT on = pGraphState->m_DashArray[i * 2]; in PaintStroke()
1203 : pGraphState->m_DashArray[i * 2 + 1]; in PaintStroke()
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.cpp397 if (pGraphState->m_DashArray) { in RasterizeStroke()
401 FX_FLOAT on = pGraphState->m_DashArray[i * 2]; in RasterizeStroke()
407 : pGraphState->m_DashArray[i * 2 + 1]; in RasterizeStroke()
/external/pdfium/xfa/fxgraphics/
Dcfx_graphics.cpp152 m_info.graphState.m_DashArray[i] = dashArray[i] * scale; in SetLineDash()
/external/pdfium/fpdfsdk/formfiller/
Dcffl_interactiveformfiller.cpp85 gsd.m_DashArray[0] = 1.0f; in OnDraw()