Searched refs:CPDF_Function (Results 1 – 18 of 18) sorted by relevance
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_function.cpp | 19 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 …]
|
D | cpdf_function.h | 17 class CPDF_Function { 27 static std::unique_ptr<CPDF_Function> Load(CPDF_Object* pFuncObj); 30 virtual ~CPDF_Function(); 51 explicit CPDF_Function(Type type);
|
D | cpdf_stitchfunc.h | 15 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;
|
D | cpdf_shadingpattern.h | 33 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;
|
D | cpdf_meshstream.h | 33 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;
|
D | cpdf_stitchfunc.cpp | 16 : CPDF_Function(Type::kType3Stitching), in CPDF_StitchFunc() 45 std::unique_ptr<CPDF_Function> pFunc(CPDF_Function::Load(pSub)); in v_Init()
|
D | cpdf_shadingpattern.cpp | 81 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load() 83 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
|
D | cpdf_expintfunc.h | 12 class CPDF_ExpIntFunc : public CPDF_Function {
|
D | cpdf_psfunc.h | 15 class CPDF_PSFunc : public CPDF_Function {
|
D | cpdf_sampledfunc.h | 16 class CPDF_SampledFunc : public CPDF_Function {
|
D | cpdf_psfunc.cpp | 12 CPDF_PSFunc::CPDF_PSFunc() : CPDF_Function(Type::kType4PostScript) {} in CPDF_PSFunc()
|
D | cpdf_expintfunc.cpp | 14 : CPDF_Function(Type::kType2ExpotentialInterpolation), in CPDF_ExpIntFunc()
|
D | cpdf_colorspace.cpp | 225 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()
|
D | cpdf_sampledfunc.cpp | 35 CPDF_SampledFunc::CPDF_SampledFunc() : CPDF_Function(Type::kType0Sampled) {} in CPDF_SampledFunc()
|
D | cpdf_meshstream.cpp | 94 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in CPDF_MeshStream()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_docrenderdata.cpp | 73 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()
|
D | cpdf_renderstatus.cpp | 95 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/ |
D | fx_skia_device.cpp | 1994 const std::vector<std::unique_ptr<CPDF_Function>>& pFuncs = in DrawShading()
|