Searched refs:m_pFunctions (Results 1 – 2 of 2) sorted by relevance
60 m_pFunctions.clear(); in Load()65 m_pFunctions.resize(std::min<size_t>(pArray->size(), 4)); in Load()66 for (size_t i = 0; i < m_pFunctions.size(); ++i) { in Load()67 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load()70 m_pFunctions.push_back(CPDF_Function::Load(std::move(pFunc))); in Load()116 if (!m_pFunctions.empty() && in Validate()145 return m_pFunctions.empty() || in Validate()158 if (m_pFunctions.size() != nExpectedNumFunctions) in ValidateFunctions()162 for (const auto& function : m_pFunctions) { in ValidateFunctions()
60 return m_pFunctions; in GetFuncs()80 std::vector<std::unique_ptr<CPDF_Function>> m_pFunctions; variable