Home
last modified time | relevance | path

Searched refs:CFX_CSSValue (Results 1 – 18 of 18) sorted by relevance

/external/pdfium/core/fxcrt/css/
Dcfx_cssdeclaration.h36 RetainPtr<CFX_CSSValue> GetProperty(CFX_CSSProperty eProperty,
64 RetainPtr<CFX_CSSValue>& pWidth) const;
69 void Add4ValuesProperty(const std::vector<RetainPtr<CFX_CSSValue>>& list,
75 RetainPtr<CFX_CSSValue> ParseNumber(const wchar_t* pszValue,
77 RetainPtr<CFX_CSSValue> ParseEnum(const wchar_t* pszValue, int32_t iValueLen);
78 RetainPtr<CFX_CSSValue> ParseColor(const wchar_t* pszValue,
80 RetainPtr<CFX_CSSValue> ParseString(const wchar_t* pszValue,
83 RetainPtr<CFX_CSSValue> pValue,
Dcfx_cssvaluelist.h14 class CFX_CSSValueList final : public CFX_CSSValue {
16 explicit CFX_CSSValueList(std::vector<RetainPtr<CFX_CSSValue>>& list);
20 RetainPtr<CFX_CSSValue> GetValue(int32_t index) const;
23 std::vector<RetainPtr<CFX_CSSValue>> m_ppList;
Dcfx_cssdeclaration.cpp145 RetainPtr<CFX_CSSValue> CFX_CSSDeclaration::GetProperty( in GetProperty()
158 RetainPtr<CFX_CSSValue> pValue, in AddPropertyHolder()
195 RetainPtr<CFX_CSSValue> pCSSValue; in AddProperty()
223 RetainPtr<CFX_CSSValue> pWidth; in AddProperty()
288 RetainPtr<CFX_CSSValue> CFX_CSSDeclaration::ParseNumber(const wchar_t* pszValue, in ParseNumber()
297 RetainPtr<CFX_CSSValue> CFX_CSSDeclaration::ParseEnum(const wchar_t* pszValue, in ParseEnum()
304 RetainPtr<CFX_CSSValue> CFX_CSSDeclaration::ParseColor(const wchar_t* pszValue, in ParseColor()
312 RetainPtr<CFX_CSSValue> CFX_CSSDeclaration::ParseString(const wchar_t* pszValue, in ParseString()
336 std::vector<RetainPtr<CFX_CSSValue>> list; in ParseValueListProperty()
413 const std::vector<RetainPtr<CFX_CSSValue>>& list, in Add4ValuesProperty()
[all …]
Dcfx_cssvaluelist.cpp13 CFX_CSSValueList::CFX_CSSValueList(std::vector<RetainPtr<CFX_CSSValue>>& list) in CFX_CSSValueList()
14 : CFX_CSSValue(CFX_CSSPrimitiveType::List), m_ppList(std::move(list)) {} in CFX_CSSValueList()
22 RetainPtr<CFX_CSSValue> CFX_CSSValueList::GetValue(int32_t index) const { in GetValue()
Dcfx_cssvalue.cpp9 CFX_CSSValue::CFX_CSSValue(CFX_CSSPrimitiveType type) : m_value(type) {} in CFX_CSSValue() function in CFX_CSSValue
Dcfx_cssvalue.h13 class CFX_CSSValue : public Retainable {
18 explicit CFX_CSSValue(CFX_CSSPrimitiveType type);
Dcfx_cssstyleselector.h23 class CFX_CSSValue; variable
58 const RetainPtr<CFX_CSSValue>& pValue,
67 const RetainPtr<CFX_CSSValue>& pValue,
Dcfx_cssstringvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::String), value_(value) {} in CFX_CSSStringValue()
Dcfx_cssenumvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::Enum), value_(value) {} in CFX_CSSEnumValue()
Dcfx_csscolorvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::RGB), value_(value) {} in CFX_CSSColorValue()
Dcfx_csspropertyholder.h21 RetainPtr<CFX_CSSValue> pValue;
Dcfx_cssstylesheet_unittest.cpp54 RetainPtr<CFX_CSSValue> v = decl_->GetProperty(prop, &important); in VerifyFloat()
64 RetainPtr<CFX_CSSValue> v = decl_->GetProperty(prop, &important); in VerifyEnum()
79 RetainPtr<CFX_CSSValue> val = list->GetValue(i); in VerifyList()
Dcfx_cssenumvalue.h12 class CFX_CSSEnumValue final : public CFX_CSSValue {
Dcfx_cssstringvalue.h13 class CFX_CSSStringValue final : public CFX_CSSValue {
Dcfx_csscolorvalue.h13 class CFX_CSSColorValue final : public CFX_CSSValue {
Dcfx_cssnumbervalue.h26 class CFX_CSSNumberValue final : public CFX_CSSValue {
Dcfx_cssnumbervalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::Number), type_(type), value_(value) { in CFX_CSSNumberValue()
Dcfx_cssstyleselector.cpp174 const RetainPtr<CFX_CSSValue>& pValue, in ApplyProperty()
477 const RetainPtr<CFX_CSSValue>& pValue, in SetLengthWithPercent()
567 const RetainPtr<CFX_CSSValue> pVal = pValue->GetValue(i); in ToTextDecoration()