Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/page/
Dcpdf_shadingpattern.cpp56 m_pFunctions.clear(); in Load()
60 m_pFunctions.resize(std::min<size_t>(pArray->size(), 4)); in Load()
61 for (size_t i = 0; i < m_pFunctions.size(); ++i) in Load()
62 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load()
64 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
109 if (!m_pFunctions.empty() && m_pCS->GetFamily() == PDFCS_INDEXED) in Validate()
137 return m_pFunctions.empty() || in Validate()
152 if (m_pFunctions.size() != nExpectedNumFunctions) in ValidateFunctions()
156 for (const auto& function : m_pFunctions) { in ValidateFunctions()
Dcpdf_shadingpattern.h62 return m_pFunctions; in GetFuncs()
82 std::vector<std::unique_ptr<CPDF_Function>> m_pFunctions; variable