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/src/fpdfapi/fpdf_parser/fpdf_parser_utility.h" | 7 #include "core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.h" |
8 | 8 |
9 #include "core/include/fpdfapi/fpdf_parser.h" | 9 #include "core/include/fpdfapi/fpdf_objects.h" |
| 10 #include "core/include/fpdfapi/fpdf_parser_decode.h" |
10 #include "core/include/fxcrt/fx_ext.h" | 11 #include "core/include/fxcrt/fx_ext.h" |
11 | 12 |
12 // Indexed by 8-bit character code, contains either: | 13 // Indexed by 8-bit character code, contains either: |
13 // 'W' - for whitespace: NUL, TAB, CR, LF, FF, SPACE, 0x80, 0xff | 14 // 'W' - for whitespace: NUL, TAB, CR, LF, FF, SPACE, 0x80, 0xff |
14 // 'N' - for numeric: 0123456789+-. | 15 // 'N' - for numeric: 0123456789+-. |
15 // 'D' - for delimiter: %()/<>[]{} | 16 // 'D' - for delimiter: %()/<>[]{} |
16 // 'R' - otherwise. | 17 // 'R' - otherwise. |
17 const char PDF_CharType[256] = { | 18 const char PDF_CharType[256] = { |
18 // NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO | 19 // NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO |
19 // SI | 20 // SI |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 buf.AppendBlock(acc.GetData(), acc.GetSize()); | 214 buf.AppendBlock(acc.GetData(), acc.GetSize()); |
214 buf << "\r\nendstream"; | 215 buf << "\r\nendstream"; |
215 break; | 216 break; |
216 } | 217 } |
217 default: | 218 default: |
218 ASSERT(FALSE); | 219 ASSERT(FALSE); |
219 break; | 220 break; |
220 } | 221 } |
221 return buf; | 222 return buf; |
222 } | 223 } |
OLD | NEW |