Home
last modified time | relevance | path

Searched refs:CXFA_Fill (Results 1 – 7 of 7) 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
52 CXFA_Fill::~CXFA_Fill() = default;
54 bool CXFA_Fill::IsVisible() { in IsVisible()
61 void CXFA_Fill::SetColor(FX_ARGB color) { in SetColor()
70 FX_ARGB CXFA_Fill::GetColor(bool bText) { in GetColor()
77 XFA_Element CXFA_Fill::GetType() const { in GetType()
89 void CXFA_Fill::Draw(CXFA_Graphics* pGS, in Draw()
117 void CXFA_Fill::DrawStipple(CXFA_Graphics* pGS, in DrawStipple()
127 void CXFA_Fill::DrawRadial(CXFA_Graphics* pGS, in DrawRadial()
137 void CXFA_Fill::DrawLinear(CXFA_Graphics* pGS, in DrawLinear()
[all …]
Dcxfa_fill.h21 class CXFA_Fill final : public CXFA_Node {
23 CXFA_Fill(CXFA_Document* doc, XFA_PacketType packet);
24 ~CXFA_Fill() override;
Dcxfa_font.cpp125 CXFA_Fill* node = in SetColor()
126 JSObject()->GetOrCreateProperty<CXFA_Fill>(0, XFA_Element::Fill); in SetColor()
134 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.cpp116 CXFA_Fill* CXFA_Box::GetOrCreateFillIfPossible() { in GetOrCreateFillIfPossible()
117 return JSObject()->GetOrCreateProperty<CXFA_Fill>(0, XFA_Element::Fill); in GetOrCreateFillIfPossible()
213 CXFA_Fill* fill = JSObject()->GetProperty<CXFA_Fill>(0, XFA_Element::Fill); in DrawFill()
Dcxfa_node.cpp5826 node = pdfium::MakeUnique<CXFA_Fill>(doc, packet); in Create()
/external/pdfium/fxjs/xfa/
Dcjx_object.cpp1192 CXFA_Fill* borderfill = border->GetOrCreateFillIfPossible(); in ScriptSomFillColor()