OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "core/src/fxcrt/xml_int.h" | 7 #include "core/src/fxcrt/xml_int.h" |
8 | 8 |
| 9 #include <vector> |
| 10 |
9 #include "core/include/fxcrt/fx_ext.h" | 11 #include "core/include/fxcrt/fx_ext.h" |
10 #include "core/include/fxcrt/fx_xml.h" | 12 #include "core/include/fxcrt/fx_xml.h" |
11 #include "third_party/base/stl_util.h" | 13 #include "third_party/base/stl_util.h" |
12 | 14 |
13 CXML_Parser::~CXML_Parser() { | 15 CXML_Parser::~CXML_Parser() { |
14 if (m_bOwnedStream) { | 16 if (m_bOwnedStream) { |
15 m_pDataAcc->Release(); | 17 m_pDataAcc->Release(); |
16 } | 18 } |
17 } | 19 } |
18 FX_BOOL CXML_Parser::Init(uint8_t* pBuffer, size_t size) { | 20 FX_BOOL CXML_Parser::Init(uint8_t* pBuffer, size_t size) { |
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 m_pMap->push_back({space, name, value}); | 786 m_pMap->push_back({space, name, value}); |
785 } | 787 } |
786 | 788 |
787 int CXML_AttrMap::GetSize() const { | 789 int CXML_AttrMap::GetSize() const { |
788 return m_pMap ? pdfium::CollectionSize<int>(*m_pMap) : 0; | 790 return m_pMap ? pdfium::CollectionSize<int>(*m_pMap) : 0; |
789 } | 791 } |
790 | 792 |
791 CXML_AttrItem& CXML_AttrMap::GetAt(int index) const { | 793 CXML_AttrItem& CXML_AttrMap::GetAt(int index) const { |
792 return (*m_pMap)[index]; | 794 return (*m_pMap)[index]; |
793 } | 795 } |
OLD | NEW |