| 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/include/cpdf_simple_parser.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cpdf_simple_parser.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" | 9 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" |
| 10 | 10 |
| 11 CPDF_SimpleParser::CPDF_SimpleParser(const uint8_t* pData, uint32_t dwSize) | 11 CPDF_SimpleParser::CPDF_SimpleParser(const uint8_t* pData, uint32_t dwSize) |
| 12 : m_pData(pData), m_dwSize(dwSize), m_dwCurPos(0) {} | 12 : m_pData(pData), m_dwSize(dwSize), m_dwCurPos(0) {} |
| 13 | 13 |
| 14 CPDF_SimpleParser::CPDF_SimpleParser(const CFX_ByteStringC& str) | 14 CPDF_SimpleParser::CPDF_SimpleParser(const CFX_ByteStringC& str) |
| 15 : m_pData(str.GetPtr()), m_dwSize(str.GetLength()), m_dwCurPos(0) {} | 15 : m_pData(str.raw_str()), m_dwSize(str.GetLength()), m_dwCurPos(0) {} |
| 16 | 16 |
| 17 void CPDF_SimpleParser::ParseWord(const uint8_t*& pStart, uint32_t& dwSize) { | 17 void CPDF_SimpleParser::ParseWord(const uint8_t*& pStart, uint32_t& dwSize) { |
| 18 pStart = nullptr; | 18 pStart = nullptr; |
| 19 dwSize = 0; | 19 dwSize = 0; |
| 20 uint8_t ch; | 20 uint8_t ch; |
| 21 while (1) { | 21 while (1) { |
| 22 if (m_dwSize <= m_dwCurPos) | 22 if (m_dwSize <= m_dwCurPos) |
| 23 return; | 23 return; |
| 24 ch = m_pData[m_dwCurPos++]; | 24 ch = m_pData[m_dwCurPos++]; |
| 25 while (PDFCharIsWhitespace(ch)) { | 25 while (PDFCharIsWhitespace(ch)) { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 if (buf_count < nParams) { | 161 if (buf_count < nParams) { |
| 162 continue; | 162 continue; |
| 163 } | 163 } |
| 164 m_dwCurPos = pBuf[buf_index]; | 164 m_dwCurPos = pBuf[buf_index]; |
| 165 FX_Free(pBuf); | 165 FX_Free(pBuf); |
| 166 return true; | 166 return true; |
| 167 } | 167 } |
| 168 } | 168 } |
| 169 return false; | 169 return false; |
| 170 } | 170 } |
| OLD | NEW |