Home
last modified time | relevance | path

Searched refs:CXFA_Fill (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_fill.cpp42 CXFA_Fill::CXFA_Fill(CXFA_Document* doc, XFA_PacketType packet) in CXFA_Fill() function in CXFA_Fill
53 CXFA_Fill::~CXFA_Fill() {} in ~CXFA_Fill()
55 bool CXFA_Fill::IsVisible() { in IsVisible()
62 void CXFA_Fill::SetColor(FX_ARGB color) { in SetColor()
71 FX_ARGB CXFA_Fill::GetColor(bool bText) { in GetColor()
78 XFA_Element CXFA_Fill::GetType() const { in GetType()
90 void CXFA_Fill::Draw(CXFA_Graphics* pGS, in Draw()
118 void CXFA_Fill::DrawStipple(CXFA_Graphics* pGS, in DrawStipple()
128 void CXFA_Fill::DrawRadial(CXFA_Graphics* pGS, in DrawRadial()
138 void CXFA_Fill::DrawLinear(CXFA_Graphics* pGS, in DrawLinear()
[all …]
Dcxfa_fill.h21 class CXFA_Fill : public CXFA_Node {
23 CXFA_Fill(CXFA_Document* doc, XFA_PacketType packet);
24 ~CXFA_Fill() override;
Dcxfa_font.cpp127 CXFA_Fill* node = in SetColor()
128 JSObject()->GetOrCreateProperty<CXFA_Fill>(0, XFA_Element::Fill); in SetColor()
136 CXFA_Fill* fill = GetChild<CXFA_Fill>(0, XFA_Element::Fill, false); in GetColor()
Dcxfa_box.h19 class CXFA_Fill; variable
33 CXFA_Fill* GetOrCreateFillIfPossible();
Dcxfa_box.cpp118 CXFA_Fill* CXFA_Box::GetOrCreateFillIfPossible() { in GetOrCreateFillIfPossible()
119 return JSObject()->GetOrCreateProperty<CXFA_Fill>(0, XFA_Element::Fill); in GetOrCreateFillIfPossible()
215 CXFA_Fill* fill = JSObject()->GetProperty<CXFA_Fill>(0, XFA_Element::Fill); in DrawFill()
Dcxfa_node_statics.cpp1647 node = pdfium::MakeUnique<CXFA_Fill>(doc, packet); in Create()
/external/pdfium/fxjs/xfa/
Dcjx_fill.h12 class CXFA_Fill; variable
16 explicit CJX_Fill(CXFA_Fill* node);
Dcjx_fill.cpp11 CJX_Fill::CJX_Fill(CXFA_Fill* node) : CJX_Node(node) {} in CJX_Fill()
Dcjx_object.cpp1326 CXFA_Fill* borderfill = border->GetOrCreateFillIfPossible(); in Script_Som_FillColor()