/external/pdfium/xfa/src/fdp/src/fde/ |
D | fde_gedevice.h | 67 const IFDE_Path* pPath, 85 const IFDE_Path* pPath, 94 const CFX_PathData* pPath, 97 const CFX_PathData* pPath, 100 const CFX_PathData* pPath, 103 const CFX_PathData* pPath, 124 const CFX_PathData* pPath,
|
D | fde_gedevice.cpp | 278 const IFDE_Path* pPath, in DrawPath() argument 280 CFDE_Path* pGePath = (CFDE_Path*)pPath; in DrawPath() 385 const CFX_PathData* pPath, 392 const IFDE_Path* pPath, in FillPath() argument 394 CFDE_Path* pGePath = (CFDE_Path*)pPath; in FillPath() 408 const CFX_PathData* pPath, in FillSolidPath() argument 410 FXSYS_assert(pPath && pBrush && pBrush->GetType() == FDE_BRUSHTYPE_Solid); in FillSolidPath() 412 return m_pDevice->DrawPath(pPath, (const CFX_Matrix*)pMatrix, NULL, in FillSolidPath() 416 const CFX_PathData* pPath, in FillHatchPath() argument 418 FXSYS_assert(pPath && pBrush && pBrush->GetType() == FDE_BRUSHTYPE_Hatch); in FillHatchPath() [all …]
|
D | fde_geobject.cpp | 210 CFDE_Path* pPath = (CFDE_Path*)pSrc; in AddPath() local 211 if (pPath == NULL) { in AddPath() 214 int32_t iCount = pPath->m_Path.GetPointCount(); in AddPath() 219 LineTo(pPath->m_Path.GetPointX(0), pPath->m_Path.GetPointY(0)); in AddPath() 221 m_Path.Append(&pPath->m_Path, NULL); in AddPath()
|
D | fde_render.cpp | 218 IFDE_Path* pPath = pPathSet->GetPath(hPath); in RenderPath() local 219 if (pPath == NULL) { in RenderPath() 229 m_pRenderDevice->DrawPath(pPen, fWidth, pPath, &m_Transform); in RenderPath() 235 m_pRenderDevice->FillPath(pBrush, pPath, &m_Transform); in RenderPath()
|
D | fde_gdidevice.h | 82 const IFDE_Path* pPath, 117 const IFDE_Path* pPath,
|
D | fde_gdidevice.cpp | 76 Gdiplus::GraphicsPath* pPath = m_pClipPath ? &m_pClipPath->m_Path : NULL; in SetClipPath() local 77 return m_pGraphics->SetClip(pPath) == Gdiplus::Ok; in SetClipPath() 329 const IFDE_Path* pPath, in DrawPath() argument 331 CFDE_GdiPath* pGdiPath = (CFDE_GdiPath*)pPath; in DrawPath() 447 const IFDE_Path* pPath, in FillPath() argument 449 CFDE_GdiPath* pGdiPath = (CFDE_GdiPath*)pPath; in FillPath()
|
/external/pdfium/core/src/fxge/ge/ |
D | fx_ge_linux.cpp | 137 for (const char** pPath = pUserPaths; *pPath; ++pPath) { in ParseFontCfg() local 138 AddPath(*pPath); in ParseFontCfg()
|
D | fx_ge_text.cpp | 1134 const CFX_PathData* pPath = pFaceCache->LoadGlyphPath( in DrawTextPath() local 1136 if (!pPath) { in DrawTextPath() 1140 CFX_PathData TransformedPath(*pPath); in DrawTextPath() 1845 CFX_PathData* pPath = new CFX_PathData; in LoadGlyphPath() local 1846 pPath->SetPointCount(params.m_PointCount); in LoadGlyphPath() 1849 params.m_pPoints = pPath->GetPoints(); in LoadGlyphPath() 1854 pPath->TrimPoints(params.m_PointCount); in LoadGlyphPath() 1856 pPath->GetPoints()[params.m_PointCount - 1].m_Flag |= FXPT_CLOSEFIGURE; in LoadGlyphPath() 1858 return pPath; in LoadGlyphPath()
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
D | KeyStore_Impl3Test.java | 115 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd); in testLoadStore01() local 126 kss[i].setEntry(aliases[1], pKey, pPath); in testLoadStore01() 127 kss[i].setEntry(aliases[2], pKey, pPath); in testLoadStore01() 154 en = kss[i].getEntry(aliases[j], (j == 0 ? null : pPath)); in testLoadStore01() 155 en1 = kss1[i].getEntry(aliases[j], (j == 0 ? null : pPath)); in testLoadStore01()
|
D | KeyStore_Impl1Test.java | 468 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd); in testEntry02() local 477 kss[i].setEntry(aliases[j], pKey, pPath); in testEntry02() 487 en = kss[i].getEntry(aliases[j], pPath); in testEntry02() 532 pPath.destroy(); in testEntry02() 535 kss[i].setEntry("ZZZ", pKey, pPath); in testEntry02() 542 kss[i].getEntry(aliases[j], pPath); in testEntry02() 581 KeyStore.PasswordProtection pPath = new KeyStore.PasswordProtection(pwd); in testEntry03() local 590 kss[i].setEntry(aliases[j], sKey, pPath); in testEntry03() 618 pPath.destroy(); in testEntry03() 621 kss[i].setEntry("ZZZ", aEntry, pPath); in testEntry03() [all …]
|
/external/pdfium/core/src/fxge/android/ |
D | fpf_skiafontmgr.h | 53 void SetPath(const FX_CHAR* pPath) { in SetPath() argument 55 int32_t iSize = FXSYS_strlen(pPath); in SetPath() 57 FXSYS_memcpy(m_pPath, pPath, iSize * sizeof(FX_CHAR)); in SetPath()
|
/external/pdfium/xfa/src/fdp/include/ |
D | fde_rdv.h | 76 const IFDE_Path* pPath, 94 const IFDE_Path* pPath,
|
D | fde_xml.h | 55 virtual IFDE_XMLNode* GetPath(const FX_WCHAR* pPath,
|
/external/pdfium/xfa/include/fwl/core/ |
D | fwl_form.h | 78 FWL_ERR SetBorderRegion(CFX_Path* pPath);
|
/external/pdfium/xfa/src/fdp/src/tto/ |
D | fde_textout.cpp | 849 IFDE_Path* pPath = IFDE_Path::Create(); in DrawLine() local 865 pPath->AddLine(pt1, pt2); in DrawLine() 881 pPath->AddLine(pt1, pt2); in DrawLine() 904 pPath->AddLine(pt1, pt2); in DrawLine() 911 m_pRenderDevice->DrawPath(pPen, 1, pPath, &m_Matrix); in DrawLine() 913 pPath->Release(); in DrawLine()
|
/external/pdfium/xfa/include/fwl/adapter/ |
D | fwl_adapterwidgetmgr.h | 36 virtual FWL_ERR SetBorderRegion(IFWL_Widget* pWidget, CFX_Path* pPath) = 0;
|
D | fwl_sdadapterimp.h | 51 virtual FWL_ERR SetBorderRegion(IFWL_Widget* pWidget, CFX_Path* pPath);
|
/external/pdfium/xfa/src/fwl/src/core/ |
D | fwl_sdadapterimp.cpp | 78 CFX_Path* pPath) { in SetBorderRegion() argument
|
D | fwl_formimp.cpp | 49 FWL_ERR IFWL_Form::SetBorderRegion(CFX_Path* pPath) { in SetBorderRegion() argument 50 return static_cast<CFWL_FormImp*>(GetImpl())->SetBorderRegion(pPath); in SetBorderRegion() 430 FWL_ERR CFWL_FormImp::SetBorderRegion(CFX_Path* pPath) { in SetBorderRegion() argument
|
/external/pdfium/xfa/src/fxfa/src/app/ |
D | xfa_textlayout.cpp | 1892 IFDE_Path* pPath = IFDE_Path::Create(); in RenderPath() local 1905 pPath->AddLine(pt1, pt2); in RenderPath() 1916 pPath->AddLine(pt1, pt2); in RenderPath() 1926 pPath->AddLine(pt1, pt2); in RenderPath() 1978 pPath->AddLine(pt1, pt2); in RenderPath() 1984 pPath->AddLine(pt1, pt2); in RenderPath() 1988 pDevice->DrawPath(pPen, 1, pPath, &tmDoc2Device); in RenderPath() 1990 pPath->Release(); in RenderPath()
|
/external/pdfium/xfa/src/fwl/src/core/include/ |
D | fwl_formimp.h | 89 virtual FWL_ERR SetBorderRegion(CFX_Path* pPath);
|
D | fwl_widgetmgrimp.h | 88 FWL_ERR SetBorderRegion_Native(IFWL_Widget* pWidget, CFX_Path* pPath);
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
D | fpdf_render_text.cpp | 763 const CFX_PathData* pPath = pFaceCache->LoadGlyphPath( in DrawTextPathWithPattern() local 765 if (!pPath) { in DrawTextPathWithPattern() 777 path.m_Path.New()->Append(pPath, &matrix); in DrawTextPathWithPattern()
|
/external/pdfium/xfa/src/fdp/src/xml/ |
D | fde_xml.cpp | 119 CFDE_XMLNode* CFDE_XMLNode::GetPath(const FX_WCHAR* pPath, in GetPath() argument 122 FXSYS_assert(pPath != NULL); in GetPath() 124 iLength = FXSYS_wcslen(pPath); in GetPath() 130 const FX_WCHAR* pStart = pPath; in GetPath() 131 const FX_WCHAR* pEnd = pPath + iLength; in GetPath() 141 iLength -= pStart - pPath; in GetPath()
|
D | fde_xml.h | 30 virtual CFDE_XMLNode* GetPath(const FX_WCHAR* pPath,
|