Searched refs:pwsAttriName (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/xfa/fde/xml/ |
D | fde_xml_imp.h | 89 bool HasAttribute(const FX_WCHAR* pwsAttriName) const; 90 void GetString(const FX_WCHAR* pwsAttriName, 95 int32_t GetInteger(const FX_WCHAR* pwsAttriName, int32_t iDefValue = 0) const; 96 void SetInteger(const FX_WCHAR* pwsAttriName, int32_t iAttriValue); 97 FX_FLOAT GetFloat(const FX_WCHAR* pwsAttriName, FX_FLOAT fDefValue = 0) const; 98 void SetFloat(const FX_WCHAR* pwsAttriName, FX_FLOAT fAttriValue); 99 void RemoveAttribute(const FX_WCHAR* pwsAttriName); 129 bool HasAttribute(const FX_WCHAR* pwsAttriName) const; 130 void RemoveAttribute(const FX_WCHAR* pwsAttriName); 132 void GetString(const FX_WCHAR* pwsAttriName, [all …]
|
D | fde_xml_imp.cpp | 565 bool CFDE_XMLInstruction::HasAttribute(const FX_WCHAR* pwsAttriName) const { in HasAttribute() 568 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in HasAttribute() 575 void CFDE_XMLInstruction::GetString(const FX_WCHAR* pwsAttriName, in GetString() argument 580 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetString() 603 int32_t CFDE_XMLInstruction::GetInteger(const FX_WCHAR* pwsAttriName, in GetInteger() argument 607 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetInteger() 614 void CFDE_XMLInstruction::SetInteger(const FX_WCHAR* pwsAttriName, in SetInteger() argument 618 SetString(pwsAttriName, wsValue); in SetInteger() 621 FX_FLOAT CFDE_XMLInstruction::GetFloat(const FX_WCHAR* pwsAttriName, in GetFloat() argument 625 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetFloat() [all …]
|