Searched refs:CPDF_Function (Results 1 – 19 of 19) sorted by relevance
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_function.cpp | 24 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 …]
|
D | cpdf_function.h | 19 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(
|
D | cpdf_stitchfunc.h | 16 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;
|
D | cpdf_shadingpattern.h | 36 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;
|
D | cpdf_meshstream.h | 35 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;
|
D | cpdf_stitchfunc.cpp | 22 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()
|
D | cpdf_shadingpattern.cpp | 62 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); in Load() 64 m_pFunctions.push_back(CPDF_Function::Load(pFunc)); in Load()
|
D | cpdf_psfunc.h | 17 class CPDF_PSFunc final : public CPDF_Function {
|
D | cpdf_expintfunc.h | 15 class CPDF_ExpIntFunc final : public CPDF_Function {
|
D | cpdf_psfunc.cpp | 12 CPDF_PSFunc::CPDF_PSFunc() : CPDF_Function(Type::kType4PostScript) {} in CPDF_PSFunc()
|
D | cpdf_sampledfunc.h | 18 class CPDF_SampledFunc final : public CPDF_Function {
|
D | cpdf_expintfunc.cpp | 16 : CPDF_Function(Type::kType2ExpotentialInterpolation) {} in CPDF_ExpIntFunc()
|
D | cpdf_sampledfunc.cpp | 39 CPDF_SampledFunc::CPDF_SampledFunc() : CPDF_Function(Type::kType0Sampled) {} in CPDF_SampledFunc()
|
D | cpdf_meshstream.cpp | 99 const std::vector<std::unique_ptr<CPDF_Function>>& funcs, in CPDF_MeshStream()
|
D | cpdf_colorspace.cpp | 291 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/ |
D | cpdf_docrenderdata.cpp | 65 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()
|
D | cpdf_rendershading.cpp | 37 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()
|
D | cpdf_renderstatus.cpp | 1587 std::unique_ptr<CPDF_Function> pFunc; in LoadSMask() 1591 pFunc = CPDF_Function::Load(pFuncObj); in LoadSMask()
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 2130 const std::vector<std::unique_ptr<CPDF_Function>>& pFuncs = in DrawShading()
|