Home
last modified time | relevance | path

Searched refs:CPDF_Function (Results 1 – 19 of 19) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_function.cpp24 std::unique_ptr<CPDF_Function> CPDF_Function::Load( in Load()
31 std::unique_ptr<CPDF_Function> CPDF_Function::Load( in Load()
47 std::unique_ptr<CPDF_Function> pFunc; in Load()
65 CPDF_Function::Type CPDF_Function::IntegerToFunctionType(int iType) { in IntegerToFunctionType()
77 CPDF_Function::CPDF_Function(Type type) : m_Type(type) {} in CPDF_Function() function in CPDF_Function
79 CPDF_Function::~CPDF_Function() = default;
81 bool CPDF_Function::Init(const CPDF_Object* pObj, in Init()
125 bool CPDF_Function::Call(const float* inputs, in Call()
152 float CPDF_Function::Interpolate(float x, in Interpolate()
161 const CPDF_SampledFunc* CPDF_Function::ToSampledFunc() const { in ToSampledFunc()
[all …]
Dcpdf_function.h19 class CPDF_Function {
29 static std::unique_ptr<CPDF_Function> Load(const CPDF_Object* pFuncObj);
32 virtual ~CPDF_Function();
53 explicit CPDF_Function(Type type);
55 static std::unique_ptr<CPDF_Function> Load(
Dcpdf_stitchfunc.h16 class CPDF_StitchFunc final : public CPDF_Function {
26 const std::vector<std::unique_ptr<CPDF_Function>>& GetSubFunctions() const { in GetSubFunctions()
33 std::vector<std::unique_ptr<CPDF_Function>> m_pSubFunctions;
Dcpdf_shadingpattern.h36 class CPDF_Function; variable
61 const std::vector<std::unique_ptr<CPDF_Function>>& GetFuncs() const { in GetFuncs()
82 std::vector<std::unique_ptr<CPDF_Function>> m_pFunctions;
Dcpdf_meshstream.h35 class CPDF_Function; variable
41 const std::vector<std::unique_ptr<CPDF_Function>>& funcs,
70 const std::vector<std::unique_ptr<CPDF_Function>>& m_funcs;
Dcpdf_stitchfunc.cpp22 CPDF_StitchFunc::CPDF_StitchFunc() : CPDF_Function(Type::kType3Stitching) {} in CPDF_StitchFunc()
74 std::unique_ptr<CPDF_Function> pFunc(CPDF_Function::Load(pSub, pVisited)); in v_Init()
Dcpdf_shadingpattern.cpp62 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load()
64 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
Dcpdf_psfunc.h17 class CPDF_PSFunc final : public CPDF_Function {
Dcpdf_expintfunc.h15 class CPDF_ExpIntFunc final : public CPDF_Function {
Dcpdf_psfunc.cpp12 CPDF_PSFunc::CPDF_PSFunc() : CPDF_Function(Type::kType4PostScript) {} in CPDF_PSFunc()
Dcpdf_sampledfunc.h18 class CPDF_SampledFunc final : public CPDF_Function {
Dcpdf_expintfunc.cpp16 : CPDF_Function(Type::kType2ExpotentialInterpolation) {} in CPDF_ExpIntFunc()
Dcpdf_sampledfunc.cpp39 CPDF_SampledFunc::CPDF_SampledFunc() : CPDF_Function(Type::kType0Sampled) {} in CPDF_SampledFunc()
Dcpdf_meshstream.cpp99 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in CPDF_MeshStream()
Dcpdf_colorspace.cpp291 std::unique_ptr<const CPDF_Function> m_pFunc;
316 std::unique_ptr<const CPDF_Function> m_pFunc;
1242 auto pFunc = CPDF_Function::Load(pFuncObj); in v_Load()
1314 m_pFunc = CPDF_Function::Load(pArray->GetDirectObjectAt(3)); in v_Load()
/external/pdfium/core/fpdfapi/render/
Dcpdf_docrenderdata.cpp65 std::unique_ptr<CPDF_Function> pFuncs[3]; in CreateTransferFunc()
72 pFuncs[2 - i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in CreateTransferFunc()
77 pFuncs[0] = CPDF_Function::Load(pObj); in CreateTransferFunc()
Dcpdf_rendershading.cpp37 const std::vector<std::unique_ptr<CPDF_Function>>& funcs) { in CountOutputsFromFunctions()
47 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in GetValidatedOutputsCount()
56 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in GetShadingSteps()
89 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawAxialShading()
157 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawRadialShading()
256 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawFuncShading()
416 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawFreeGouraudShading()
457 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawLatticeGouraudShading()
774 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawCoonPatchMeshes()
Dcpdf_renderstatus.cpp1587 std::unique_ptr<CPDF_Function> pFunc; in LoadSMask()
1591 pFunc = CPDF_Function::Load(pFuncObj); in LoadSMask()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp2130 const std::vector<std::unique_ptr<CPDF_Function>>& pFuncs = in DrawShading()