Searched refs:CPDF_PSOP (Results 1 – 3 of 3) sorted by relevance
70 class CPDF_PSOP {72 CPDF_PSOP();73 explicit CPDF_PSOP(PDF_PSOP op);74 explicit CPDF_PSOP(float value);75 ~CPDF_PSOP();99 const std::unique_ptr<CPDF_PSOP>& last_operator() { in last_operator()108 std::vector<std::unique_ptr<CPDF_PSOP>> m_Operators;
87 CPDF_PSOP::CPDF_PSOP() in CPDF_PSOP() function in CPDF_PSOP90 CPDF_PSOP::CPDF_PSOP(PDF_PSOP op) : m_op(op), m_value(0) { in CPDF_PSOP() function in CPDF_PSOP95 CPDF_PSOP::CPDF_PSOP(float value) : m_op(PSOP_CONST), m_value(value) {} in CPDF_PSOP() function in CPDF_PSOP97 CPDF_PSOP::~CPDF_PSOP() = default;99 bool CPDF_PSOP::Parse(CPDF_SimpleParser* parser, int depth) { in Parse()104 void CPDF_PSOP::Execute(CPDF_PSEngine* pEngine) { in Execute()109 float CPDF_PSOP::GetFloatValue() const { in GetFloatValue()137 m_Operators.push_back(std::make_unique<CPDF_PSOP>()); in Parse()189 m_Operators.push_back(std::make_unique<CPDF_PSOP>(pFound->op)); in AddOperator()191 m_Operators.push_back(std::make_unique<CPDF_PSOP>(StringToFloat(word))); in AddOperator()
79 const std::unique_ptr<CPDF_PSOP>& new_psop = proc.last_operator(); in TEST()