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

Side by Side Diff: xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp

Issue 1885973002: Remove implicit cast from CFX_ByteString to (const char*). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Typo Created 4 years, 8 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/fxbarcode/oned/BC_OnedEAN8Writer.cpp ('k') | xfa/fxfa/app/xfa_ffdoc.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 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 2010 ZXing authors 8 * Copyright 2010 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 } 63 }
64 } 64 }
65 return filtercontents; 65 return filtercontents;
66 } 66 }
67 int32_t CBC_OnedUPCAWriter::CalcChecksum(const CFX_ByteString& contents) { 67 int32_t CBC_OnedUPCAWriter::CalcChecksum(const CFX_ByteString& contents) {
68 int32_t odd = 0; 68 int32_t odd = 0;
69 int32_t even = 0; 69 int32_t even = 0;
70 int32_t j = 1; 70 int32_t j = 1;
71 for (int32_t i = contents.GetLength() - 1; i >= 0; i--) { 71 for (int32_t i = contents.GetLength() - 1; i >= 0; i--) {
72 if (j % 2) { 72 if (j % 2) {
73 odd += FXSYS_atoi(contents.Mid(i, 1)); 73 odd += FXSYS_atoi(contents.Mid(i, 1).c_str());
74 } else { 74 } else {
75 even += FXSYS_atoi(contents.Mid(i, 1)); 75 even += FXSYS_atoi(contents.Mid(i, 1).c_str());
76 } 76 }
77 j++; 77 j++;
78 } 78 }
79 int32_t checksum = (odd * 3 + even) % 10; 79 int32_t checksum = (odd * 3 + even) % 10;
80 checksum = (10 - checksum) % 10; 80 checksum = (10 - checksum) % 10;
81 return (checksum); 81 return (checksum);
82 } 82 }
83 uint8_t* CBC_OnedUPCAWriter::Encode(const CFX_ByteString& contents, 83 uint8_t* CBC_OnedUPCAWriter::Encode(const CFX_ByteString& contents,
84 BCFORMAT format, 84 BCFORMAT format,
85 int32_t& outWidth, 85 int32_t& outWidth,
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 } 277 }
278 FX_Free(pCharPos); 278 FX_Free(pCharPos);
279 } 279 }
280 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents, 280 void CBC_OnedUPCAWriter::RenderResult(const CFX_WideStringC& contents,
281 uint8_t* code, 281 uint8_t* code,
282 int32_t codeLength, 282 int32_t codeLength,
283 FX_BOOL isDevice, 283 FX_BOOL isDevice,
284 int32_t& e) { 284 int32_t& e) {
285 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e); 285 CBC_OneDimWriter::RenderResult(contents, code, codeLength, isDevice, e);
286 } 286 }
OLDNEW
« no previous file with comments | « xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp ('k') | xfa/fxfa/app/xfa_ffdoc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698