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

Unified Diff: xfa/fxbarcode/qrcode/BC_QRDataMask.cpp

Issue 2067903002: Make code compile with clang_use_chrome_plugin (part III) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fxbarcode/qrcode/BC_QRCodeWriter.h ('k') | xfa/fxbarcode/qrcode/BC_QRFinderPattern.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/qrcode/BC_QRDataMask.cpp
diff --git a/xfa/fxbarcode/qrcode/BC_QRDataMask.cpp b/xfa/fxbarcode/qrcode/BC_QRDataMask.cpp
index 9b5e3ca0148d1c137b6a201b4b9c328f6b459b9b..e21b5d2d37f2c5c625e411ef709c68cbf9e57c2d 100644
--- a/xfa/fxbarcode/qrcode/BC_QRDataMask.cpp
+++ b/xfa/fxbarcode/qrcode/BC_QRDataMask.cpp
@@ -67,46 +67,52 @@ CBC_QRDataMask* CBC_QRDataMask::ForReference(int32_t reference, int32_t& e) {
class DataMask000 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) { return ((x + y) % 2) == 0; }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask001 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) { return (x % 2) == 0; }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask010 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) { return y % 3 == 0; }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask011 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) { return (x + y) % 3 == 0; }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask100 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) {
- return (((x >> 1) + (y / 3)) % 2) == 0;
- }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask101 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) {
- size_t temp = x * y;
- return (temp % 2) + (temp % 3) == 0;
- }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask110 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) {
- size_t temp = x * y;
- return (((temp % 2) + (temp % 3)) % 2) == 0;
- }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
class DataMask111 : public CBC_QRDataMask {
public:
- FX_BOOL IsMasked(int32_t x, int32_t y) {
- return ((((x + y) % 2) + ((x * y) % 3)) % 2) == 0;
- }
+ // CBC_QRDataMask
+ FX_BOOL IsMasked(int32_t x, int32_t y) override;
};
+
int32_t CBC_QRDataMask::BuildDataMasks() {
DATA_MASKS->Add(new DataMask000);
DATA_MASKS->Add(new DataMask001);
@@ -118,5 +124,41 @@ int32_t CBC_QRDataMask::BuildDataMasks() {
DATA_MASKS->Add(new DataMask111);
return DATA_MASKS->GetSize();
}
+
CBC_QRDataMask::CBC_QRDataMask() {}
+
CBC_QRDataMask::~CBC_QRDataMask() {}
+
+FX_BOOL DataMask000::IsMasked(int32_t x, int32_t y) {
+ return ((x + y) % 2) == 0;
+}
+
+FX_BOOL DataMask001::IsMasked(int32_t x, int32_t y) {
+ return (x % 2) == 0;
+}
+
+FX_BOOL DataMask010::IsMasked(int32_t x, int32_t y) {
+ return y % 3 == 0;
+}
+
+FX_BOOL DataMask011::IsMasked(int32_t x, int32_t y) {
+ return (x + y) % 3 == 0;
+}
+
+FX_BOOL DataMask100::IsMasked(int32_t x, int32_t y) {
+ return (((x >> 1) + (y / 3)) % 2) == 0;
+}
+
+FX_BOOL DataMask101::IsMasked(int32_t x, int32_t y) {
+ size_t temp = x * y;
+ return (temp % 2) + (temp % 3) == 0;
+}
+
+FX_BOOL DataMask110::IsMasked(int32_t x, int32_t y) {
+ size_t temp = x * y;
+ return (((temp % 2) + (temp % 3)) % 2) == 0;
+}
+
+FX_BOOL DataMask111::IsMasked(int32_t x, int32_t y) {
+ return ((((x + y) % 2) + ((x * y) % 3)) % 2) == 0;
+}
« no previous file with comments | « xfa/fxbarcode/qrcode/BC_QRCodeWriter.h ('k') | xfa/fxbarcode/qrcode/BC_QRFinderPattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698