diff options
author | Ryan Harrison <rharrison@chromium.org> | 2017-09-18 14:23:18 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-18 18:40:16 +0000 |
commit | 275e260a6cd4a8e506ba974feb85ebcd926c1739 (patch) | |
tree | 2029b9158ec044764ceff122fe5fb5d0a3f123d1 /fxbarcode/oned/BC_OnedCode128Writer.cpp | |
parent | 450fbeaaabf1ab340c1018de2e58f1950657517e (diff) | |
download | pdfium-275e260a6cd4a8e506ba974feb85ebcd926c1739.tar.xz |
Convert string class names
Automated using git grep & sed.
Replace StringC classes with StringView classes.
Remove the CFX_ prefix and put string classes in fxcrt namespace.
Change AsStringC() to AsStringView().
Rename tests from TEST(fxcrt, *String*Foo) to TEST(*String*,
Foo).
Couple of tests needed to have their names regularlized.
BUG=pdfium:894
Change-Id: I7ca038685c8d803795f3ed02545124f7a224c83d
Reviewed-on: https://pdfium-review.googlesource.com/14151
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fxbarcode/oned/BC_OnedCode128Writer.cpp')
-rw-r--r-- | fxbarcode/oned/BC_OnedCode128Writer.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/fxbarcode/oned/BC_OnedCode128Writer.cpp b/fxbarcode/oned/BC_OnedCode128Writer.cpp index 1e9f98b9e7..61ec77b020 100644 --- a/fxbarcode/oned/BC_OnedCode128Writer.cpp +++ b/fxbarcode/oned/BC_OnedCode128Writer.cpp @@ -84,7 +84,7 @@ CBC_OnedCode128Writer::CBC_OnedCode128Writer(BC_TYPE type) CBC_OnedCode128Writer::~CBC_OnedCode128Writer() {} bool CBC_OnedCode128Writer::CheckContentValidity( - const CFX_WideStringC& contents) { + const WideStringView& contents) { for (const auto& ch : contents) { int32_t patternIndex = static_cast<int32_t>(ch); if (patternIndex < 32 || patternIndex > 126 || patternIndex == 34) @@ -93,9 +93,9 @@ bool CBC_OnedCode128Writer::CheckContentValidity( return true; } -CFX_WideString CBC_OnedCode128Writer::FilterContents( - const CFX_WideStringC& contents) { - CFX_WideString filterChineseChar; +WideString CBC_OnedCode128Writer::FilterContents( + const WideStringView& contents) { + WideString filterChineseChar; for (FX_STRSIZE i = 0; i < contents.GetLength(); i++) { wchar_t ch = contents[i]; if (ch > 175) { @@ -105,7 +105,7 @@ CFX_WideString CBC_OnedCode128Writer::FilterContents( filterChineseChar += ch; } const wchar_t limit = m_codeFormat == BC_CODE128_B ? 126 : 106; - CFX_WideString filtercontents; + WideString filtercontents; for (const auto& ch : filterChineseChar) { if (ch >= 32 && ch <= limit) filtercontents += ch; @@ -121,7 +121,7 @@ bool CBC_OnedCode128Writer::SetTextLocation(BC_TEXT_LOC location) { return true; } -uint8_t* CBC_OnedCode128Writer::EncodeWithHint(const CFX_ByteString& contents, +uint8_t* CBC_OnedCode128Writer::EncodeWithHint(const ByteString& contents, BCFORMAT format, int32_t& outWidth, int32_t& outHeight, @@ -132,7 +132,7 @@ uint8_t* CBC_OnedCode128Writer::EncodeWithHint(const CFX_ByteString& contents, hints); } -uint8_t* CBC_OnedCode128Writer::EncodeImpl(const CFX_ByteString& contents, +uint8_t* CBC_OnedCode128Writer::EncodeImpl(const ByteString& contents, int32_t& outLength) { if (contents.GetLength() < 1 || contents.GetLength() > 80) return nullptr; @@ -168,7 +168,7 @@ uint8_t* CBC_OnedCode128Writer::EncodeImpl(const CFX_ByteString& contents, } // static -int32_t CBC_OnedCode128Writer::Encode128B(const CFX_ByteString& contents, +int32_t CBC_OnedCode128Writer::Encode128B(const ByteString& contents, std::vector<int32_t>* patterns) { int32_t checkWeight = 1; patterns->push_back(CODE_START_B); @@ -182,7 +182,7 @@ int32_t CBC_OnedCode128Writer::Encode128B(const CFX_ByteString& contents, } // static -int32_t CBC_OnedCode128Writer::Encode128C(const CFX_ByteString& contents, +int32_t CBC_OnedCode128Writer::Encode128C(const ByteString& contents, std::vector<int32_t>* patterns) { int32_t checkWeight = 1; patterns->push_back(CODE_START_C); |