Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/page/
Dcpdf_function.cpp19 std::unique_ptr<CPDF_Function> CPDF_Function::Load(CPDF_Object* pFuncObj) { in Load()
20 std::unique_ptr<CPDF_Function> pFunc; in Load()
47 CPDF_Function::Type CPDF_Function::IntegerToFunctionType(int iType) { in IntegerToFunctionType()
59 CPDF_Function::CPDF_Function(Type type) in CPDF_Function() function in CPDF_Function
62 CPDF_Function::~CPDF_Function() { in ~CPDF_Function()
67 bool CPDF_Function::Init(CPDF_Object* pObj) { in Init()
104 bool CPDF_Function::Call(float* inputs, in Call()
128 float CPDF_Function::Interpolate(float x, in Interpolate()
137 const CPDF_SampledFunc* CPDF_Function::ToSampledFunc() const { in ToSampledFunc()
143 const CPDF_ExpIntFunc* CPDF_Function::ToExpIntFunc() const { in ToExpIntFunc()
[all …]
Dcpdf_function.h17 class CPDF_Function {
27 static std::unique_ptr<CPDF_Function> Load(CPDF_Object* pFuncObj);
30 virtual ~CPDF_Function();
51 explicit CPDF_Function(Type type);
Dcpdf_stitchfunc.h15 class CPDF_StitchFunc : public CPDF_Function {
24 const std::vector<std::unique_ptr<CPDF_Function>>& GetSubFunctions() const { in GetSubFunctions()
30 std::vector<std::unique_ptr<CPDF_Function>> m_pSubFunctions;
Dcpdf_shadingpattern.h33 class CPDF_Function; variable
59 const std::vector<std::unique_ptr<CPDF_Function>>& GetFuncs() const { in GetFuncs()
79 std::vector<std::unique_ptr<CPDF_Function>> m_pFunctions;
Dcpdf_meshstream.h33 class CPDF_Function; variable
39 const std::vector<std::unique_ptr<CPDF_Function>>& funcs,
68 const std::vector<std::unique_ptr<CPDF_Function>>& m_funcs;
Dcpdf_stitchfunc.cpp16 : CPDF_Function(Type::kType3Stitching), in CPDF_StitchFunc()
45 std::unique_ptr<CPDF_Function> pFunc(CPDF_Function::Load(pSub)); in v_Init()
Dcpdf_shadingpattern.cpp81 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load()
83 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
Dcpdf_expintfunc.h12 class CPDF_ExpIntFunc : public CPDF_Function {
Dcpdf_psfunc.h15 class CPDF_PSFunc : public CPDF_Function {
Dcpdf_sampledfunc.h16 class CPDF_SampledFunc : public CPDF_Function {
Dcpdf_psfunc.cpp12 CPDF_PSFunc::CPDF_PSFunc() : CPDF_Function(Type::kType4PostScript) {} in CPDF_PSFunc()
Dcpdf_expintfunc.cpp14 : CPDF_Function(Type::kType2ExpotentialInterpolation), in CPDF_ExpIntFunc()
Dcpdf_colorspace.cpp225 std::unique_ptr<CPDF_Function> m_pFunc;
246 std::unique_ptr<CPDF_Function> m_pFunc;
1134 auto pFunc = CPDF_Function::Load(pFuncObj); in v_Load()
1206 m_pFunc = CPDF_Function::Load(pArray->GetDirectObjectAt(3)); in v_Load()
Dcpdf_sampledfunc.cpp35 CPDF_SampledFunc::CPDF_SampledFunc() : CPDF_Function(Type::kType0Sampled) {} in CPDF_SampledFunc()
Dcpdf_meshstream.cpp94 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in CPDF_MeshStream()
/external/pdfium/core/fpdfapi/render/
Dcpdf_docrenderdata.cpp73 std::unique_ptr<CPDF_Function> pFuncs[3]; in GetTransferFunc()
82 pFuncs[2 - i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in GetTransferFunc()
87 pFuncs[0] = CPDF_Function::Load(pObj); in GetTransferFunc()
Dcpdf_renderstatus.cpp95 const std::vector<std::unique_ptr<CPDF_Function>>& funcs) { in CountOutputs()
107 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawAxialShading()
192 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawRadialShading()
324 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawFuncShading()
477 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawFreeGouraudShading()
518 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawLatticeGouraudShading()
834 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in DrawCoonPatchMeshes()
2573 std::unique_ptr<CPDF_Function> pFunc; in LoadSMask()
2576 pFunc = CPDF_Function::Load(pFuncObj); in LoadSMask()
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp1994 const std::vector<std::unique_ptr<CPDF_Function>>& pFuncs = in DrawShading()