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.cpp75 m_pFunctions.clear(); in Load()
79 m_pFunctions.resize(std::min<size_t>(pArray->GetCount(), 4)); in Load()
80 for (size_t i = 0; i < m_pFunctions.size(); ++i) in Load()
81 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load()
83 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
126 if (!m_pFunctions.empty() && m_pCS->GetFamily() == PDFCS_INDEXED) in Validate()
160 if (!m_pFunctions.empty() && in Validate()
179 if (m_pFunctions.size() != nExpectedNumFunctions) in ValidateFunctions()
183 for (const auto& function : m_pFunctions) { in ValidateFunctions()
Dcpdf_shadingpattern.h60 return m_pFunctions; in GetFuncs()
79 std::vector<std::unique_ptr<CPDF_Function>> m_pFunctions; variable