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/fpdfapi/fpdf_page/pageint.h" | 7 #include "core/src/fpdfapi/fpdf_page/pageint.h" |
8 | 8 |
9 #include "core/include/fpdfapi/fpdf_module.h" | 9 #include "core/include/fpdfapi/fpdf_module.h" |
10 #include "core/include/fpdfapi/fpdf_page.h" | 10 #include "core/include/fpdfapi/fpdf_page.h" |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 } | 107 } |
108 } | 108 } |
109 return false; | 109 return false; |
110 } | 110 } |
111 | 111 |
112 CPDF_StreamContentParser::CPDF_StreamContentParser( | 112 CPDF_StreamContentParser::CPDF_StreamContentParser( |
113 CPDF_Document* pDocument, | 113 CPDF_Document* pDocument, |
114 CPDF_Dictionary* pPageResources, | 114 CPDF_Dictionary* pPageResources, |
115 CPDF_Dictionary* pParentResources, | 115 CPDF_Dictionary* pParentResources, |
116 CFX_Matrix* pmtContentToUser, | 116 CFX_Matrix* pmtContentToUser, |
117 CPDF_PageObjects* pObjList, | 117 CPDF_PageObjectList* pObjList, |
118 CPDF_Dictionary* pResources, | 118 CPDF_Dictionary* pResources, |
119 CPDF_Rect* pBBox, | 119 CPDF_Rect* pBBox, |
120 CPDF_ParseOptions* pOptions, | 120 CPDF_ParseOptions* pOptions, |
121 CPDF_AllStates* pStates, | 121 CPDF_AllStates* pStates, |
122 int level) | 122 int level) |
123 : m_pDocument(pDocument), | 123 : m_pDocument(pDocument), |
124 m_pPageResources(pPageResources), | 124 m_pPageResources(pPageResources), |
125 m_pParentResources(pParentResources), | 125 m_pParentResources(pParentResources), |
126 m_pResources(pResources), | 126 m_pResources(pResources), |
127 m_pObjectList(pObjList), | 127 m_pObjectList(pObjList), |
(...skipping 1683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1811 pArray->SetAt(i, new CPDF_Name(fullname)); | 1811 pArray->SetAt(i, new CPDF_Name(fullname)); |
1812 } | 1812 } |
1813 } else { | 1813 } else { |
1814 PDF_ReplaceAbbr(pElement); | 1814 PDF_ReplaceAbbr(pElement); |
1815 } | 1815 } |
1816 } | 1816 } |
1817 break; | 1817 break; |
1818 } | 1818 } |
1819 } | 1819 } |
1820 } | 1820 } |
OLD | NEW |