HomeSort by relevance Sort by last modified time
    Searched defs:CXML_Element (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/include/fxcrt/
fx_xml.h 65 class CXML_Element : public CFX_Object
69 static CXML_Element* Parse(const void* pBuffer, size_t size, FX_BOOL bSaveSpaceChars = FALSE, FX_FILESIZE* pParsedSize = NULL, IFX_Allocator* pAllocator = NULL);
71 static CXML_Element* Parse(IFX_FileRead *pFile, FX_BOOL bSaveSpaceChars = FALSE, FX_FILESIZE* pParsedSize = NULL, IFX_Allocator* pAllocator = NULL);
73 static CXML_Element* Parse(IFX_BufferRead *pBuffer, FX_BOOL bSaveSpaceChars = FALSE, FX_FILESIZE* pParsedSize = NULL, IFX_Allocator* pAllocator = NULL);
75 CXML_Element(FX_BSTR qSpace, FX_BSTR tagName, IFX_Allocator* pAllocator = NULL);
77 CXML_Element(FX_BSTR qTagName, IFX_Allocator* pAllocator = NULL);
79 CXML_Element(IFX_Allocator* pAllocator = NULL);
81 ~CXML_Element();
96 CXML_Element* GetParent() const
170 CXML_Element* GetElement(FX_DWORD index) const;
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_xml_parser.cpp 376 CXML_Element* CXML_Parser::ParseElement(CXML_Element* pParent, FX_BOOL bStartTag)
389 CXML_Element* pElement;
391 pElement = FX_NewAtAllocator(m_pAllocator)CXML_Element(m_pAllocator);
393 pElement = FX_NEW CXML_Element;
454 FX_DeleteAtAllocator(pElement, m_pAllocator, CXML_Element);
511 CXML_Element* pSubElement = ParseElement(pElement, TRUE);
516 pElement->m_Children.Add((FX_LPVOID)CXML_Element::Element);
557 void CXML_Parser::InsertContentSegment(FX_BOOL bCDATA, FX_WSTR content, CXML_Element* pElement)
572 pElement->m_Children.Add((FX_LPVOID)CXML_Element::Content);
    [all...]

Completed in 47 milliseconds