| OLD | NEW | 
|---|
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_parser/cpdf_syntax_parser.h" | 7 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" | 
| 8 | 8 | 
| 9 #include <vector> | 9 #include <vector> | 
| 10 | 10 | 
| 11 #include "core/fpdfapi/cpdf_modulemgr.h" | 11 #include "core/fpdfapi/cpdf_modulemgr.h" | 
| 12 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 12 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 
| 13 #include "core/fpdfapi/fpdf_parser/cpdf_boolean.h" | 13 #include "core/fpdfapi/fpdf_parser/cpdf_boolean.h" | 
| 14 #include "core/fpdfapi/fpdf_parser/cpdf_crypto_handler.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_crypto_handler.h" | 
| 15 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 
| 16 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" | 
| 17 #include "core/fpdfapi/fpdf_parser/cpdf_null.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_null.h" | 
| 18 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" | 18 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" | 
| 19 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" | 19 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" | 
| 20 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" | 20 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" | 
| 21 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" | 21 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" | 
| 22 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" | 22 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" | 
| 23 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" | 23 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" | 
| 24 #include "core/fxcrt/include/fx_ext.h" | 24 #include "core/fxcrt/fx_ext.h" | 
| 25 #include "third_party/base/numerics/safe_math.h" | 25 #include "third_party/base/numerics/safe_math.h" | 
| 26 | 26 | 
| 27 namespace { | 27 namespace { | 
| 28 | 28 | 
| 29 struct SearchTagRecord { | 29 struct SearchTagRecord { | 
| 30   CFX_ByteStringC m_bsTag; | 30   CFX_ByteStringC m_bsTag; | 
| 31   FX_STRSIZE m_Offset; | 31   FX_STRSIZE m_Offset; | 
| 32 }; | 32 }; | 
| 33 | 33 | 
| 34 }  // namespace | 34 }  // namespace | 
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 988 } | 988 } | 
| 989 | 989 | 
| 990 void CPDF_SyntaxParser::SetEncrypt( | 990 void CPDF_SyntaxParser::SetEncrypt( | 
| 991     std::unique_ptr<CPDF_CryptoHandler> pCryptoHandler) { | 991     std::unique_ptr<CPDF_CryptoHandler> pCryptoHandler) { | 
| 992   m_pCryptoHandler = std::move(pCryptoHandler); | 992   m_pCryptoHandler = std::move(pCryptoHandler); | 
| 993 } | 993 } | 
| 994 | 994 | 
| 995 CFX_ByteString CPDF_SyntaxParser::MaybeIntern(const CFX_ByteString& str) { | 995 CFX_ByteString CPDF_SyntaxParser::MaybeIntern(const CFX_ByteString& str) { | 
| 996   return m_pPool ? m_pPool->Intern(str) : str; | 996   return m_pPool ? m_pPool->Intern(str) : str; | 
| 997 } | 997 } | 
| OLD | NEW | 
|---|