Searched defs:eUnit (Results 1 - 4 of 4) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_measurement.cpp19 CXFA_Measurement::CXFA_Measurement(FX_FLOAT fValue, XFA_UNIT eUnit) { argument
20 Set(fValue, eUnit);
33 XFA_UNIT eUnit = GetUnit(wsMeasure.Mid(iOffset + iUsedLen)); local
34 Set(fValue, eUnit);
69 bool CXFA_Measurement::ToUnit(XFA_UNIT eUnit, FX_FLOAT& fValue) const { argument
72 if (eFrom == eUnit)
97 switch (eUnit) {
H A Dcxfa_measurement.h18 CXFA_Measurement(FX_FLOAT fValue, XFA_UNIT eUnit);
21 void Set(FX_FLOAT fValue, XFA_UNIT eUnit) { argument
23 m_eUnit = eUnit;
31 bool ToUnit(XFA_UNIT eUnit, FX_FLOAT& fValue) const;
32 FX_FLOAT ToUnit(XFA_UNIT eUnit) const {
34 return ToUnit(eUnit, f) ? f : 0;
/external/pdfium/xfa/fde/css/
H A Dcfde_cssdeclaration.cpp29 FDE_CSSNumberType& eUnit) {
38 eUnit = FDE_CSSNumberType::Number;
40 eUnit = FDE_CSSNumberType::Percent;
45 eUnit = pUnit->wValue;
283 FDE_CSSNumberType eUnit; local
284 if (!ParseCSSNumber(pszValue, iValueLen, fValue, eUnit))
286 return pdfium::MakeRetain<CFDE_CSSNumberValue>(eUnit, fValue);
26 ParseCSSNumber(const FX_WCHAR* pszValue, int32_t iValueLen, FX_FLOAT& fValue, FDE_CSSNumberType& eUnit) argument
H A Dfde_css.h190 explicit FDE_CSSLength(FDE_CSSLengthUnit eUnit) : m_unit(eUnit) {} argument
192 FDE_CSSLength(FDE_CSSLengthUnit eUnit, FX_FLOAT fValue) argument
193 : m_unit(eUnit), m_fValue(fValue) {}
195 FDE_CSSLength& Set(FDE_CSSLengthUnit eUnit) { argument
196 m_unit = eUnit;
200 FDE_CSSLength& Set(FDE_CSSLengthUnit eUnit, FX_FLOAT fValue) { argument
201 m_unit = eUnit;
220 FDE_CSSRect(FDE_CSSLengthUnit eUnit, FX_FLOAT val) argument
221 : left(eUnit, va
226 Set(FDE_CSSLengthUnit eUnit) argument
233 Set(FDE_CSSLengthUnit eUnit, FX_FLOAT fValue) argument
[all...]

Completed in 273 milliseconds