Searched defs:pFuncObj (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp917 CPDF_Object* pFuncObj = pArray->GetElementValue(3); local
918 if (pFuncObj && pFuncObj->GetType() != PDFOBJ_NAME) {
919 m_pFunc = CPDF_Function::Load(pFuncObj);
H A Dfpdf_page_func.cpp776 CPDF_Function* CPDF_Function::Load(CPDF_Object* pFuncObj) argument
778 if (pFuncObj == NULL) {
783 if (pFuncObj->GetType() == PDFOBJ_STREAM) {
784 type = ((CPDF_Stream*)pFuncObj)->GetDict()->GetInteger(FX_BSTRC("FunctionType"));
785 } else if (pFuncObj->GetType() == PDFOBJ_DICTIONARY) {
786 type = ((CPDF_Dictionary*)pFuncObj)->GetInteger(FX_BSTRC("FunctionType"));
801 if (!pFunc->Init(pFuncObj)) {
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_image.cpp1060 CPDF_Object* pFuncObj = pSMaskDict->GetElementValue(FX_BSTRC("TR")); local
1061 if (pFuncObj && (pFuncObj->GetType() == PDFOBJ_DICTIONARY || pFuncObj->GetType() == PDFOBJ_STREAM)) {
1062 pFunc = CPDF_Function::Load(pFuncObj);

Completed in 314 milliseconds