Home
last modified time | relevance | path

Searched refs:pContentArray (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/src/
Dfpdf_transformpage.cpp133 CPDF_Array* pContentArray = nullptr; in FPDFPage_TransFormWithClip() local
135 pContentArray = pArray; in FPDFPage_TransFormWithClip()
137 pContentArray->InsertAt(0, pRef); in FPDFPage_TransFormWithClip()
138 pContentArray->AddReference(pDoc, pEndStream); in FPDFPage_TransFormWithClip()
143 pContentArray = pArray; in FPDFPage_TransFormWithClip()
145 pContentArray->InsertAt(0, pRef); in FPDFPage_TransFormWithClip()
146 pContentArray->AddReference(pDoc, pEndStream); in FPDFPage_TransFormWithClip()
148 pContentArray = new CPDF_Array(); in FPDFPage_TransFormWithClip()
149 pContentArray->AddReference(pDoc, pStream->GetObjNum()); in FPDFPage_TransFormWithClip()
150 pContentArray->AddReference(pDoc, pDirectObj->GetObjNum()); in FPDFPage_TransFormWithClip()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_content.cpp129 CPDF_StreamAcc** pContentArray = FX_Alloc(CPDF_StreamAcc*, iCount); in TransformContent() local
140 pContentArray[i] = pStreamAcc; in TransformContent()
141 size += pContentArray[i]->GetSize() + 1; in TransformContent()
146 FXSYS_memcpy(pBuf + pos, pContentArray[i]->GetData(), in TransformContent()
147 pContentArray[i]->GetSize()); in TransformContent()
148 pos += pContentArray[i]->GetSize() + 1; in TransformContent()
150 delete pContentArray[i]; in TransformContent()
154 FX_Free(pContentArray); in TransformContent()