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