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/fpdfapi/fpdf_page/pageint.h" | 7 #include "core/fpdfapi/fpdf_page/pageint.h" |
8 | 8 |
9 #include <limits.h> | 9 #include <limits.h> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... | |
22 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 22 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
23 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h" | 23 #include "core/fpdfapi/fpdf_parser/include/cpdf_name.h" |
24 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" | 24 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" |
25 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 25 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" |
26 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" | 26 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream_acc.h" |
27 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" | 27 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h" |
28 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h" | 28 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h" |
29 #include "core/fpdfapi/include/cpdf_modulemgr.h" | 29 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
30 #include "core/fxcrt/include/fx_ext.h" | 30 #include "core/fxcrt/include/fx_ext.h" |
31 #include "core/fxcrt/include/fx_safe_types.h" | 31 #include "core/fxcrt/include/fx_safe_types.h" |
32 #include "core/include/fxcodec/fx_codec.h" | 32 #include "core/fxcodec/include/fx_codec.h" |
Tom Sepez
2016/04/06 17:42:32
*
dsinclair
2016/04/06 17:44:51
Done.
| |
33 | 33 |
34 CPDF_StreamParser::CPDF_StreamParser(const uint8_t* pData, uint32_t dwSize) { | 34 CPDF_StreamParser::CPDF_StreamParser(const uint8_t* pData, uint32_t dwSize) { |
35 m_pBuf = pData; | 35 m_pBuf = pData; |
36 m_Size = dwSize; | 36 m_Size = dwSize; |
37 m_Pos = 0; | 37 m_Pos = 0; |
38 m_pLastObj = NULL; | 38 m_pLastObj = NULL; |
39 } | 39 } |
40 | 40 |
41 CPDF_StreamParser::~CPDF_StreamParser() { | 41 CPDF_StreamParser::~CPDF_StreamParser() { |
42 if (m_pLastObj) { | 42 if (m_pLastObj) { |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
885 } | 885 } |
886 m_Status = Done; | 886 m_Status = Done; |
887 return; | 887 return; |
888 } | 888 } |
889 steps++; | 889 steps++; |
890 if (pPause && pPause->NeedToPauseNow()) { | 890 if (pPause && pPause->NeedToPauseNow()) { |
891 break; | 891 break; |
892 } | 892 } |
893 } | 893 } |
894 } | 894 } |
OLD | NEW |