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

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

Issue 2443723002: Rename IFX_ stream names (Closed)
Patch Set: Nits Created 4 years, 1 month 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/cpdf_syntax_parser.cpp ('k') | core/fpdfapi/parser/fpdf_parser_utility.cpp » ('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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_ 7 #ifndef CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_
8 #define CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_ 8 #define CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_
9 9
10 #include "core/fxcrt/fx_string.h" 10 #include "core/fxcrt/fx_string.h"
11 #include "core/fxcrt/fx_system.h" 11 #include "core/fxcrt/fx_system.h"
12 12
13 class IFX_FileRead; 13 class IFX_SeekableReadStream;
14 class CPDF_Dictionary; 14 class CPDF_Dictionary;
15 15
16 // Use the accessors below instead of directly accessing PDF_CharType. 16 // Use the accessors below instead of directly accessing PDF_CharType.
17 extern const char PDF_CharType[256]; 17 extern const char PDF_CharType[256];
18 18
19 inline bool PDFCharIsWhitespace(uint8_t c) { 19 inline bool PDFCharIsWhitespace(uint8_t c) {
20 return PDF_CharType[c] == 'W'; 20 return PDF_CharType[c] == 'W';
21 } 21 }
22 inline bool PDFCharIsNumeric(uint8_t c) { 22 inline bool PDFCharIsNumeric(uint8_t c) {
23 return PDF_CharType[c] == 'N'; 23 return PDF_CharType[c] == 'N';
24 } 24 }
25 inline bool PDFCharIsDelimiter(uint8_t c) { 25 inline bool PDFCharIsDelimiter(uint8_t c) {
26 return PDF_CharType[c] == 'D'; 26 return PDF_CharType[c] == 'D';
27 } 27 }
28 inline bool PDFCharIsOther(uint8_t c) { 28 inline bool PDFCharIsOther(uint8_t c) {
29 return PDF_CharType[c] == 'R'; 29 return PDF_CharType[c] == 'R';
30 } 30 }
31 31
32 inline bool PDFCharIsLineEnding(uint8_t c) { 32 inline bool PDFCharIsLineEnding(uint8_t c) {
33 return c == '\r' || c == '\n'; 33 return c == '\r' || c == '\n';
34 } 34 }
35 35
36 int32_t GetHeaderOffset(IFX_FileRead* pFile); 36 int32_t GetHeaderOffset(IFX_SeekableReadStream* pFile);
37 int32_t GetDirectInteger(CPDF_Dictionary* pDict, const CFX_ByteString& key); 37 int32_t GetDirectInteger(CPDF_Dictionary* pDict, const CFX_ByteString& key);
38 38
39 #endif // CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_ 39 #endif // CORE_FPDFAPI_PARSER_FPDF_PARSER_UTILITY_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_syntax_parser.cpp ('k') | core/fpdfapi/parser/fpdf_parser_utility.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698