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

Side by Side Diff: xfa/fgas/crt/fgas_encode.cpp

Issue 1803723002: Move xfa/src up to xfa/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master 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
« no previous file with comments | « xfa/fgas/crt/fgas_codepage.cpp ('k') | xfa/fgas/crt/fgas_language.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 "xfa/src/fgas/crt/fgas_codepage.h" 7 #include "xfa/fgas/crt/fgas_codepage.h"
8 8
9 void FX_SwapByteOrder(FX_WCHAR* pStr, int32_t iLength) { 9 void FX_SwapByteOrder(FX_WCHAR* pStr, int32_t iLength) {
10 FXSYS_assert(pStr != NULL); 10 FXSYS_assert(pStr != NULL);
11 if (iLength < 0) { 11 if (iLength < 0) {
12 iLength = FXSYS_wcslen(pStr); 12 iLength = FXSYS_wcslen(pStr);
13 } 13 }
14 FX_WORD wch; 14 FX_WORD wch;
15 if (sizeof(FX_WCHAR) > 2) { 15 if (sizeof(FX_WCHAR) > 2) {
16 while (iLength-- > 0) { 16 while (iLength-- > 0) {
17 wch = (FX_WORD)*pStr; 17 wch = (FX_WORD)*pStr;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 dwCode = (byte & 0x01) << 30; 184 dwCode = (byte & 0x01) << 30;
185 } else { 185 } else {
186 break; 186 break;
187 } 187 }
188 iIndex++; 188 iIndex++;
189 } 189 }
190 *pSrcLen = iSrcNum; 190 *pSrcLen = iSrcNum;
191 *pDstLen = iDstNum; 191 *pDstLen = iDstNum;
192 return 1; 192 return 1;
193 } 193 }
OLDNEW
« no previous file with comments | « xfa/fgas/crt/fgas_codepage.cpp ('k') | xfa/fgas/crt/fgas_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698