| 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 "xfa/fde/css/fde_csssyntax.h" | 7 #include "xfa/fde/css/fde_csssyntax.h" |
| 8 | 8 |
| 9 #include "xfa/fde/css/fde_cssdatatable.h" | 9 #include "xfa/fde/css/fde_cssdatatable.h" |
| 10 #include "xfa/fgas/crt/fgas_codepage.h" | 10 #include "xfa/fgas/crt/fgas_codepage.h" |
| 11 | 11 |
| 12 #ifdef _cplusplus | 12 #ifdef _cplusplus |
| 13 extern "C" { | 13 extern "C" { |
| 14 #endif | 14 #endif |
| 15 | 15 |
| 16 inline FX_BOOL FDE_IsSelectorStart(FX_WCHAR wch) { | 16 inline FX_BOOL FDE_IsSelectorStart(FX_WCHAR wch) { |
| 17 return wch == '.' || wch == '#' || wch == '*' || (wch >= 'a' && wch <= 'z') || | 17 return wch == '.' || wch == '#' || wch == '*' || (wch >= 'a' && wch <= 'z') || |
| 18 (wch >= 'A' && wch <= 'Z'); | 18 (wch >= 'A' && wch <= 'Z'); |
| 19 } | 19 } |
| 20 | 20 |
| 21 #ifdef _cplusplus | 21 #ifdef _cplusplus |
| 22 }; | 22 }; |
| 23 #endif | 23 #endif |
| 24 | 24 |
| 25 IFDE_CSSSyntaxParser* IFDE_CSSSyntaxParser::Create() { | |
| 26 return new CFDE_CSSSyntaxParser; | |
| 27 } | |
| 28 CFDE_CSSSyntaxParser::CFDE_CSSSyntaxParser() | 25 CFDE_CSSSyntaxParser::CFDE_CSSSyntaxParser() |
| 29 : m_pStream(NULL), | 26 : m_pStream(NULL), |
| 30 m_iStreamPos(0), | 27 m_iStreamPos(0), |
| 31 m_iPlaneSize(0), | 28 m_iPlaneSize(0), |
| 32 m_iTextDatLen(0), | 29 m_iTextDatLen(0), |
| 33 m_dwCheck((uint32_t)-1), | 30 m_dwCheck((uint32_t)-1), |
| 34 m_eMode(FDE_CSSSYNTAXMODE_RuleSet), | 31 m_eMode(FDE_CSSSYNTAXMODE_RuleSet), |
| 35 m_eStatus(FDE_CSSSYNTAXSTATUS_None) {} | 32 m_eStatus(FDE_CSSSYNTAXSTATUS_None) {} |
| 36 CFDE_CSSSyntaxParser::~CFDE_CSSSyntaxParser() { | 33 CFDE_CSSSyntaxParser::~CFDE_CSSSyntaxParser() { |
| 37 m_TextData.Reset(); | 34 m_TextData.Reset(); |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 if (iLength > m_iDatLen - iStart) { | 475 if (iLength > m_iDatLen - iStart) { |
| 479 iLength = m_iDatLen - iStart; | 476 iLength = m_iDatLen - iStart; |
| 480 } | 477 } |
| 481 if (iLength < 0) { | 478 if (iLength < 0) { |
| 482 iLength = 0; | 479 iLength = 0; |
| 483 } else { | 480 } else { |
| 484 FXSYS_memmove(m_pBuffer, m_pBuffer + iStart, iLength * sizeof(FX_WCHAR)); | 481 FXSYS_memmove(m_pBuffer, m_pBuffer + iStart, iLength * sizeof(FX_WCHAR)); |
| 485 } | 482 } |
| 486 m_iDatLen = iLength; | 483 m_iDatLen = iLength; |
| 487 } | 484 } |
| OLD | NEW |