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 // Original code is licensed as follows: | 6 // Original code is licensed as follows: |
7 /* | 7 /* |
8 * Copyright 2008 ZXing authors | 8 * Copyright 2008 ZXing authors |
9 * | 9 * |
10 * Licensed under the Apache License, Version 2.0 (the "License"); | 10 * Licensed under the Apache License, Version 2.0 (the "License"); |
(...skipping 20 matching lines...) Expand all Loading... |
31 const FX_CHAR* CBC_OnedCode39Reader::ALPHABET_STRING = | 31 const FX_CHAR* CBC_OnedCode39Reader::ALPHABET_STRING = |
32 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. *$/+%"; | 32 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. *$/+%"; |
33 const FX_CHAR* CBC_OnedCode39Reader::CHECKSUM_STRING = | 33 const FX_CHAR* CBC_OnedCode39Reader::CHECKSUM_STRING = |
34 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%"; | 34 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. $/+%"; |
35 const int32_t CBC_OnedCode39Reader::CHARACTER_ENCODINGS[44] = { | 35 const int32_t CBC_OnedCode39Reader::CHARACTER_ENCODINGS[44] = { |
36 0x034, 0x121, 0x061, 0x160, 0x031, 0x130, 0x070, 0x025, 0x124, | 36 0x034, 0x121, 0x061, 0x160, 0x031, 0x130, 0x070, 0x025, 0x124, |
37 0x064, 0x109, 0x049, 0x148, 0x019, 0x118, 0x058, 0x00D, 0x10C, | 37 0x064, 0x109, 0x049, 0x148, 0x019, 0x118, 0x058, 0x00D, 0x10C, |
38 0x04C, 0x01C, 0x103, 0x043, 0x142, 0x013, 0x112, 0x052, 0x007, | 38 0x04C, 0x01C, 0x103, 0x043, 0x142, 0x013, 0x112, 0x052, 0x007, |
39 0x106, 0x046, 0x016, 0x181, 0x0C1, 0x1C0, 0x091, 0x190, 0x0D0, | 39 0x106, 0x046, 0x016, 0x181, 0x0C1, 0x1C0, 0x091, 0x190, 0x0D0, |
40 0x085, 0x184, 0x0C4, 0x094, 0x0A8, 0x0A2, 0x08A, 0x02A}; | 40 0x085, 0x184, 0x0C4, 0x094, 0x0A8, 0x0A2, 0x08A, 0x02A}; |
41 const int32_t CBC_OnedCode39Reader::ASTERISK_ENCODING = 0x094; | |
42 | 41 |
43 CBC_OnedCode39Reader::CBC_OnedCode39Reader() | 42 CBC_OnedCode39Reader::CBC_OnedCode39Reader() |
44 : m_usingCheckDigit(FALSE), m_extendedMode(FALSE) {} | 43 : m_usingCheckDigit(FALSE), m_extendedMode(FALSE) {} |
45 CBC_OnedCode39Reader::CBC_OnedCode39Reader(FX_BOOL usingCheckDigit) | 44 CBC_OnedCode39Reader::CBC_OnedCode39Reader(FX_BOOL usingCheckDigit) |
46 : m_usingCheckDigit(usingCheckDigit), m_extendedMode(FALSE) {} | 45 : m_usingCheckDigit(usingCheckDigit), m_extendedMode(FALSE) {} |
47 CBC_OnedCode39Reader::CBC_OnedCode39Reader(FX_BOOL usingCheckDigit, | 46 CBC_OnedCode39Reader::CBC_OnedCode39Reader(FX_BOOL usingCheckDigit, |
48 FX_BOOL extendedMode) | 47 FX_BOOL extendedMode) |
49 : m_usingCheckDigit(usingCheckDigit), m_extendedMode(extendedMode) {} | 48 : m_usingCheckDigit(usingCheckDigit), m_extendedMode(extendedMode) {} |
50 CBC_OnedCode39Reader::~CBC_OnedCode39Reader() {} | 49 CBC_OnedCode39Reader::~CBC_OnedCode39Reader() {} |
51 CFX_ByteString CBC_OnedCode39Reader::DecodeRow(int32_t rowNumber, | 50 CFX_ByteString CBC_OnedCode39Reader::DecodeRow(int32_t rowNumber, |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 break; | 277 break; |
279 } | 278 } |
280 decoded += decodedChar; | 279 decoded += decodedChar; |
281 i++; | 280 i++; |
282 } else { | 281 } else { |
283 decoded += c; | 282 decoded += c; |
284 } | 283 } |
285 } | 284 } |
286 return decoded; | 285 return decoded; |
287 } | 286 } |
OLD | NEW |