Searched refs:CXFA_Color (Results 1 – 13 of 13) sorted by relevance
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_color.cpp | 28 CXFA_Color::CXFA_Color(CXFA_Document* doc, XFA_PacketType packet) in CXFA_Color() function in CXFA_Color 38 CXFA_Color::~CXFA_Color() = default; 40 FX_ARGB CXFA_Color::GetValue() { in GetValue() 45 FX_ARGB CXFA_Color::GetValueOrDefault(FX_ARGB defaultValue) { in GetValueOrDefault() 50 void CXFA_Color::SetValue(FX_ARGB color) { in SetValue()
|
D | cxfa_color.h | 12 class CXFA_Color final : public CXFA_Node { 16 CXFA_Color(CXFA_Document* doc, XFA_PacketType packet); 17 ~CXFA_Color() override;
|
D | cxfa_stipple.cpp | 42 CXFA_Color* CXFA_Stipple::GetColorIfExists() { in GetColorIfExists() 43 return GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColorIfExists() 60 CXFA_Color* pColor = GetColorIfExists(); in Draw() 61 FX_ARGB crColor = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor; in Draw()
|
D | cxfa_radial.cpp | 51 CXFA_Color* CXFA_Radial::GetColorIfExists() { in GetColorIfExists() 52 return GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColorIfExists() 60 CXFA_Color* pColor = GetColorIfExists(); in Draw() 61 FX_ARGB crEnd = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor; in Draw()
|
D | cxfa_pattern.cpp | 44 CXFA_Color* CXFA_Pattern::GetColorIfExists() { in GetColorIfExists() 45 return GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColorIfExists() 57 CXFA_Color* pColor = GetColorIfExists(); in Draw() 58 FX_ARGB crEnd = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor; in Draw()
|
D | cxfa_linear.cpp | 50 CXFA_Color* CXFA_Linear::GetColorIfExists() { in GetColorIfExists() 51 return GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColorIfExists() 59 CXFA_Color* pColor = GetColorIfExists(); in Draw() 60 FX_ARGB crEnd = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor; in Draw()
|
D | cxfa_fill.cpp | 62 CXFA_Color* pColor = in SetColor() 63 JSObject()->GetOrCreateProperty<CXFA_Color>(0, XFA_Element::Color); in SetColor() 71 CXFA_Color* pColor = GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColor()
|
D | cxfa_stroke.cpp | 111 CXFA_Color* pNode = GetChild<CXFA_Color>(0, XFA_Element::Color, false); in GetColor() 120 CXFA_Color* pNode = in SetColor() 121 JSObject()->GetOrCreateProperty<CXFA_Color>(0, XFA_Element::Color); in SetColor()
|
D | cxfa_radial.h | 14 class CXFA_Color; variable 30 CXFA_Color* GetColorIfExists();
|
D | cxfa_stipple.h | 14 class CXFA_Color; variable 30 CXFA_Color* GetColorIfExists();
|
D | cxfa_pattern.h | 14 class CXFA_Color; variable 33 CXFA_Color* GetColorIfExists();
|
D | cxfa_linear.h | 14 class CXFA_Color; variable 33 CXFA_Color* GetColorIfExists();
|
D | cxfa_node.cpp | 5544 node = pdfium::MakeUnique<CXFA_Color>(doc, packet); in Create()
|