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

/external/pdfium/core/include/fpdfapi/
H A Dfpdf_objects.h254 class CPDF_Name : public CPDF_Object class in inherits:CPDF_Object
258 static CPDF_Name* Create(const CFX_ByteString& str)
260 return new CPDF_Name(str);
263 static CPDF_Name* Create(FX_BSTR str)
265 return new CPDF_Name(str);
268 static CPDF_Name* Create(FX_LPCSTR str)
270 return new CPDF_Name(str);
273 CPDF_Name(const CFX_ByteString& str) : CPDF_Object(PDFOBJ_NAME), m_Name(str) { } function in class:CPDF_Name
274 CPDF_Name(FX_BSTR str) : CPDF_Object(PDFOBJ_NAME), m_Name(str) { } function in class:CPDF_Name
275 CPDF_Name(FX_LPCST function in class:CPDF_Name
[all...]

Completed in 114 milliseconds