Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfdoc/
Ddoc_annot.cpp319 graph_state.m_DashArray = FX_Alloc(FX_FLOAT, dash_count); in DrawBorder()
323 graph_state.m_DashArray[i] = pDashArray->GetNumber(i); in DrawBorder()
326 graph_state.m_DashArray[i] = graph_state.m_DashArray[i - 1]; in DrawBorder()
329 graph_state.m_DashArray = FX_Alloc(FX_FLOAT, 2); in DrawBorder()
331 graph_state.m_DashArray[0] = graph_state.m_DashArray[1] = 3 * 1.0f; in DrawBorder()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp622 m_DashArray = NULL; in CFX_GraphStateData()
629 m_DashArray = NULL; in CFX_GraphStateData()
635 FX_Free(m_DashArray); in Copy()
636 m_DashArray = NULL; in Copy()
642 m_DashArray = FX_Alloc(FX_FLOAT, m_DashCount); in Copy()
643 FXSYS_memcpy(m_DashArray, src.m_DashArray, m_DashCount * sizeof(FX_FLOAT)); in Copy()
647 FX_Free(m_DashArray); in ~CFX_GraphStateData()
650 FX_Free(m_DashArray); in SetDashCount()
651 m_DashArray = NULL; in SetDashCount()
656 m_DashArray = FX_Alloc(FX_FLOAT, count); in SetDashCount()
Dfx_ge_ps.cpp247 FXSYS_memcmp(m_CurGraphState.m_DashArray, pGraphState->m_DashArray, in SetGraphState()
251 buf << pGraphState->m_DashArray[i] << " "; in SetGraphState()
/external/pdfium/xfa/src/fdp/src/fde/
Dfde_object.h48 virtual int32_t CountDashArray() const { return m_DashArray.GetSize(); } in CountDashArray()
50 dashArray.Copy(m_DashArray); in GetDashArray()
54 m_DashArray.Copy(dashArray); in SetDashArray()
82 CFX_FloatArray m_DashArray; variable
Dfde_gedevice.cpp379 graphState.m_DashArray[i] = dashArray[i] * fPenWidth; in CreatePen()
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp215 if (pGraphState->m_DashArray) { in SkRasterizeStroke()
220 FX_FIXFLOAT on = pGraphState->m_DashArray[i * 2]; in SkRasterizeStroke()
225 : pGraphState->m_DashArray[i * 2 + 1]; in SkRasterizeStroke()
/external/pdfium/core/src/fxge/apple/
Dfx_quartz_device.cpp907 dashArray[index] = graphState->m_DashArray[index]; in setStrokeInfo()
910 CGFloat* dashArray = (CGFloat*)graphState->m_DashArray; in setStrokeInfo()
/external/pdfium/fpdfsdk/src/pdfwindow/
DPWL_Edit.cpp415 gsd.m_DashArray[0] = (FX_FLOAT)GetBorderDash().nDash; in DrawThisAppearance()
416 gsd.m_DashArray[1] = (FX_FLOAT)GetBorderDash().nGap; in DrawThisAppearance()
DPWL_Utils.cpp1512 gsd.m_DashArray[0] = 3.0f; in DrawBorder()
1513 gsd.m_DashArray[1] = 3.0f; in DrawBorder()
/external/pdfium/core/src/fxge/agg/src/
Dfx_agg_driver.cpp153 if (pGraphState->m_DashArray) { in RasterizeStroke()
157 FX_FLOAT on = pGraphState->m_DashArray[i * 2]; in RasterizeStroke()
163 : pGraphState->m_DashArray[i * 2 + 1]; in RasterizeStroke()
/external/pdfium/core/include/fxge/
Dfx_ge.h183 FX_FLOAT* m_DashArray; variable
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp740 pMatrix ? pMatrix->TransformDistance(pGraphState->m_DashArray[i]) in _CreatePen()
741 : pGraphState->m_DashArray[i]); in _CreatePen()
Dfx_win32_gdipext.cpp1022 FX_FLOAT on_phase = pGraphState->m_DashArray[i]; in _GdipCreatePen()
1027 off_phase = pGraphState->m_DashArray[i + 1]; in _GdipCreatePen()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp455 pData->m_DashArray[i] = FXSYS_Mul(pArray->GetNumber(i), scale); in SetLineDash()
/external/pdfium/xfa/src/fxgraphics/src/
Dfx_graphics.cpp203 FXSYS_memcpy(dashArray, _info._graphState.m_DashArray, in GetLineDash()
227 _info._graphState.m_DashArray[i] = dashArray[i] * scale; in SetLineDash()
/external/pdfium/fpdfsdk/src/formfiller/
DFFL_IFormFiller.cpp82 gsd.m_DashArray[0] = 1.0f; in OnDraw()