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

Side by Side Diff: core/src/fpdfapi/fpdf_parser/fpdf_parser_utility.cpp

Issue 1783933003: Split CPDF_Stream/CPDF_StreamAcc into separate files (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 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/cpdf_array.h" 9 #include "core/include/fpdfapi/cpdf_array.h"
10 #include "core/include/fpdfapi/cpdf_dictionary.h" 10 #include "core/include/fpdfapi/cpdf_dictionary.h"
11 #include "core/include/fpdfapi/cpdf_number.h" 11 #include "core/include/fpdfapi/cpdf_number.h"
12 #include "core/include/fpdfapi/cpdf_reference.h" 12 #include "core/include/fpdfapi/cpdf_reference.h"
13 #include "core/include/fpdfapi/cpdf_stream.h" 13 #include "core/include/fpdfapi/cpdf_stream.h"
14 #include "core/include/fpdfapi/cpdf_stream_acc.h"
14 #include "core/include/fpdfapi/cpdf_string.h" 15 #include "core/include/fpdfapi/cpdf_string.h"
15 #include "core/include/fpdfapi/fpdf_parser_decode.h" 16 #include "core/include/fpdfapi/fpdf_parser_decode.h"
16 #include "core/include/fxcrt/fx_ext.h" 17 #include "core/include/fxcrt/fx_ext.h"
17 18
18 // Indexed by 8-bit character code, contains either: 19 // Indexed by 8-bit character code, contains either:
19 // 'W' - for whitespace: NUL, TAB, CR, LF, FF, SPACE, 0x80, 0xff 20 // 'W' - for whitespace: NUL, TAB, CR, LF, FF, SPACE, 0x80, 0xff
20 // 'N' - for numeric: 0123456789+-. 21 // 'N' - for numeric: 0123456789+-.
21 // 'D' - for delimiter: %()/<>[]{} 22 // 'D' - for delimiter: %()/<>[]{}
22 // 'R' - otherwise. 23 // 'R' - otherwise.
23 const char PDF_CharType[256] = { 24 const char PDF_CharType[256] = {
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 buf.AppendBlock(acc.GetData(), acc.GetSize()); 220 buf.AppendBlock(acc.GetData(), acc.GetSize());
220 buf << "\r\nendstream"; 221 buf << "\r\nendstream";
221 break; 222 break;
222 } 223 }
223 default: 224 default:
224 ASSERT(FALSE); 225 ASSERT(FALSE);
225 break; 226 break;
226 } 227 }
227 return buf; 228 return buf;
228 } 229 }
OLDNEW
« no previous file with comments | « core/src/fpdfapi/fpdf_parser/cpdf_stream_acc.cpp ('k') | core/src/fxcodec/jbig2/JBig2_BitStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698