Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: core/fpdfapi/fpdf_parser/cpdf_syntax_parser.cpp

Issue 1841173002: Rename GetElementValue() to GetDirectObject{By,At}(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Fix test name Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 623
624 if (byte1 == '\r' || byte1 == '\n') 624 if (byte1 == '\r' || byte1 == '\n')
625 return 1; 625 return 1;
626 626
627 return 0; 627 return 0;
628 } 628 }
629 629
630 CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict, 630 CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict,
631 uint32_t objnum, 631 uint32_t objnum,
632 uint32_t gennum) { 632 uint32_t gennum) {
633 CPDF_Object* pLenObj = pDict->GetElement("Length"); 633 CPDF_Object* pLenObj = pDict->GetObjectBy("Length");
634 FX_FILESIZE len = -1; 634 FX_FILESIZE len = -1;
635 CPDF_Reference* pLenObjRef = ToReference(pLenObj); 635 CPDF_Reference* pLenObjRef = ToReference(pLenObj);
636 636
637 bool differingObjNum = !pLenObjRef || (pLenObjRef->GetObjList() && 637 bool differingObjNum = !pLenObjRef || (pLenObjRef->GetObjList() &&
638 pLenObjRef->GetRefObjNum() != objnum); 638 pLenObjRef->GetRefObjNum() != objnum);
639 if (pLenObj && differingObjNum) 639 if (pLenObj && differingObjNum)
640 len = pLenObj->GetInteger(); 640 len = pLenObj->GetInteger();
641 641
642 // Locate the start of stream. 642 // Locate the start of stream.
643 ToNextLine(); 643 ToNextLine();
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 if (limit && m_Pos == limit) 981 if (limit && m_Pos == limit)
982 return -1; 982 return -1;
983 } 983 }
984 return -1; 984 return -1;
985 } 985 }
986 986
987 void CPDF_SyntaxParser::SetEncrypt( 987 void CPDF_SyntaxParser::SetEncrypt(
988 std::unique_ptr<IPDF_CryptoHandler> pCryptoHandler) { 988 std::unique_ptr<IPDF_CryptoHandler> pCryptoHandler) {
989 m_pCryptoHandler = std::move(pCryptoHandler); 989 m_pCryptoHandler = std::move(pCryptoHandler);
990 } 990 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_parser/cpdf_parser.cpp ('k') | core/fpdfapi/fpdf_parser/fpdf_parser_decode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698