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

Side by Side Diff: core/fpdfapi/parser/fpdf_parser_utility.cpp

Issue 2392603004: Move core/fpdfapi/fpdf_parser to core/fpdfapi/parser (Closed)
Patch Set: Rebase to master Created 4 years, 2 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
« no previous file with comments | « core/fpdfapi/parser/fpdf_parser_utility.h ('k') | core/fpdfdoc/cpdf_action.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/fpdfapi/fpdf_parser/fpdf_parser_utility.h" 7 #include "core/fpdfapi/parser/fpdf_parser_utility.h"
8 8
9 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 9 #include "core/fpdfapi/parser/cpdf_array.h"
10 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 10 #include "core/fpdfapi/parser/cpdf_dictionary.h"
11 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" 11 #include "core/fpdfapi/parser/cpdf_number.h"
12 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 12 #include "core/fpdfapi/parser/cpdf_reference.h"
13 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 13 #include "core/fpdfapi/parser/cpdf_stream.h"
14 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 14 #include "core/fpdfapi/parser/cpdf_stream_acc.h"
15 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" 15 #include "core/fpdfapi/parser/cpdf_string.h"
16 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" 16 #include "core/fpdfapi/parser/fpdf_parser_decode.h"
17 #include "core/fxcrt/fx_ext.h" 17 #include "core/fxcrt/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
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 }
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/fpdf_parser_utility.h ('k') | core/fpdfdoc/cpdf_action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698