Home
last modified time | relevance | path

Searched refs:pwsAttriName (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/xfa/src/fdp/include/
Dfde_xml.h91 virtual FX_BOOL HasAttribute(const FX_WCHAR* pwsAttriName) const = 0;
92 virtual void GetString(const FX_WCHAR* pwsAttriName,
97 virtual int32_t GetInteger(const FX_WCHAR* pwsAttriName,
99 virtual void SetInteger(const FX_WCHAR* pwsAttriName,
101 virtual FX_FLOAT GetFloat(const FX_WCHAR* pwsAttriName,
103 virtual void SetFloat(const FX_WCHAR* pwsAttriName, FX_FLOAT fAttriValue) = 0;
104 virtual void RemoveAttribute(const FX_WCHAR* pwsAttriName) = 0;
121 virtual FX_BOOL HasAttribute(const FX_WCHAR* pwsAttriName) const = 0;
122 virtual void GetString(const FX_WCHAR* pwsAttriName,
127 virtual int32_t GetInteger(const FX_WCHAR* pwsAttriName,
[all …]
/external/pdfium/xfa/src/fdp/src/xml/
Dfde_xml.h65 virtual FX_BOOL HasAttribute(const FX_WCHAR* pwsAttriName) const;
66 virtual void GetString(const FX_WCHAR* pwsAttriName,
71 virtual int32_t GetInteger(const FX_WCHAR* pwsAttriName,
73 virtual void SetInteger(const FX_WCHAR* pwsAttriName, int32_t iAttriValue);
74 virtual FX_FLOAT GetFloat(const FX_WCHAR* pwsAttriName,
76 virtual void SetFloat(const FX_WCHAR* pwsAttriName, FX_FLOAT fAttriValue);
77 virtual void RemoveAttribute(const FX_WCHAR* pwsAttriName);
103 virtual FX_BOOL HasAttribute(const FX_WCHAR* pwsAttriName) const;
104 virtual void GetString(const FX_WCHAR* pwsAttriName,
109 virtual int32_t GetInteger(const FX_WCHAR* pwsAttriName,
[all …]
Dfde_xml.cpp544 FX_BOOL CFDE_XMLInstruction::HasAttribute(const FX_WCHAR* pwsAttriName) const { in HasAttribute()
547 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in HasAttribute()
553 void CFDE_XMLInstruction::GetString(const FX_WCHAR* pwsAttriName, in GetString() argument
558 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetString()
579 int32_t CFDE_XMLInstruction::GetInteger(const FX_WCHAR* pwsAttriName, in GetInteger() argument
583 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetInteger()
589 void CFDE_XMLInstruction::SetInteger(const FX_WCHAR* pwsAttriName, in SetInteger() argument
593 SetString(pwsAttriName, wsValue); in SetInteger()
595 FX_FLOAT CFDE_XMLInstruction::GetFloat(const FX_WCHAR* pwsAttriName, in GetFloat() argument
599 if (m_Attributes[i].Compare(pwsAttriName) == 0) { in GetFloat()
[all …]