Home
last modified time | relevance | path

Searched refs:CXFA_Rectangle (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_rectangle.cpp34 CXFA_Rectangle::CXFA_Rectangle(CXFA_Document* doc, XFA_PacketType packet) in CXFA_Rectangle() function in CXFA_Rectangle
45 CXFA_Rectangle::CXFA_Rectangle(CXFA_Document* pDoc, in CXFA_Rectangle() function in CXFA_Rectangle
64 CXFA_Rectangle::~CXFA_Rectangle() {} in ~CXFA_Rectangle()
66 void CXFA_Rectangle::GetFillPath(const std::vector<CXFA_Stroke*>& strokes, in GetFillPath()
200 void CXFA_Rectangle::Draw(const std::vector<CXFA_Stroke*>& strokes, in Draw()
256 void CXFA_Rectangle::Stroke(const std::vector<CXFA_Stroke*>& strokes, in Stroke()
353 void CXFA_Rectangle::StrokeRect(CXFA_Graphics* pGraphic, in StrokeRect()
384 void CXFA_Rectangle::StrokeLowered(CXFA_Graphics* pGS, in StrokeLowered()
401 void CXFA_Rectangle::StrokeRaised(CXFA_Graphics* pGS, in StrokeRaised()
418 void CXFA_Rectangle::StrokeEtched(CXFA_Graphics* pGS, in StrokeEtched()
[all …]
Dcxfa_rectangle.h16 class CXFA_Rectangle : public CXFA_Box {
18 CXFA_Rectangle(CXFA_Document* doc, XFA_PacketType packet);
19 ~CXFA_Rectangle() override;
30 CXFA_Rectangle(CXFA_Document* pDoc,
Dcxfa_value.h18 class CXFA_Rectangle; variable
29 CXFA_Rectangle* GetRectangleIfExists() const;
Dcxfa_value.cpp82 CXFA_Rectangle* CXFA_Value::GetRectangleIfExists() const { in GetRectangleIfExists()
85 return static_cast<CXFA_Rectangle*>(node); in GetRectangleIfExists()
Dcxfa_border.h12 class CXFA_Border : public CXFA_Rectangle {
Dcxfa_border.cpp36 : CXFA_Rectangle(doc, in CXFA_Border()
Dcxfa_box.cpp54 CXFA_Rectangle* ToRectangle(CXFA_Box* box) { in ToRectangle()
55 return static_cast<CXFA_Rectangle*>(box); in ToRectangle()
Dcxfa_node_statics.cpp1575 node = pdfium::MakeUnique<CXFA_Rectangle>(doc, packet); in Create()
/external/pdfium/fxjs/xfa/
Dcjx_rectangle.h12 class CXFA_Rectangle; variable
16 explicit CJX_Rectangle(CXFA_Rectangle* node);
Dcjx_rectangle.cpp11 CJX_Rectangle::CJX_Rectangle(CXFA_Rectangle* node) : CJX_Node(node) {} in CJX_Rectangle()