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 "../../include/fxcrt/fx_basic.h" | 7 #include "core/include/fxcrt/fx_basic.h" |
| 8 |
8 void CFX_UTF8Decoder::Clear() { | 9 void CFX_UTF8Decoder::Clear() { |
9 m_Buffer.Clear(); | 10 m_Buffer.Clear(); |
10 m_PendingBytes = 0; | 11 m_PendingBytes = 0; |
11 } | 12 } |
12 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch) { | 13 void CFX_UTF8Decoder::AppendChar(FX_DWORD ch) { |
13 m_Buffer.AppendChar((FX_WCHAR)ch); | 14 m_Buffer.AppendChar((FX_WCHAR)ch); |
14 } | 15 } |
15 void CFX_UTF8Decoder::Input(uint8_t byte) { | 16 void CFX_UTF8Decoder::Input(uint8_t byte) { |
16 if (byte < 0x80) { | 17 if (byte < 0x80) { |
17 m_PendingBytes = 0; | 18 m_PendingBytes = 0; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 FXSYS_assert(pwsStr != NULL); | 77 FXSYS_assert(pwsStr != NULL); |
77 if (len < 0) { | 78 if (len < 0) { |
78 len = FXSYS_wcslen(pwsStr); | 79 len = FXSYS_wcslen(pwsStr); |
79 } | 80 } |
80 CFX_UTF8Encoder encoder; | 81 CFX_UTF8Encoder encoder; |
81 while (len-- > 0) { | 82 while (len-- > 0) { |
82 encoder.Input(*pwsStr++); | 83 encoder.Input(*pwsStr++); |
83 } | 84 } |
84 return encoder.GetResult(); | 85 return encoder.GetResult(); |
85 } | 86 } |
OLD | NEW |